@import url('https://fonts.googleapis.com/css2?family=Noto+Color+Emoji&display=swap');

/* CSS Reset & Variables */
:root {
  --primary: #1e3f20;
  --primary-light: #2d5a30;
  --primary-dark: #122613;
  --accent: #a3e635; /* Lime green */
  --accent-glow: rgba(163, 230, 53, 0.4);
  --dark-bg: #0b130c;
  --dark-surface: #132215;
  --dark-surface-muted: #1a2e1d;
  --text-light: #f4f7f5;
  --text-muted: #94a398;
  --white: #ffffff;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Outfit', 'Noto Color Emoji', sans-serif;
  --font-body: 'Inter', 'Noto Color Emoji', sans-serif;
  --border-radius: 16px;
  --max-width: 1200px;
}

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

body {
  background-color: var(--dark-bg);
  color: var(--text-light);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--accent), #4ade80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Common */
.section {
  padding: 100px 0;
}

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

.section-tag {
  display: inline-block;
  background-color: rgba(163, 230, 53, 0.1);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  border: 1px solid rgba(163, 230, 53, 0.2);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--white);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 100px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  gap: 8px;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--dark-bg);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(163, 230, 53, 0.6);
  background-color: #bef264;
}

.btn-ghost {
  background-color: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background-color: var(--accent);
  color: var(--dark-bg);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.btn-whatsapp {
  background-color: #25d366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

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

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(11, 19, 12, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 12px 0;
  background-color: var(--dark-bg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
}

.logo-leaf {
  font-size: 1.8rem;
  animation: float 3s ease-in-out infinite;
}

.nav-links {
  display: flex;
  gap: 24px;
  flex-wrap: nowrap;
}

.nav-link {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text-muted);
  font-size: 1.05rem;
  position: relative;
  padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2.5px;
  background-color: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: zoomHero 20s ease-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(11, 19, 12, 0.4), rgba(11, 19, 12, 0.95));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin-left: 10%;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 30px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.15);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 10px;
}

.scroll-indicator span {
  display: block;
  width: 6px;
  height: 12px;
  background-color: var(--accent);
  border-radius: 3px;
  animation: scrollDown 1.5s infinite;
}

/* PAGE HERO COMMON */
.page-hero {
  position: relative;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  overflow: hidden;
}

.page-hero--short {
  height: 40vh;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.page-hero-content h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-top: 10px;
  margin-bottom: 20px;
}

.page-hero-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
}

/* SERVICES SECTION */
.services {
  background-color: var(--dark-bg);
}

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

.service-card {
  background: rgba(20, 28, 21, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 36px 32px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(163, 230, 53, 0.25);
  background: rgba(24, 34, 25, 0.75);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  transition: all 0.35s ease;
}

/* Specific Service Icon Colors & Hover Effects */
#service-cycling .service-icon {
  background: rgba(163, 230, 53, 0.07);
  border: 1px solid rgba(163, 230, 53, 0.15);
}
#service-cycling:hover .service-icon {
  background: rgba(163, 230, 53, 0.18);
  border-color: rgba(163, 230, 53, 0.35);
  transform: scale(1.08) rotate(-5deg);
}

#service-strength .service-icon {
  background: rgba(251, 146, 60, 0.07);
  border: 1px solid rgba(251, 146, 60, 0.15);
}
#service-strength:hover .service-icon {
  background: rgba(251, 146, 60, 0.18);
  border-color: rgba(251, 146, 60, 0.35);
  transform: scale(1.08);
}

#service-hiking .service-icon {
  background: rgba(56, 189, 248, 0.07);
  border: 1px solid rgba(56, 189, 248, 0.15);
}
#service-hiking:hover .service-icon {
  background: rgba(56, 189, 248, 0.18);
  border-color: rgba(56, 189, 248, 0.35);
  transform: scale(1.08) translateY(-2px);
}

#service-coaching .service-icon {
  background: rgba(192, 132, 252, 0.07);
  border: 1px solid rgba(192, 132, 252, 0.15);
}
#service-coaching:hover .service-icon {
  background: rgba(192, 132, 252, 0.18);
  border-color: rgba(192, 132, 252, 0.35);
  transform: scale(1.08) rotate(10deg);
}

#service-group .service-icon {
  background: rgba(45, 212, 191, 0.07);
  border: 1px solid rgba(45, 212, 191, 0.15);
}
#service-group:hover .service-icon {
  background: rgba(45, 212, 191, 0.18);
  border-color: rgba(45, 212, 191, 0.35);
  transform: scale(1.08);
}

#service-discipline .service-icon {
  background: rgba(251, 113, 133, 0.07);
  border: 1px solid rgba(251, 113, 133, 0.15);
}
#service-discipline:hover .service-icon {
  background: rgba(251, 113, 133, 0.18);
  border-color: rgba(251, 113, 133, 0.35);
  transform: scale(1.08);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-card .service-tag {
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* GALLERY STRIP */
.gallery-section {
  padding: 80px 0;
  background-color: rgba(10, 15, 11, 0.3);
}

/* PREMIUM GALLERY GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.gallery-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
}

.gallery-card-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.gallery-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.gallery-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 19, 12, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-card:hover .gallery-card-overlay {
  opacity: 1;
}

.gallery-card-btn {
  background: var(--white);
  color: var(--dark-bg);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gallery-card-btn:hover {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.05);
}

.gallery-card-info {
  padding: 24px;
}

.gallery-card-info h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.gallery-card-info p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* RESPONSIVE GALLERY GRID */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* REVIEWS SECTION & GRID */
.reviews-section {
  background-color: rgba(9, 14, 10, 0.6);
  background-image: radial-gradient(circle at 10% 20%, rgba(163, 230, 53, 0.03) 0%, transparent 40%),
                    radial-gradient(circle at 90% 80%, rgba(21, 128, 61, 0.03) 0%, transparent 40%);
  padding: 120px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.reviews-section-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 50px;
  align-items: start;
  margin-top: 60px;
}

/* Yorum Listesi Kartları */
.reviews-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-height: 580px;
  overflow-y: auto;
  padding-right: 18px;
  /* Firefox Support */
  scrollbar-width: auto;
  scrollbar-color: rgba(163, 230, 53, 0.45) rgba(255, 255, 255, 0.04);
}

/* Scrollbar styling for reviews-wrapper to keep it premium and highly usable */
.reviews-wrapper::-webkit-scrollbar {
  width: 10px;
}
.reviews-wrapper::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}
.reviews-wrapper::-webkit-scrollbar-thumb {
  background: rgba(163, 230, 53, 0.4);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: padding-box;
  transition: all 0.2s ease;
}
.reviews-wrapper::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
  background-clip: padding-box;
}

.review-item-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.005) 100%);
  border: 1px solid rgba(163, 230, 53, 0.08);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(20px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  /* overflow:hidden kaldırıldı — backdrop-filter stacking context'i metin katmanını gizliyordu */
  isolation: isolate;
}

/* Elegant floating quotation mark in background */
.review-item-card::before {
  content: '“';
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 6rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.review-item-card:hover {
  transform: translateY(-5px);
  border-color: rgba(163, 230, 53, 0.4);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.01) 100%);
  box-shadow: 0 20px 40px rgba(163, 230, 53, 0.08);
}

.review-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.review-card-user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-card-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-card-meta h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.3px;
  margin-bottom: 2px;
}

.review-card-meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.review-stars {
  display: flex;
  gap: 3px;
}

.review-card-comment {
  font-size: 0.95rem;
  color: #f1f5f9 !important;
  line-height: 1.65;
  font-weight: 400;
  margin-top: 8px;
  position: relative;
  z-index: 2;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}


/* Yorum Ekle Formu */
.review-form-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.005) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 28px;
  padding: 40px;
  backdrop-filter: blur(25px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  transition: all 0.3s;
}

.review-form-card:hover {
  border-color: rgba(163, 230, 53, 0.15);
}

.review-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.review-form-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.5;
}

.rating-stars {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.star-item {
  color: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.star-item.active {
  color: #facc15;
  filter: drop-shadow(0 0 8px rgba(250, 204, 21, 0.6));
}

.star-item:hover {
  transform: scale(1.3) rotate(8deg);
}

/* RESPONSIVE REVIEWS GRID */
@media (max-width: 992px) {
  .reviews-section-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .reviews-wrapper {
    max-height: 450px;
  }
}

/* CTA SECTION */
.cta-section {
  background-color: var(--dark-bg);
}

.cta-card {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark-surface) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  display: flex;
  overflow: hidden;
  position: relative;
}

.cta-content {
  flex: 1.2;
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.cta-content h2 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-content p {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 40px;
  max-width: 500px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
}

.cta-visual {
  flex: 0.8;
  position: relative;
  min-height: 400px;
}

.cta-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* ABOUT PAGE SPECIFIC */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-image-col {
  position: relative;
}

.about-img-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.about-img-wrapper img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.about-img-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background-color: var(--accent);
  color: var(--dark-bg);
  padding: 20px 30px;
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.badge-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
}

.badge-text {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text-col .section-tag {
  margin-bottom: 20px;
}

.about-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.pill {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* VALUES SECTION */
.values-section {
  background-color: var(--dark-surface);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.value-card {
  background-color: var(--dark-bg);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: rgba(163, 230, 53, 0.1);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 12px;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* MİSYON & VİZYON (Hakkımızda sayfası) */
.mv-section {
  background-color: var(--dark-surface);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mv-card {
  background-color: var(--dark-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 50px;
  transition: var(--transition);
}

.mv-card--accent {
  background: linear-gradient(135deg, rgba(163, 230, 53, 0.06) 0%, var(--dark-bg) 100%);
  border-color: rgba(163, 230, 53, 0.15);
}

.mv-card:hover {
  transform: translateY(-4px);
  border-color: rgba(163, 230, 53, 0.2);
}

.mv-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.mv-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.mv-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
}

.mv-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.mv-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.mv-pills span {
  background-color: rgba(163, 230, 53, 0.08);
  color: var(--accent);
  border: 1px solid rgba(163, 230, 53, 0.2);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* MİSYON & VİZYON TEASER (Ana sayfa) */
.mv-teaser {
  background-color: var(--dark-surface);
}

.mv-teaser-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.mv-teaser-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(163, 230, 53, 0.3), transparent);
  align-self: stretch;
  margin: 0 50px;
}

.mv-teaser-card {
  padding: 20px;
}

.mv-teaser-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.mv-teaser-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 18px;
}

.mv-teaser-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.mv-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  gap: 4px;
}

.mv-link:hover {
  gap: 10px;
}

/* PHOTO SHOWCASE */
.photo-showcase {
  background-color: var(--dark-bg);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
}

.showcase-main, .showcase-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.showcase-main img {
  width: 100%;
  height: 530px;
  object-fit: cover;
}

.showcase-side {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.showcase-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.showcase-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* APPOINTMENT & CONTACT PAGES */
.appointment-layout, .contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.form-card {
  background-color: var(--dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 50px;
}

.form-header {
  margin-bottom: 40px;
}

.form-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 16px;
}

.form-header h2 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 10px;
}

.form-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.appointment-form, .contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  background-color: var(--dark-surface-muted);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(163, 230, 53, 0.15);
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23f4f7f5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 16px;
  padding-right: 45px;
}

select option {
  background-color: var(--dark-surface);
  color: var(--white);
}

textarea {
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  accent-color: var(--accent);
  cursor: pointer;
  margin-top: 3px;
}

.form-check label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--text-muted);
  user-select: none;
}

.field-error {
  font-size: 0.8rem;
  color: #ef4444;
  margin-top: 4px;
  min-height: 18px;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 24px;
}

.form-success h3 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 16px;
}

.form-success p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 30px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* APPOINTMENT/CONTACT INFO COLS */
.appointment-info-col, .contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card, .contact-info-card {
  background-color: var(--dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
}

.info-card h3, .contact-info-card h2 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-step {
  display: flex;
  gap: 20px;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--accent);
  color: var(--dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}

.step-content p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.program-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.program-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--text-light);
}

.program-list li span {
  font-size: 1.2rem;
}

.contact-intro {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dark-surface-muted);
  color: var(--accent);
  transition: var(--transition);
}

.contact-item:hover .contact-item-icon {
  background-color: var(--accent);
  color: var(--dark-bg);
  transform: scale(1.05);
}

.contact-item-content {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.contact-value {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--white);
  font-size: 1rem;
}

/* FOOTER */
.footer {
  background-color: var(--dark-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background-color: var(--accent);
  color: var(--dark-bg);
  transform: translateY(-2px);
}

.footer-links h4, .footer-contact h4 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 24px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.footer-contact p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* WHATSAPP FLOAT BUTTON */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-btn:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background-color: var(--dark-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(20px); opacity: 0; }
}

@keyframes zoomHero {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

/* RESPONSIVE DESIGN (TABLET & MOBILE & IPAD) */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.2rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid, .cta-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-content {
    padding: 50px;
  }

  .cta-visual {
    height: 300px;
  }
  
  .appointment-layout, .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mv-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mv-teaser-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mv-teaser-divider {
    display: none;
  }
}

@media (max-width: 1024px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--dark-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    align-items: center;
    transform: translateY(-150%);
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
  }

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

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
  }

  .hero {
    height: auto;
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .hero-content {
    margin-left: 0;
    text-align: center;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .section-title {
    font-size: 2rem;
  }

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



  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-card {
    padding: 30px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  
  .showcase-main img {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.6rem;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 15px 30px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .page-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .whatsapp-btn {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}

/* MOBILE OPTIMIZATION FOR REVIEWS & CTA TRANSITION */
@media (max-width: 768px) {
  .reviews-section {
    padding: 50px 0 25px 0;
  }
  .reviews-section-grid {
    margin-top: 30px;
    gap: 35px;
  }
  .review-form-card {
    padding: 24px;
    border-radius: 16px;
  }
  .cta-section {
    padding: 25px 0 50px 0;
  }
  .cta-card {
    border-radius: 18px;
    flex-direction: column;
    display: flex;
  }
  .cta-content {
    padding: 40px 24px;
    text-align: center;
    align-items: center;
  }
  .cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
    line-height: 1.3;
  }
  .cta-content p {
    font-size: 1.05rem;
    margin-bottom: 24px;
  }
  .cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
  .cta-visual {
    height: 240px;
    min-height: auto;
    width: 100%;
  }
  .cta-visual img {
    position: relative;
    height: 240px;
  }
}
