@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&display=swap');

:root {
  --dominant: #FFF6DE;      /* 60% Cream/Light Background */
  --secondary: #1D5D9B;     /* 30% Dark Blue */
  --accent: #75C2F6;        /* 10% Light Blue */
  --whatsapp: #25D366;      /* WhatsApp Green */
  
  --text-dark: #1D5D9B;     /* Text on light backgrounds */
  --text-light: #ffffff;    /* Text on dark backgrounds */
  --text-muted-dark: rgba(29, 93, 155, 0.75);
  --text-muted-light: rgba(255, 246, 222, 0.75);
  --lines: rgba(29, 93, 155, 0.15); 
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  background-color: var(--dominant);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  padding-top: 80px; /* Offset for fixed header */
}

h1, h2, h3, h4 {
  color: var(--secondary);
  font-weight: 600;
}

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

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

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('assets/about_bg.jpg'), url('assets/about_bg.jpg');
  background-size: contain, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-color: var(--dominant);
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(255, 246, 222, 0.25), rgba(255, 246, 222, 0.75));
  z-index: 1;
}

/* Header & Navigation */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(255, 246, 222, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--lines);
  display: flex;
  align-items: center;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Raleway', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 1px;
}

.logo i {
  font-size: 1.8rem;
  color: var(--accent);
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.main-nav a {
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: var(--accent);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 900px;
}

.hero-title {
  font-family: 'Raleway', sans-serif;
  font-size: 6rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1rem;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.hero-subtitle {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-light);
  background-color: var(--secondary);
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  display: inline-block;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease 0.3s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.hero-promo-wrapper {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.btn-promo-pulse {
  display: inline-block;
  background-color: #FF9F68; /* Sweet pastel orange */
  color: #ffffff;
  padding: 1rem 2.5rem;
  border-radius: 50px; /* Pill shape */
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 159, 104, 0.4);
  transition: all 0.3s ease;
  animation: softPulse 2s infinite;
  text-decoration: none;
}

.btn-promo-pulse:hover {
  background-color: #FF8C42;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 159, 104, 0.6);
  color: #ffffff;
  animation-play-state: paused;
}

@keyframes softPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(255, 159, 104, 0.4);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 4px 25px rgba(255, 159, 104, 0.7);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(255, 159, 104, 0.4);
  }
}

.btn-glass {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--secondary);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.btn-glass-outline {
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn-glass-outline:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(29, 93, 155, 0.3);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: var(--secondary);
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-20px) translateX(-50%); }
  60% { transform: translateY(-10px) translateX(-50%); }
}

/* About Section */
.about {
  background-color: var(--secondary);
  color: var(--text-light);
  padding: 8rem 0 12rem 0;
  position: relative;
}

.custom-shape-divider-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-bottom svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.custom-shape-divider-bottom .shape-fill {
  fill: var(--dominant);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: -120px;
  z-index: 10;
}

.about-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

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

.about-text h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: var(--accent);
}

.about-text p {
  font-size: 1.15rem;
  color: var(--text-muted-light);
  margin-bottom: 1.5rem;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.about-badges .badge {
  background-color: var(--accent);
  color: var(--text-dark);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about-badges .badge i {
  font-size: 1.1rem;
}

.about-badges .badge:hover {
  transform: translateY(-3px);
  background-color: var(--dominant);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* Services Section */
.services {
  padding: 8rem 0;
  background-color: var(--dominant);
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(rgba(29, 93, 155, 0.05) 2px, transparent 2px);
  background-size: 30px 30px;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
  opacity: 0.6;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background-color: rgba(117, 194, 246, 0.2);
  top: 10%;
  left: -100px;
  animation: float 15s ease-in-out infinite alternate;
}

.blob-2 {
  width: 300px;
  height: 300px;
  background-color: rgba(29, 93, 155, 0.1);
  bottom: 20%;
  right: -50px;
  filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15rem;
  color: rgba(29, 93, 155, 0.05);
  animation: float 20s ease-in-out infinite alternate-reverse;
}

@keyframes float {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(50px, 50px) rotate(20deg); }
}

.services .container {
  position: relative;
  z-index: 1;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 5rem;
}

/* Dashboard / Center-Stage Layout */
.services-mobile-tabs-wrapper {
  display: none;
}

.services-dashboard-wrapper {
  display: grid;
  grid-template-columns: 25% 50% 25%;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 8rem auto;
  position: relative;
}

.services-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
}

/* Service Card Design */
.service-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 15px rgba(29, 93, 155, 0.04);
  border: 1px solid rgba(29, 93, 155, 0.08);
  cursor: pointer;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 110px;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(29, 93, 155, 0.1);
  border-color: var(--accent);
}

.service-card .card-icon {
  width: 45px;
  height: 45px;
  background-color: rgba(117, 194, 246, 0.15);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.service-card .card-body {
  flex-grow: 1;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 4px;
  line-height: 1.3;
  transition: all 0.3s ease;
}

.service-card .short-desc {
  font-size: 0.82rem;
  color: var(--text-muted-dark);
  line-height: 1.4;
  margin: 0;
}

/* Active State Design */
.service-card.active {
  background-color: var(--secondary);
  border-color: var(--secondary);
  box-shadow: 0 15px 35px rgba(29, 93, 155, 0.22);
  transform: scale(1.02);
}

.service-card.active h3 {
  color: #ffffff;
}

.service-card.active .short-desc {
  color: rgba(255, 255, 255, 0.8);
}

.service-card.active .card-icon {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* Active State Connections (Ok / Üçgen İşareti) */
.services-left-col .service-card.active::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid var(--secondary);
  z-index: 10;
}

.services-right-col .service-card.active::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid var(--secondary);
  z-index: 10;
}

/* Center Stage Content Area */
.services-center-stage {
  background-color: #111111;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(29, 93, 155, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 550px;
}

.center-stage-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  flex-grow: 1;
  position: relative;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* JS Transition State */
.services-center-stage.changing .center-stage-inner {
  opacity: 0;
  transform: translateY(15px);
}

.center-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.center-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.2) 100%);
  z-index: 1;
}

.center-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-center-stage:hover .center-image-wrapper img {
  transform: scale(1.04);
}

.center-content-wrapper {
  padding: 3rem 2.2rem 2.2rem 2.2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}

.center-title {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 0.8rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.center-long-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.8rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.center-long-desc p {
  margin-bottom: 0.6rem;
}

.center-long-desc strong {
  color: #ffffff;
}

/* Testimonial Card Styling */
.center-testimonial-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.8rem;
  position: relative;
  box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.05);
}

.testimonial-content {
  position: relative;
}

.testimonial-quote-icon {
  position: absolute;
  top: -12px;
  left: -8px;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.1);
  z-index: 1;
  pointer-events: none;
}

.testimonial-content p {
  position: relative;
  z-index: 2;
  font-style: italic;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #ffffff;
  margin: 0;
}

.testimonial-author-info {
  margin-top: 0.6rem;
  text-align: right;
}

.testimonial-author {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
}

/* CTA WhatsApp Button */
.center-cta-wrapper {
  margin-top: auto;
}

.btn-whatsapp-services {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--whatsapp);
  color: #ffffff;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  width: 100%;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.15);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-whatsapp-services:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-services i {
  font-size: 1.3rem;
}

/* Mobil Tasarım (App-Like Görünüm) */
@media (max-width: 900px) {
  .services-dashboard-wrapper {
    grid-template-columns: 100%;
    gap: 20px;
    margin-bottom: 4rem;
  }
  
  .services-column {
    display: none;
  }
  
  .services-mobile-tabs-wrapper {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
  }
  
  .services-mobile-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .services-mobile-tabs::-webkit-scrollbar {
    display: none;
  }
  
  .mobile-tab {
    flex: 0 0 auto;
    scroll-snap-align: start;
    background-color: #ffffff;
    border: 1px solid rgba(29, 93, 155, 0.08);
    border-radius: 30px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .mobile-tab i {
    font-size: 0.95rem;
    color: var(--secondary);
    transition: all 0.3s ease;
  }
  
  .mobile-tab span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
    white-space: nowrap;
  }
  
  .mobile-tab.active {
    background-color: var(--secondary);
    border-color: var(--secondary);
    box-shadow: 0 6px 15px rgba(29, 93, 155, 0.15);
  }
  
  .mobile-tab.active i {
    color: #ffffff;
  }
  
  .mobile-tab.active span {
    color: #ffffff;
  }
  
  .services-center-stage {
    grid-column: 1;
    width: 100%;
  }
  
  .center-content-wrapper {
    padding: 1.5rem;
    justify-content: flex-end;
  }
  
  .center-title {
    font-size: 1.35rem;
  }
  
  .center-long-desc {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
  }
  
  .center-testimonial-card {
    padding: 1rem 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .center-testimonial-card p {
    font-size: 0.88rem;
  }
}

/* Hotel Section Glassmorphism */
.hotel-banner-glass {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 5rem;
  min-height: 450px;
}

.hotel-bg-img {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hotel-glass-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 3rem;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hotel-glass-card h2 {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.hotel-glass-card p {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.btn-glass-dark {
  display: inline-block;
  background-color: var(--secondary);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-glass-dark:hover {
  background-color: var(--accent);
  color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(29, 93, 155, 0.3);
}

/* FAQ Section */
.faq-section {
  padding: 10rem 0 10rem 0;
  background-color: #ffffff;
  position: relative;
}

.custom-shape-divider-top-faq {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-top-faq svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.custom-shape-divider-top-faq .shape-fill-faq {
  fill: var(--dominant);
}

.faq-container {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(29, 93, 155, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(29, 93, 155, 0.12);
}

.faq-item summary {
  padding: 1.8rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #ffffff;
  background-color: var(--accent);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 10px rgba(117, 194, 246, 0.4);
}

.faq-item[open] summary::after {
  background-color: var(--secondary);
  box-shadow: 0 4px 10px rgba(29, 93, 155, 0.4);
  transform: rotate(180deg);
}

.faq-item[open] {
  box-shadow: 0 15px 40px rgba(29, 93, 155, 0.15);
  transform: translateY(-5px);
}

.faq-content {
  padding: 0 1.8rem 1.8rem 1.8rem;
  color: var(--text-muted-dark);
  line-height: 1.7;
  font-size: 1.05rem;
}

.faq-content p {
  border-top: 1px dashed rgba(29, 93, 155, 0.2);
  padding-top: 1.5rem;
  margin-top: 0;
}

.faq-cta {
  text-align: center;
  margin-top: 5rem;
  background: linear-gradient(135deg, var(--secondary), #113f6d);
  padding: 4rem 2rem;
  border-radius: 24px;
  color: var(--text-light);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.faq-cta::before {
  content: '\f1b0';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  font-size: 15rem;
  color: rgba(255, 255, 255, 0.03);
  top: -50px;
  right: -20px;
  transform: rotate(-15deg);
  pointer-events: none;
}

.faq-cta p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 246, 222, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--whatsapp);
  color: #fff;
  padding: 1.2rem 2.8rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  background-color: #128C7E;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(18, 140, 126, 0.4);
}

.custom-shape-divider-top-footer {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background-color: #ffffff;
  margin-bottom: -1px;
}
.custom-shape-divider-top-footer svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
  transform: translateY(1px);
}
.custom-shape-divider-top-footer .shape-fill-footer {
  fill: var(--secondary);
}

/* Footer */
.footer {
  background-color: var(--secondary);
  color: var(--text-light);
  padding: 5rem 0;
  border-top: none;
  text-align: center;
}

/* Free Training Promo Box */
.footer-promo-box {
  background: #FDF5E6;
  border-radius: 20px;
  padding: 3rem 2rem;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 15px 35px rgba(29, 53, 87, 0.1);
  color: #1D3557;
  position: relative;
  overflow: hidden;
}

.promo-box-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.promo-hug-wrapper {
  background: transparent !important;
  box-shadow: none !important;
  width: 260px !important; /* Artırılmış boyut */
  height: 260px !important;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.promo-hug-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.promo-box-content h3 {
  color: #1D3557;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.promo-box-content p {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(29, 53, 87, 0.85);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-promo-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #2A9D8F;
  color: #ffffff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.15rem;
  box-shadow: 0 8px 25px rgba(42, 157, 143, 0.3);
  transition: all 0.3s ease;
}

.btn-promo-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(42, 157, 143, 0.4);
  background-color: #238579;
  color: #ffffff;
}

.footer h2 {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: var(--accent);
}

.contact-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  font-size: 1.2rem;
  color: var(--text-muted-light);
}

.contact-info li i {
  color: var(--accent);
  margin-right: 12px;
  font-size: 1.5rem;
  width: 24px;
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background-color: var(--whatsapp);
  color: #ffffff;
  padding: 1rem 1.8rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 999;
}

.whatsapp-btn:hover {
  background-color: #128C7E;
  color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(18, 140, 126, 0.5);
}

.whatsapp-btn i {
  font-size: 1.8rem;
}

@media (max-width: 900px) {
  .hero-title { font-size: 4rem; }
  .about-grid { grid-template-columns: 1fr; }
  .whatsapp-btn { bottom: 20px; right: 20px; padding: 0.8rem 1.2rem; font-size: 1rem; }
  .whatsapp-btn i { font-size: 1.5rem; }
  
  /* Hotel Banner Mobile Fixes */
  .hotel-banner-glass {
    padding: 3rem 1.5rem;
    min-height: auto;
    justify-content: center;
    border-radius: 16px;
  }
  
  .hotel-glass-card {
    padding: 2rem 1.5rem;
    max-width: 100%;
    text-align: center;
  }
  
  .hotel-glass-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .hotel-glass-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .faq-cta {
    padding: 2.5rem 1.5rem;
    margin-top: 3rem;
  }
  
  .faq-cta p {
    font-size: 1.1rem;
  }

  .btn-primary {
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
  }
}

@media (max-width: 768px) {
  /* Hero Section Mobile Miniature Scaling */
  .hero {
    background-size: cover;
    background-position: center 30%;
  }

  .hero-content {
    padding: 0 5vw;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-title {
    font-size: 11vw;
    margin-bottom: 2vw;
    white-space: normal; /* Satır kırılmasına izin ver */
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 3.2vw;
    padding: 1vw 2.5vw;
    border-radius: 30px;
    white-space: normal; /* Satır kırılmasına izin ver */
    line-height: 1.4;
    display: inline-block;
  }

  .hero-ctas {
    display: flex;
    flex-direction: row; /* Yan yana dizilimi zorunlu kılar */
    flex-wrap: nowrap; /* Butonların alt alta geçmesini engeller */
    justify-content: center;
    gap: 3vw;
    margin-top: 4vw;
  }

  .hero-ctas .btn-glass {
    font-size: 2.8vw;
    padding: 1.5vw 3.5vw;
    border-radius: 5vw;
    white-space: nowrap; /* Yazının butonda iki satıra düşmesini engeller */
  }
  
  .hero-promo-wrapper .btn-promo-pulse {
    font-size: 2.8vw;
    padding: 1.5vw 3.5vw;
    border-radius: 5vw;
    white-space: nowrap;
  }

  /* Header Mobile Miniature Scaling */
  .main-header {
    height: 12vw;
    min-height: 50px;
  }
  
  .header-container {
    padding: 0 4vw;
  }
  
  .logo {
    font-size: 3.5vw;
    gap: 1vw;
  }
  
  .logo i {
    font-size: 4.5vw;
  }
  
  .main-nav ul {
    gap: 3vw;
  }
  
  .main-nav a {
    font-size: 2.5vw;
  }
}
