/* GENEL STİLLER */
:root {
  /* Yumuşak Pastel Renk Paleti */
  --primary-color: #ECF2FF;
  --primary-light: #E3DFFD;
  --primary-dark: #D4D1F0;
  --accent-color: #E5D1FA;
  --accent-light: #FFF4D2;
  --accent-dark: #E8C8F0;
  
  /* Nötr Renkler */
  --text-color: #1e293b;
  --text-light: #64748b;
  --text-muted: #94a3b8;
  --text-white: #ffffff;
  --text-dark: #0f172a;
  --bg-color: #ffffff;
  --bg-light: #f8fafc;
  --bg-dark: #0f172a;
  
  /* Gölge ve Kenarlık */
  --border-color: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  
  /* Durum Renkleri */
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --error-color: #ef4444;
  --info-color: #3b82f6;
  
  /* Geçiş Efektleri */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Layout */
  --sidebar-width: clamp(3.5rem, 5vw, 5rem);
  --border-radius: 12px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", Arial, sans-serif;
  background: linear-gradient(135deg, #200E3A 0%, #2D1B4E 50%, #1A0B2E 100%) !important;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Body içeriği */
body > * {
  position: relative;
  z-index: 1;
}

body.with-sidebar {
  padding-left: var(--sidebar-width);
}

body.sidebar-open {
  overflow: hidden;
}

.main-content {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0;
  margin-top: 0 !important;
}

.logo {
  width: clamp(150px, 30vw, 350px);
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo:hover {
  box-shadow: 0 12px 35px rgba(236, 98, 95, 0.6), 0 8px 20px rgba(236, 98, 95, 0.5), 0 4px 15px rgba(236, 98, 95, 0.4);
  transform: scale(1.08);
}

.container {
  width: min(95%, 1200px);
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 2rem) 2rem;
}

.header-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  color: #6B46C1;
  text-shadow: 0 2px 8px rgba(107, 70, 193, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.header-title:hover {
  color: #8B5CF6;
  font-size: 2.8rem;
  text-shadow: 0 4px 15px rgba(139, 92, 246, 0.6), 0 2px 8px rgba(229, 209, 250, 0.4);
  transform: scale(1.05);
}

/* HAKKIMIZDA */
.aboutwe {
  padding: clamp(2rem, 5vw, 5rem) 0;
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  color: #FEFFC4;
  text-align: center;
  width: min(90%, 800px);
  margin: auto;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* BRANŞLAR */
.branch {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 2rem;
  background: linear-gradient(135deg, #2B194B 0%, #1E0F35 100%) !important;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(43, 25, 75, 0.3);
  transition: all 0.3s ease;
}

.branch:hover {
  box-shadow: 0 20px 50px rgba(43, 25, 75, 0.6) !important, 0 10px 30px rgba(43, 25, 75, 0.4) !important;
  transform: translateY(-8px) !important;
  background: linear-gradient(135deg, #2B194B 0%, #1E0F35 100%) !important;
}

.branch img {
  width: 100%;
  border-radius: 10px;
  transition: var(--transition);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.branch img:hover {
  transform: scale(1.02);
}

.branch .content {
  margin-top: 1rem;
}

.branch h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: #FFDE63;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.branch p,
.content p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: #FEFFC4;
}

/* BUTONLAR */
.buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  font-style: italic;
  text-decoration: none;
  color: #FFBC4C;
  transition: var(--transition);
  font-size: clamp(1rem, 2vw, 1.5rem);
  position: relative;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  background: rgba(255, 188, 76, 0.1);
  border: 1px solid rgba(255, 188, 76, 0.3);
}

.btn:hover {
  background: rgba(255, 188, 76, 0.2);
  border-color: rgba(255, 188, 76, 0.5);
  transform: translateY(-1px);
}

.btn::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transition: var(--transition);
}

.btn:hover::after {
  transform: scaleX(1);
}

.btn:hover {
  font-style: normal;
}

.arrow {
  font-weight: bold;
}
#windguru-widget {
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  transition: all 0.3s ease;
}

body.with-sidebar #windguru-widget {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

#windguru-widget h3 {
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
/* FOOTER */
.footer {
  background: #1F0F37; /* İstenen renk */
  box-shadow: 0 -2px 16px 0 rgba(107, 70, 193, 0.1);
  padding: 3rem 2rem 2rem 2rem;
  text-align: left;
  margin-top: 3rem;
  margin-bottom: 60px;
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
  width: 100%;
  transition: all 0.3s ease;
}

body.with-sidebar .footer {
  
  margin-left: auto;
  margin-right: auto;
}

/* Sidebar responsive renk override'ları */
@media (max-width: 992px) {
  .sidebar {
    z-index: 2147483647 !important;
    background: #000000 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 60px !important;
  }
  .activity-gallery .gallery {
    flex-direction: column;
    height: auto; /* Mobilde yükseklik sabitlenmez */
  }

  .gallery-img {
    width: 100%;
    height: 250px; /* Mobil için sabit yükseklik */
    object-fit: cover; /* Görseli alanın tamamına sığacak şekilde kırpar */
    object-position: center;
  }
  .sidebar-content a,
  .sidebar-content a:link,
  .sidebar-content a:visited {
    color: #FFDE63 !important;
    font-weight: bold !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8) !important;
  }
  
  .sidebar-content a:hover,
  .sidebar-content a:focus,
  .sidebar-content a:active {
    background-color: rgba(236, 98, 95, 0.8) !important;
    color: #FFFFFF !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 1) !important;
  }
}
.footer-left,
.footer-right {
  flex: 1 1 0;
  min-width: 220px;
  max-width: 700px;
  box-sizing: border-box;
}
.footer h1,
.footer h2,
.footer p {
  color: #FFBC4C ;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.footer-left h1 {
  margin-bottom: 2rem;
  text-align: center;
  color: #FFBC4C;
  font-size: clamp(1.7rem, 3vw, 1.8rem);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.footer p {
  line-height: 1.6;
  margin: 1rem 0;
  font-size: clamp(1.5rem, 2vw, 1.2rem);
  text-align: center;
  color: #FFDE63 !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: center;
  text-decoration: none;
 
}

.map-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.map-container iframe {
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
  height: clamp(250px, 20vh, 400px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-social-fixed {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.activity-content {
  padding: 1.2rem 0 1.2rem 0;
}

.activity-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #FFDE63;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.activity-description {
  font-size: 1.7rem;
  line-height: 1.4;
  color: #FEFFC4;
  margin-bottom: 3rem;
  font-weight: 500;
}

.activity-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-card {
  padding: 2rem;
  background: linear-gradient(135deg, #2B194B 0%, #1E0F35 100%) !important;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(43, 25, 75, 0.3);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(43, 25, 75, 0.6) !important, 0 10px 30px rgba(43, 25, 75, 0.4) !important;
}

.feature-icon {
  font-size: 2rem;
  color: #FFDE63;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  color: #FFDE63;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 1rem;
  color: #FEFFC4;
  line-height: 1.4;
}

.cta-container {
  margin-top: 3rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background-color: #FFBC4C;
  color: #525252;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid #FFBC4C;
}

.cta-button:hover {
  background-color: transparent;
  color: #FFBC4C;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 188, 76, 0.3);
}

.activity-gallery {
  position: sticky;
  top: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  grid-template-areas:
    "img1 img1 img1 img2 img2 img2"
    "img1 img1 img1 img3 img3 img3";
}

.gallery-img {
  width: 50%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.02);
}

.success-message {
  background-color: #d4edda;
  color: #155724;
  padding: 15px;
  margin: 10px 0;
  border-radius: 4px;
  text-align: center;
}

.error-message {
  background-color: #f8d7da;
  color: #721c24;
  padding: 15px;
  margin: 10px 0;
  border-radius: 4px;
  text-align: center;
}

@keyframes branchSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-60px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Slide-in animasyonları */
.slide-in {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.slide-in-delay {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}
.visible {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

/* Ana sayfa arka planı (footer hariç) tamamen kaplasın */
.main-bg-image {
  min-height: 100vh;
  background: #FFF4D2 !important;
  position: relative;
}

/* İçerik */
.main-bg-image > * {
  position: relative;
  z-index: 1;
}

/* Logo ve başlık en üstte ve ortada */
.logo-top-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-top: 40px;
  margin-bottom: 32px;
  z-index: 10;
  position: relative;
}

/* Mobilde logo pozisyonunu ayarla */
@media (max-width: 992px) {
  .logo-top-center {
    margin-top: 80px; /* Sidebar'ın altında kalması için */
    margin-bottom: 20px;
  }
}
/* Branch'ler alt alta gelsin */
.branches-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 0 auto;
  z-index: 5;
  position: relative;
  padding-bottom: 2rem;
}
/* Branch animasyonu daha yavaş ve belirgin */
.branch-animate.branch-hidden {
  opacity: 0;
  transform: translateX(300px) scale(0.85);
  transition: all 3.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.branch-animate.branch-visible {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition: all 3.8s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Branch kartları */
.branches-list .branch {
  background: linear-gradient(135deg, #2B194B 0%, #1E0F35 100%) !important;
  border-radius: var(--border-radius-xl);
  box-shadow: 0 8px 25px rgba(43, 25, 75, 0.3);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(43, 25, 75, 0.3);
  transition: all 0.3s ease;
}

.branches-list .branch:hover {
  box-shadow: 0 20px 50px rgba(43, 25, 75, 0.6) !important, 0 10px 30px rgba(43, 25, 75, 0.4) !important;
  transform: translateY(-8px) !important;
  background: linear-gradient(135deg, #2B194B 0%, #1E0F35 100%) !important;
}
.branches-list .branch img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  background: var(--bg-light);
  transition: var(--transition);
}

.branches-list .branch img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}
.branches-list .branch .content {
  flex: 1;
}

/* Scroll butonları kaldırıldı */
.scroll-btn,
#scroll-down-btn,
#scroll-up-btn {
  display: none !important;
}

/* Branch overlay padding ayarı ve responsive */
.branches-overlay {
  margin-top: 180px;
  padding-top: 2vh;
  padding-bottom: 3vh;
}
/* surf.html arka planı */
.surf-bg {
  background: #FCE7C8;
  min-height: 100vh;
  position: relative;
}

/* Surf sayfası içeriği */
.surf-bg > * {
  position: relative;
  z-index: 1;
}

/* Surf sayfaları için özel ortalama */
.surf-bg .main-content {
  justify-content: center;
  align-items: center;
}
/*Scroll buton */
#scrollToTopBtn {
  position: fixed;
  right: 0.7rem;
  bottom: 2rem;
  z-index: 999;
  background: rgba(253, 250, 250, 0.2);
  color: var(--footer-bg);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
#scrollToTopBtn:hover {
  background: #00bcd4;
  transform: scale(1.08);
}

/* RESPONSIVE */
/*  992px ve altı (tablet ve mobil) */
@media (max-width: 992px) {
  body {
    padding-top: 60px;
  }
  body.with-sidebar {
    padding-left: 0 !important;
  }
  .aboutwe {
    width: 80%;
    font-size: 1.4rem;
  }
  .branch {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }
  
  .branch img {
    width: 100%;
    order: 3;
    max-width: 200px;
    align-self: flex-end;
    margin-top: 1rem;
  }
  
  .branch .content {
    order: 1;
    margin-top: 0;
  }
  
  .branch .buttons {
    order: 2;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    align-items: flex-start;
    display: inline-flex;
  }
  
  .branch .buttons .btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    width: auto;
    min-width: 140px;
  }
  
  .branch {
    position: relative;
  }
  
  .branch img {
    order: 2;
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 1;
  }
  
  .branch .content {
    z-index: 2;
    position: relative;
    margin-right: 120px;
  }
  
  .branch .buttons {
    z-index: 2;
    position: relative;
    margin-right: 120px;
  }
  
  /* Anasayfa kartları için küçük ekran düzeni - yatay ikiye bölme */
  .homepage-branches .branch {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 0 !important;
    min-height: auto !important;
    height: 400px !important;
  }
  
  .homepage-branches .branch .content {
    order: 1 !important;
    flex: 1 !important;
    margin-top: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    gap: 0.8rem !important;
    margin-right: 0 !important;
    padding: 1rem !important;
    padding-bottom: 0.5rem !important;
    overflow: hidden !important;
  }
  
  .homepage-branches .branch .content h2 {
    font-size: 1.2rem !important;
    margin-bottom: 0 !important;
    line-height: 1.3 !important;
  }
  
  .homepage-branches .branch .content p {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    margin-bottom: 0 !important;
    overflow: hidden !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 4 !important;
    -webkit-box-orient: vertical !important;
  }
  
  .homepage-branches .branch .buttons {
    margin-top: auto !important;
    margin-right: 0 !important;
    z-index: auto !important;
    position: static !important;
  }
  
  .homepage-branches .branch .buttons .btn {
    font-size: 0.8rem !important;
    padding: 0.4rem 0.8rem !important;
  }
  
  .homepage-branches .branch img {
    order: 2 !important;
    width: 80% !important;
    height: 40% !important;
    object-fit: contain !important;
    object-position: center !important;
    flex-shrink: 0 !important;
    border-radius: 10px !important;
    align-self: center !important;
    position: static !important;
    right: auto !important;
    bottom: auto !important;
    z-index: auto !important;
    background-color: rgba(0, 0, 0, 0.1) !important;
    margin: 0 auto !important;
  }
  
  .homepage-branches .branch .buttons {
    margin-right: 0 !important;
    z-index: auto !important;
    position: static !important;
  }
}

/* Çok küçük ekranlar için ek düzenleme */
@media (max-width: 480px) {
  .branch {
    padding: 1rem;
  }
  
  .branch .content {
    margin-right: 120px;
  }
  .activity-gallery .gallery {
    flex-direction: column;
    height: auto; /* Mobilde yükseklik sabitlenmez */
  }

  .gallery-img {
    width: 100%;
    height: 150px; /* Mobil için sabit yükseklik */
    object-fit: cover; /* Görseli alanın tamamına sığacak şekilde kırpar */
    object-position: center;
  }
  .branch .buttons {
    margin-right: 120px;
  }
  
  .branch img {
    width: 80px;
    height: 80px;
    right: 1rem;
    bottom: 1rem;
  }
  
  .branch .buttons .btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    min-width: 110px;
  }
}
  .footer p {
    font-size: 1rem;
    margin-left: 1rem;
    text-align: center;
  }
  .map-container iframe {
    width: 100%;
  }
  .activity-description {
    font-size: 1rem;
    color: #FEFFC4;
  }
  .activity-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .activity-gallery {
    position: static;
  }
  .gallery-grid {
    grid-template-areas:
      "img1 img1 img1 img1 img1 img1"
      "img2 img2 img2 img3 img3 img3";
  }
  .gallery-grid img:nth-child(1) {
    height: 300px;
  }
  .activity-features {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "img1"
      "img2"
      "img3";
  }
  .gallery-grid img {
    height: 250px !important;
  }
  .site-header h1 {
    font-size: 2rem;
  }
  .aboutwe {
    width: 90%;
    font-size: 1.2rem;
  }

  .footer {
    flex-direction: row;
    gap: 1rem;
    padding: 1.5rem 2rem 1rem 2rem;
    margin-bottom: 32px;
    width: 100%;
  }
  .footer-left,
  .footer-right {
    min-width: 140px;
    max-width: 100vw;
    flex: 1 1 0;
  }
  .footer p {
    font-size: 1rem;
    margin: 1rem 0;
  }
  .footer-left p {
    color: #FFDE63 !important;
  }
  .branches-overlay {
    margin-top: 80px;
    gap: 1.2rem;
    padding-top: 1vh;
    padding-bottom: 1vh;
  }
  .logo-top-center {
    margin-top: 18px;
    margin-bottom: 18px;
  }
  .branches-overlay .branch {
    border-radius: 12px;
    padding: 1.2rem 0.5rem;
    gap: 1.2rem;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .branches-overlay .branch img {
    max-width: 100%;
    height: 120px;
    border-radius: 10px;
    margin-bottom: 1.2rem;
  }
  .header-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }
  .main-content {
    background: transparent;
  }
  .branches-list .branch {
    border-radius: 12px;
    padding: 1.2rem 0.5rem;
    gap: 1.2rem;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .branches-list .branch img {
    max-width: 100%;
    height: 120px;
    border-radius: 10px;
  }
  .footer {
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.5rem 2rem 1rem 2rem;
    margin-bottom: 32px;
    align-items: stretch;
    width: 100%;
  }
  .footer-left,
  .footer-right {
    min-width: 0;
    max-width: 100vw;
    flex: 1 1 100%;
    width: 100%;
    box-sizing: border-box;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    margin-left: 0;
    margin-right: 0;
  }
  .activity-description {
    font-size: 0.92rem;
    color: #FEFFC4;
  }
  .section-title {
    color: #FFDE63;
  }
  .section-title::after {
    background-color: #FCE7C8 !important;
  }
}

/*  993px ve üstü (desktop özel durumlar) */
@media (min-width: 993px) {
  .main-content,
  .activity-content,
  .container,
  .activity-grid,
  .section-title {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }
  .section-title {
    padding-bottom: 0 !important;
    margin-bottom: 1rem !important;
  }
  
  .activity-info {
    width: 150%;
  }
  .activity-features {
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    flex: 0 0 260px;
    margin-bottom: 0;
    max-width: 1000px;
  }
  #scrollToTopBtn {
    display: none !important;
  }
  
  /* Büyük ekranlarda sadece anasayfa kartları için düzenleme */
  .homepage-branches .branch {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    gap: 2rem !important;
    min-height: 300px !important;
    grid-template-columns: none !important;
    grid: none !important;
  }
  
  .homepage-branches .branch .content {
    flex: 1 !important;
    margin-top: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    gap: 1rem !important;
  }
  
  .homepage-branches .branch .content h2 {
    margin-bottom: 0 !important;
  }
  
  .homepage-branches .branch .content p {
    margin-bottom: 0 !important;
  }
  
  .homepage-branches .branch .buttons {
    margin-top: auto !important;
  }
  
  .homepage-branches .branch img {
    width: 50% !important;
    height: 100% !important;
    object-fit: cover !important;
    flex-shrink: 0 !important;
    border-radius: 10px !important;
  }
}
