/*
====================================================================
CUSTOM STYLES - Fenerbahçe Üsküdar Spor Okulları
====================================================================
Bu dosya tüm sayfaların inline CSS kodlarını içerir
Temiz kod yapısı ve kolay bakım için oluşturulmuştur
*/

/* ===== CRITICAL ABOVE-THE-FOLD STYLES ===== */
/* Bu stiller sayfa yüklenmesi için kritik */

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.header-area {
  position: relative;
  background-color: #fff;
  height: 60px;
  z-index: 100;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.main-nav {
  background: transparent;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav {
  margin-left: auto;
}

.logo h1,
.logo-title {
  line-height: 60px;
  font-size: 20px;
  text-transform: uppercase;
  color: #1f2937;
  font-weight: 700;
  display: flex;
  align-items: center;
  margin: 0;
  letter-spacing: 0.5px;
}

.logo-image {
  height: 70px;
  width: auto;
  margin-left: 10px;
  vertical-align: middle;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

/* ===== BANNER SLIDER STYLES ===== */
.banner-slider {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin-top: 0;
}

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

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

.slide.active {
  opacity: 1;
}

.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white !important;
  max-width: 800px;
  padding: 0 20px;
}

.slide-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
  color: white !important;
}

.slide-subtitle {
  font-size: 20px;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  margin: 0;
  color: white !important;
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 3;
}

.nav-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: white;
  transform: scale(1.2);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

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

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 15px;
}

.col-lg-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
}

.col-lg-3 {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 15px;
}

.col-lg-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding: 0 15px;
}

.nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav li {
  padding: 0;
}

.nav a {
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 12px 20px;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  letter-spacing: 0.3px;
}

.nav a:hover {
  color: #1e3a8a;
  transform: translateY(-1px);
}

.nav a.active {
  color: #1e3a8a;
  font-weight: 600;
}

/* ===== COMPACT HEADER STYLES ===== */

.logo-title {
  line-height: 50px;
  font-size: 22px;
  text-transform: uppercase;
  color: #1e1e1e;
  font-weight: 700;
  display: flex;
  align-items: center;
  margin: 5px 0 0 0;
}

.logo-image {
  height: 70px;
  width: auto;
  margin-left: 10px;
  vertical-align: middle;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

/* Header Mobile Optimization */
@media (max-width: 768px) {
  .header-area {
    height: 50px;
  }
  
  .sub-header {
    height: 35px;
    padding: 8px 0;
    font-size: 11px;
  }
  
  .logo h1,
  .logo-title {
    font-size: 16px;
    line-height: 50px;
    margin: 0;
  }
  
  .logo-image {
    height: 20px;
    margin-left: 4px;
  }
  
  .nav a {
    font-size: 13px;
    padding: 6px 10px;
  }
  
  /* Sub Header Mobile */
  .sub-header {
    padding: 6px 0;
    font-size: 11px;
  }
  
  .sub-header .info {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .sub-header .info li {
    margin-right: 15px;
    margin-bottom: 0;
    font-size: 11px;
  }
  
  .sub-header .info li:last-child {
    margin-right: 0;
  }
  
  .sub-header .social-links {
    justify-content: flex-end;
    margin-top: 0;
  }
  
  .header-phone-link {
    padding: 4px 8px;
    font-size: 11px;
    border-radius: 15px;
  }
}

@media (max-width: 480px) {
  .header-area {
    height: 25px;
  }
  
  .logo h1,
  .logo-title {
    font-size: 14px;
    line-height: 35px;
  }
  
  .logo-image {
    height: 30px;
  }
  
  .sub-header {
    padding: 4px 0;
  }
  
  .sub-header .info li {
    font-size: 10px;
  }
  
  .sub-header .info li i {
    font-size: 10px;
  }
  
  .header-phone-link {
    padding: 3px 6px;
    font-size: 10px;
  }
}

/* ===== HEADER PHONE STYLES ===== */

.header-phone {
  margin-left: auto;
  padding-left: 20px;
}

.phone-btn {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  color: white !important;
  padding: 8px 16px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(30, 58, 138, 0.2);
  border: 2px solid transparent;
}

.phone-btn:hover {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1e3a8a !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
  border-color: #1e3a8a;
}

.phone-btn i {
  margin-right: 8px;
  font-size: 12px;
  animation: pulse 2s infinite;
}

.phone-btn span {
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.5px;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* ===== SUB HEADER STYLES ===== */

.sub-header {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  padding: 10px 0;
  color: white;
  font-size: 13px;
  height: 40px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Mobile Brand Styles */
.mobile-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-logo {
  height: 40px;
  width: auto;
  flex-shrink: 0;
}

.brand-text-container {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text-main {
  color: white;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  margin: 0;
}

.brand-text-sub {
  color: white;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  margin: 0;
}

/* Contact Info Styles */
.contact-info {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-info-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: right;
  line-height: 1.2;
  justify-content: center;
  height: 100%;
}

.contact-label-mobile {
  color: white;
  font-weight: 500;
  font-size: 13px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  margin: 0;
}

.contact-phone-mobile {
  color: white !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  margin: 0;
  transition: all 0.3s ease;
}

.contact-phone-mobile:hover {
  color: #ffd700 !important;
}

/* Mobile Menu Bar Styles */
.mobile-menu-bar {
  background: #1e3a8a;
  padding: 8px 0;
  display: none;
  overflow: hidden;
}

.menu-label {
  color: white;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
}

.hamburger-menu {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-left: auto;
  padding: 0;
}

.hamburger-menu span {
  width: 20px;
  height: 2px;
  background-color: white;
  margin: 2px 0;
  transition: all 0.3s ease;
  border-radius: 1px;
}

.hamburger-menu:hover span {
  background-color: #ffd700;
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(30, 58, 138, 0.95);
  backdrop-filter: blur(10px);
  z-index: 9999;
  transition: left 0.3s ease;
  display: none;
}

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

.mobile-menu-content {
  padding: 80px 20px 20px;
  height: 100%;
  overflow-y: auto;
}

.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu-list li {
  margin-bottom: 20px;
}

.mobile-menu-list li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  padding: 15px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu-list li a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffd700;
  transform: translateX(10px);
}

/* Hamburger Animation */
.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.contact-info li {
  display: flex;
  align-items: center;
  color: white;
  font-weight: 500;
  font-size: 13px;
}

.contact-label {
  color: white;
  font-weight: 600;
  margin-right: 8px;
  font-size: 12px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-info li a {
  color: white !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-info li a:hover {
  color: #ffd700 !important;
}

.contact-info li a i {
  color: #fbbf24;
  margin-right: 6px;
  font-size: 13px;
  animation: ring 3s infinite;
}

.sub-header .info {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sub-header .info li {
  display: flex;
  align-items: center;
  margin-right: 0;
  color: white;
  font-weight: 600;
  font-size: 13px;
}

.sub-header .info li i {
  color: #fbbf24;
  margin-right: 8px;
  font-size: 13px;
  width: 16px;
  text-align: center;
}

.sub-header .social-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sub-header .social-links li {
  color: white;
  font-size: 13px;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.sub-header .social-links li i {
  color: #fbbf24;
  margin-right: 8px;
  font-size: 13px;
  width: 16px;
  text-align: center;
}

.sub-header .info li a,
.header-phone-link {
  color: white !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  transition: all 0.3s ease;
}

.sub-header .info li a:hover,
.header-phone-link:hover {
  color: #ffd700 !important;
}

.header-phone-link i {
  margin-right: 6px;
  font-size: 13px;
  animation: ring 3s infinite;
}

@keyframes ring {
  0%, 20% { transform: rotate(0); }
  25% { transform: rotate(10deg); }
  35% { transform: rotate(-10deg); }
  45% { transform: rotate(5deg); }
  55% { transform: rotate(-5deg); }
  65%, 100% { transform: rotate(0); }
}

/* Sub Header Mobile Optimization */
@media (max-width: 768px) {
  .sub-header {
    padding: 0;
    font-size: 14px;
    height: 60px;
    background: white;
    display: flex;
    align-items: center;
  }
  
  .mobile-menu-bar {
    display: block;
    overflow: hidden;
  }
  
  .mobile-menu-bar .row {
    align-items: center;
    height: 100%;
  }
  
  .mobile-menu-bar .col-6 {
    display: flex;
    align-items: center;
    height: 100%;
  }
  
  .mobile-menu-bar .col-6:first-child {
    justify-content: flex-start;
  }
  
  .mobile-menu-bar .col-6:last-child {
    justify-content: flex-end;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .header-area {
    display: none;
  }
  
  .mobile-logo {
    height: 35px;
  }
  
  .brand-text-main {
    font-size: 14px;
    color: #1e3a8a;
    text-shadow: none;
  }
  
  .brand-text-sub {
    font-size: 10px;
    color: #1e3a8a;
    text-shadow: none;
  }
  
  .contact-info-mobile {
    justify-content: center;
    align-items: center;
  }
  
  .contact-label-mobile {
    display: none !important;
  }
  
  .contact-phone-mobile {
    font-size: 12px;
    color: #1e3a8a !important;
    text-shadow: none;
  }
  
  /* Mobile Header Dikey Ortalama */
  .sub-header .container {
    height: 100%;
    display: flex;
    align-items: center;
  }
  
  .sub-header .row {
    align-items: center !important;
    height: 100%;
    width: 100%;
    margin: 0;
  }
  
  .sub-header .col-lg-6 {
    display: flex !important;
    align-items: center !important;
    height: 100%;
    min-height: 60px;
  }
  
  .sub-header .col-lg-6:first-child {
    justify-content: flex-start !important;
  }
  
  .sub-header .col-lg-6:last-child {
    justify-content: flex-end !important;
  }
  
  .mobile-brand {
    align-items: center !important;
    justify-content: flex-start !important;
  }
  
  .contact-info-mobile {
    align-items: flex-end !important;
    justify-content: center !important;
    text-align: right !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    gap: 0 !important;
  }
  
  /* Daha spesifik kurallar */
  .sub-header .container .row .col-lg-6:first-child {
    justify-content: flex-start !important;
    text-align: left !important;
  }
  
  .sub-header .container .row .col-lg-6:last-child {
    justify-content: flex-end !important;
    text-align: right !important;
    align-items: center !important;
  }
  
  /* Telefon numarası için özel kurallar */
  .contact-phone-mobile {
    display: block !important;
    line-height: 1.2 !important;
    margin: 0 !important;
  }
  
  .contact-label-mobile {
    display: none !important;
  }
  
  .sub-header .info {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .sub-header .info li {
    margin-right: 0;
    margin-bottom: 5px;
    font-size: 12px;
  }
  
  .sub-header .social-links {
    justify-content: center;
    margin-top: 10px;
  }
  
  .header-phone-link {
    padding: 6px 12px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .sub-header {
    height: 55px;
    padding: 0;
    display: flex;
    align-items: center;
  }
  
  .mobile-logo {
    height: 30px;
  }
  
  .brand-text-main {
    font-size: 14px;
  }
  
  .brand-text-sub {
    font-size: 11px;
  }
  
  .contact-label-mobile {
    font-size: 11px;
  }
  
  .contact-phone-mobile {
    font-size: 13px;
  }
  
  .menu-label {
    font-size: 12px;
  }
  
  .hamburger-menu {
    width: 25px;
    height: 25px;
  }
  
  .hamburger-menu span {
    width: 18px;
    height: 2px;
  }
  
  /* Mobile Header Dikey Ortalama - Küçük Ekranlar */
  .sub-header .container {
    height: 100%;
    display: flex;
    align-items: center;
  }
  
  .sub-header .row {
    align-items: center !important;
    height: 100%;
    width: 100%;
    margin: 0;
  }
  
  .sub-header .col-lg-6 {
    display: flex !important;
    align-items: center !important;
    height: 100%;
    min-height: 55px;
  }
  
  .sub-header .col-lg-6:first-child {
    justify-content: flex-start !important;
  }
  
  .sub-header .col-lg-6:last-child {
    justify-content: flex-end !important;
  }
  
  .mobile-brand {
    align-items: center !important;
    justify-content: flex-start !important;
  }
  
  .contact-info-mobile {
    align-items: flex-end !important;
    justify-content: center !important;
    text-align: right !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    gap: 0 !important;
  }
  
  /* Daha spesifik kurallar - Küçük ekranlar */
  .sub-header .container .row .col-lg-6:first-child {
    justify-content: flex-start !important;
    text-align: left !important;
  }
  
  .sub-header .container .row .col-lg-6:last-child {
    justify-content: flex-end !important;
    text-align: right !important;
    align-items: center !important;
  }
  
  /* Telefon numarası için özel kurallar - Küçük ekranlar */
  .contact-phone-mobile {
    display: block !important;
    line-height: 1.2 !important;
    margin: 0 !important;
  }
  
  .contact-label-mobile {
    display: none !important;
  }
  
  .sub-header .info li {
    font-size: 11px;
  }
  
  .sub-header .info li i {
    font-size: 12px;
  }
  
  .header-phone-link {
    padding: 5px 10px;
    font-size: 12px;
  }
}

.preloader-inner {
  position: relative;
  width: 142px;
  height: 40px;
}

.js-preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.99);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* ===== CLS PREVENTION STYLES ===== */
/* Layout shift önleme stilleri */

.about-section {
  min-height: 400px;
}

.facilities-section {
  min-height: 500px;
}

.facility-item {
  min-height: 250px;
}

.facility-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

/* Voleybol section larger images */
.voleybol-row .facility-item img {
  height: 300px;
}

.about-image img {
  max-width: 400px;
  height: auto;
  aspect-ratio: 1/1;
}

/* ===== MOBILE RESPONSIVE STYLES ===== */

@media (max-width: 768px) {
  .col-lg-6,
  .col-lg-3,
  .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ===== INDEX PAGE SPECIFIC STYLES ===== */

.index-banner-title {
  color: white;
  font-size: 48px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* About Section */
.about-section {
  margin-top: 0;
  padding-top: 30px;
}

/* Facilities Section */
.facilities-section {
  margin-top: 20px;
  padding: 20px 0;
}

.section-heading {
  margin-bottom: 20px;
}

.section-heading.text-center {
  margin-bottom: 20px;
}

/* Contact Content */
.contact-content {
  padding: 30px 0;
  margin-top: 30px;
}

/* ===== ANTRENORLER PAGE SPECIFIC STYLES ===== */

.custom-banner {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

.custom-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.banner-title {
  color: white;
  font-size: 48px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.banner-container {
  text-align: center;
  padding: 50px 0;
  position: relative;
  z-index: 1;
}

/* Index page banner container specific */
.index-page .banner-container {
  text-align: center;
  padding: 50px 0;
}

.antrenor-card {
  background: white;
  border: 3px solid #1e3a8a;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.fb-watermark {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  font-weight: bold;
  color: #1e3a8a;
  opacity: 0.3;
}

.fb-watermark.yellow {
  color: #ffd700;
}

.antrenor-photo {
  width: 100%;
  height: 250px;
  background: #f8f9fa;
  margin: 0 auto 15px;
  border: 3px solid #1e3a8a;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

.antrenor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.antrenor-name {
  color: #1e3a8a;
  font-weight: 600;
  margin-bottom: 5px;
}

.antrenor-name a {
  color: #1e3a8a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.antrenor-name a:hover {
  color: #ffd700;
}

.antrenor-title {
  color: #666;
  margin: 0;
}

.antrenor-bg {
  background: #ffd700;
  padding: 50px 0;
}

/* ===== PROPERTIES PAGE SPECIFIC STYLES ===== */

.branşlar {
  margin-top: 0;
}

.branşlar-header {
  background: #1e3a8a;
  padding: 60px 0;
  margin-bottom: 40px;
  color: white;
}

.branşlar-title {
  color: white;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.branşlar-description {
  color: white;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.branş-kutusu {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.branş-kutusu:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
}

.branş-başlık {
  padding: 20px;
  text-align: center;
}

.branş-başlık h3 {
  color: #1e1e1e;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.branş-link {
  text-decoration: none;
  color: inherit;
}

.branş-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* ===== GALERI PAGE SPECIFIC STYLES ===== */

.galeri {
  padding: 60px 0;
}

.galeri-item {
  margin-bottom: 30px;
}

.galeri-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

/* ===== CONTACT PAGE SPECIFIC STYLES ===== */

.contact-content {
  padding: 30px 0;
  margin-top: 30px;
}

.contact-content .col-lg-6 {
  margin-bottom: 20px;
}

.contact-map-title {
  color: #1e3a8a;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
}

/* Contact Page Specific */
.contact-content .col-lg-6 {
  margin-bottom: 20px;
}

/* Map Container Styles */
.map-container {
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 10px;
}

.map-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #1e3a8a;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.map-button i {
  margin-right: 5px;
}

.map-address {
  text-align: center;
  margin-top: 15px;
}

.map-address i {
  color: #ffd700;
  margin-right: 10px;
}

.map-address span {
  color: #000;
  font-weight: 500;
}

.contact-map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 10px;
}

.map-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #1e3a8a;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.map-address {
  text-align: center;
  margin-top: 15px;
}

.map-address i {
  color: #ffd700;
  margin-right: 10px;
}

.map-address span {
  color: #000;
  font-weight: 500;
}

/* ===== HARITALAR SECTION ===== */

.haritalar-section {
  background: #f8f9fa;
  padding: 40px 0;
  margin-top: 30px;
}

/* ===== FOOTER STYLES ===== */

footer {
  padding: 10px 0;
  min-height: auto;
  margin-top: 30px;
}

footer h4 {
  color: #fafad2;
  font-weight: 600;
  margin-bottom: 10px;
}

footer .phone-link {
  color: #000;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer .copyright {
  font-weight: 600;
  font-size: 15px;
  color: #000;
  margin-top: 15px;
  margin-bottom: 10px;
  line-height: normal;
}

footer .phone-icon {
  color: #ffd700;
  margin-right: 10px;
}

footer .phone-container {
  margin-bottom: 5px;
}

footer h4 {
  color: #fafad2;
  font-weight: 600;
  margin-bottom: 10px;
}

/* ===== MOBILE SPECIFIC OPTIMIZATIONS ===== */

/* Header Phone Mobile Optimization */
@media (max-width: 992px) {
  .header-phone {
    margin-left: 10px;
    padding-left: 10px;
  }
  
  .phone-btn span {
    display: none;
  }
  
  .phone-btn {
    padding: 8px 12px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    justify-content: center;
  }
  
  .phone-btn i {
    margin-right: 0;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .header-phone {
    position: absolute;
    top: 15px;
    right: 70px;
    margin: 0;
    padding: 0;
  }
  
  .phone-btn {
    background: #1e3a8a;
    padding: 6px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
  }
  
  .phone-btn i {
    font-size: 12px;
  }
}

/* Mobile Banner Text Responsive */
@media (max-width: 768px) {
  .banner-title {
    font-size: 32px !important;
    text-align: center !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    margin-left: 0 !important;
    line-height: 1.2 !important;
    white-space: normal !important;
    overflow: visible;
  }

  .banner-container {
    text-align: center !important;
    padding: 30px 0 !important;
  }
  
  .banner-slider {
    height: 300px !important;
  }
  
  .slide-title {
    font-size: 32px !important;
    color: white !important;
  }
  
  .slide-subtitle {
    font-size: 16px !important;
    color: white !important;
  }
  
  .nav-btn {
    width: 40px !important;
    height: 40px !important;
    font-size: 14px !important;
  }

  .index-banner-title {
    font-size: 32px !important;
    line-height: 1.3 !important;
    padding: 0 10px !important;
  }

  .branşlar h1 {
    font-size: 36px !important;
  }

  .branşlar p {
    font-size: 16px !important;
  }

  .branş-kutusu img {
    height: 250px !important;
  }

  .galeri {
    padding: 40px 0 !important;
  }

  .galeri .col-lg-4 {
    margin-bottom: 20px !important;
  }

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

  .contact-content .col-lg-6 {
    margin-bottom: 30px !important;
  }

  .contact-content iframe {
    height: 250px !important;
  }

  .contact-content span {
    font-size: 12px !important;
    line-height: 1.4 !important;
  }
}

@media (max-width: 480px) {
  .banner-title {
    font-size: 24px !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    line-height: 1.3 !important;
  }
  
  .banner-slider {
    height: 250px !important;
  }
  
  .slide-title {
    font-size: 24px !important;
    color: white !important;
  }
  
  .slide-subtitle {
    font-size: 14px !important;
    color: white !important;
  }
  
  .nav-btn {
    width: 35px !important;
    height: 35px !important;
    font-size: 12px !important;
  }
  
  .slider-dots {
    bottom: 20px !important;
  }
  
  .dot {
    width: 10px !important;
    height: 10px !important;
  }
  
  .banner-container {
    padding: 20px 0 !important;
  }

  .index-banner-title {
    font-size: 24px !important;
  }

  .branşlar .container-fluid {
    padding: 30px 10px !important;
  }
  
  .branşlar h1 {
    font-size: 28px !important;
    margin-bottom: 15px !important;
  }
  
  .branşlar p {
    font-size: 14px !important;
    padding: 0 10px !important;
    line-height: 1.5 !important;
  }
  
  .branş-kutusu {
    margin-bottom: 20px !important;
  }
  
  .branş-kutusu img {
    height: 200px !important;
  }
  
  .branş-başlık h3 {
    font-size: 20px !important;
  }

  /* Antrenör Kartları Mobil Optimizasyon */
  .col-lg-4.col-md-6 {
    margin-bottom: 20px !important;
  }
  
  .col-lg-4.col-md-6 > div {
    margin: 0 10px !important;
  }
  
  .col-lg-4.col-md-6 h4 {
    font-size: 18px !important;
  }
  
  .col-lg-4.col-md-6 p {
    font-size: 13px !important;
  }
  
  /* Antrenör Resim Yüksekliği */
  .col-lg-4.col-md-6 div[style*="height: 250px"] {
    height: 200px !important;
  }

  .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

/* ===== TRAINER DETAIL PAGES ===== */

.single-property .main-content h4 {
  font-size: 25px;
  margin-top: 25px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
}

.single-property .main-content span.category {
  background-color: #fbd9cf;
  font-weight: 500;
  border-radius: 5px;
  font-size: 14px;
  color: #1e1e1e;
  padding: 5px 12px;
  display: inline-block;
  margin-top: 40px;
}

@media (max-width: 480px) {
  .single-property .main-content h4 {
    font-size: 20px !important;
    text-align: center !important;
  }
  
  .single-property .main-content p {
    font-size: 14px !important;
    text-align: center !important;
    padding: 0 10px !important;
  }
  
  .single-property .info-table {
    margin-left: 0 !important;
    margin-top: 30px !important;
  }
  
  .single-property .info-table ul li h4 {
    font-size: 18px !important;
  }
}

@media (max-width: 768px) and (min-width: 481px) {
  .single-property .main-content h4 {
    font-size: 22px !important;
  }
}
