:root {
  --tg-primary: #047857;
  --tg-primary-dark: #065f46;
  --tg-primary-light: #d1fae5;
  --tg-ink: #0a2540;
  --tg-muted: #64748b;
  --tg-bg: #FAF8F5;
  --tg-surface: #FFFCF9;
  --tg-radius: 20px;
  --tg-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --tg-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
  --tg-shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.08);
}

html {
  font-size: 15px;
  position: relative;
  min-height: 100%;
  scroll-behavior: smooth;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--tg-ink);
  background: radial-gradient(circle at 15% 15%, rgba(4, 120, 87, 0.025), transparent 35%),
    radial-gradient(circle at 85% 5%, rgba(184, 147, 95, 0.04), transparent 28%),
    linear-gradient(180deg, #FAF8F5 0%, #F5F2ED 100%);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, .tg-hero-title, .tg-section-title, .tg-step-title, .tg-subtitle {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.02em;
}

a {
  color: var(--tg-primary);
  text-decoration: none;
}

a:hover {
  color: #521528;
}

.tg-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(4, 120, 87, 0.08);
  padding: 1rem 0.5rem;
  box-shadow: var(--tg-shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tg-nav .navbar-brand {
  color: var(--tg-primary);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
  padding: 0;
  display: flex;
  align-items: center;
}

.tg-logo {
  height: 85px;
  width: auto;
  transition: transform 0.3s ease;
}

.tg-logo:hover {
  transform: scale(1.05);
}

.tg-nav .navbar-brand:hover {
  color: var(--tg-primary-dark);
}

.tg-nav .nav-link {
  color: var(--tg-ink);
  font-weight: 600;
  font-size: 1.05rem;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  border-radius: 14px;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: -0.01em;
}

.tg-nav .nav-link:hover {
  color: white;
  background: linear-gradient(135deg, var(--tg-primary) 0%, var(--tg-primary-dark) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(4, 120, 87, 0.25);
}

.tg-nav .navbar-nav {
  gap: 0.75rem;
}

.tg-hero {
  position: relative;
  padding: 8rem 0 6rem;
  min-height: 75vh;
  color: #fff;
  background: 
    linear-gradient(135deg, rgba(4, 120, 87, 0.88), rgba(6, 95, 70, 0.92)),
    radial-gradient(circle at 25% 25%, rgba(209, 250, 229, 0.12), transparent 45%),
    radial-gradient(circle at 75% 15%, rgba(255, 255, 255, 0.08), transparent 35%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.28));
  overflow: hidden;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(4, 120, 87, 0.2);
}

.tg-hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.tg-overlay {
  position: absolute;
  inset: 0;
  /* Eski arka plan: background: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=70') center/cover no-repeat; */
  /* background: url('/images/kapadokya1.jpg') center/cover no-repeat; */
  background: linear-gradient(135deg, rgba(4, 120, 87, 0.75), rgba(6, 95, 70, 0.8));
  opacity: 0.85;
  filter: saturate(1.1) brightness(0.95);
  z-index: 1;
}

.tg-hero .container {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tg-hero-copy {
  position: relative;
  max-width: 800px;
  text-align: center;
  z-index: 10;
}

.tg-hero-copy .tg-kicker {
  letter-spacing: 0.22em;
}

@media (max-width: 767px) {
  .tg-hero {
    padding: 4rem 0 3rem;
    min-height: 58vh;
  }

  .tg-hero .container {
    min-height: 48vh;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .tg-hero-title {
    font-size: clamp(2.1rem, 8vw, 2.6rem);
  }

  .tg-hero-sub {
    font-size: 1rem;
  }

  .tg-actions .btn {
    width: 100%;
    margin-right: 0;
  }

  .tg-nav .nav-link {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
    margin: 0.25rem 0;
  }
}

.tg-kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.tg-hero-title {
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.tg-hero-sub {
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  line-height: 1.65;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.tg-actions .btn {
  margin-right: 0.75rem;
  margin-bottom: 0.5rem;
}

.tg-btn-primary {
  background: linear-gradient(135deg, #ffffff 0%, #f0fdfa 100%);
  color: var(--tg-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 2.5rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(4, 120, 87, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tg-btn-primary:hover {
  background: var(--tg-primary);
  color: white;
  border-color: var(--tg-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(4, 120, 87, 0.3), 0 8px 20px rgba(4, 120, 87, 0.2);
}

.tg-btn-ghost {
  border: 1px solid rgba(229, 243, 242, 0.7);
  color: #fff;
  padding: 0.72rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
}

.tg-btn-ghost:hover {
  border-color: #fff;
  color: #fff;
}

.tg-intro {
  padding: 4rem 0 2.5rem;
  background: var(--tg-bg);
}

.tg-lead {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--tg-ink);
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.tg-lead-large {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--tg-ink);
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.tg-body {
  color: var(--tg-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.tg-body-large {
  color: var(--tg-muted);
  font-size: 1.25rem;
  line-height: 1.7;
}

.tg-section-title-large {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(2.75rem, 5vw, 3.5rem);
  color: var(--tg-ink);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.tg-steps {
  padding: 3.5rem 0 4rem;
  background: var(--tg-bg);
}

.tg-timeline {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.tg-timeline-item {
  flex: 1;
  max-width: 320px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.tg-timeline-number {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--tg-primary) 0%, var(--tg-primary-dark) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  font-family: "Playfair Display", Georgia, serif;
  box-shadow: 0 8px 24px rgba(4, 120, 87, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tg-timeline-item:hover .tg-timeline-number {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(4, 120, 87, 0.35);
}

.tg-timeline-content {
  background: var(--tg-surface);
  border-radius: var(--tg-radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--tg-shadow-md);
  border: 1px solid rgba(4, 120, 87, 0.06);
  flex: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tg-timeline-item:hover .tg-timeline-content {
  box-shadow: var(--tg-shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(4, 120, 87, 0.12);
}

.tg-timeline-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--tg-ink);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.tg-timeline-desc {
  color: var(--tg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.tg-timeline-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 0.75rem;
  margin-top: 0.75rem;
  text-align: left;
}

.tg-timeline-list-item {
  color: var(--tg-muted);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.4;
}

.tg-timeline-arrow {
  font-size: 2.5rem;
  color: var(--tg-primary);
  font-weight: 700;
  align-self: center;
  margin-top: 2rem;
  opacity: 0.6;
}

@media (max-width: 991px) {
  .tg-timeline {
    flex-direction: column;
    gap: 2rem;
  }

  .tg-timeline-arrow {
    transform: rotate(90deg);
    margin: 0;
  }

  .tg-timeline-item {
    max-width: 100%;
  }
}

.tg-step-title {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--tg-ink);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.tg-card {
  background: var(--tg-surface);
  border-radius: var(--tg-radius);
  padding: 2rem 2.25rem;
  box-shadow: var(--tg-shadow-md);
  border: 1px solid rgba(4, 120, 87, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tg-card:hover {
  box-shadow: var(--tg-shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(4, 120, 87, 0.12);
}

.tg-card-soft {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(4, 120, 87, 0.08);
}

.tg-card-ghost {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.88));
  backdrop-filter: blur(12px);
  border: 1px solid rgba(4, 120, 87, 0.06);
}

.tg-advantage-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.tg-advantage-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.tg-check-small {
  width: 28px;
  height: 28px;
  background: var(--tg-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  flex-shrink: 0;
}

.tg-advantage-item span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--tg-ink);
}

.tg-why {
  padding: 3rem 0 3.5rem;
  background: var(--tg-surface);
}

.tg-section-title {
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--tg-ink);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.tg-subtitle {
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--tg-ink);
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.tg-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.tg-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--tg-ink);
}

.tg-dot {
  width: 8px;
  height: 8px;
  margin-top: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--tg-primary) 0%, var(--tg-primary-dark) 100%);
  display: inline-block;
  box-shadow: 0 2px 4px rgba(4, 120, 87, 0.25);
}

/* Language Switcher */
.tg-language-switcher {
  display: flex;
  gap: 8px;
  align-items: center;
  background-color: rgba(139, 195, 74, 0.15);
  padding: 6px 10px;
  border-radius: 999px;
  margin-left: 20px;
}

.tg-lang-btn {
  text-decoration: none;
  width: 44px;
  height: 32px;
  padding: 0;
  border-radius: 999px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 1px solid transparent;
}

.tg-lang-btn:hover {
  background-color: rgba(139, 195, 74, 0.3);
  transform: translateY(-1px);
}

.tg-lang-btn.active {
  background-color: rgba(139, 195, 74, 0.4);
  border-color: rgba(4, 120, 87, 0.22);
}

.tg-flag {
  width: 24px;
  height: 18px;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(10, 37, 64, 0.08);
  flex-shrink: 0;
}

.tg-flag-tr {
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 20'><rect width='30' height='20' fill='%23e11d48'/><circle cx='9' cy='10' r='6' fill='white'/><circle cx='11.5' cy='10' r='4.8' fill='%23e11d48'/><polygon points='19,7.5 19.59,9.19 21.38,9.23 19.95,10.31 20.47,12.02 19,11 17.53,12.02 18.05,10.31 16.62,9.23 18.41,9.19' fill='white'/></svg>") center / cover no-repeat;
}

.tg-flag-eng {
  background:
    linear-gradient(90deg, transparent 0 9px, #c8102e 9px 15px, transparent 15px 100%),
    linear-gradient(transparent 0 6px, #c8102e 6px 12px, transparent 12px 100%),
    linear-gradient(90deg, transparent 0 7px, #fff 7px 17px, transparent 17px 100%),
    linear-gradient(transparent 0 4px, #fff 4px 14px, transparent 14px 100%),
    #012169;
}

@media (max-width: 991.98px) {
  .tg-language-switcher {
    margin-left: 0;
    margin-top: 0.75rem;
    width: fit-content;
  }
}

.tg-footer {
  padding: 2.5rem 0;
  background: linear-gradient(180deg, var(--tg-surface) 0%, #f8fafc 100%);
  border-top: 1px solid rgba(4, 120, 87, 0.08);
  margin-top: 3rem;
}

.tg-brand {
  font-weight: 800;
  color: var(--tg-primary);
}

.tg-link {
  font-weight: 600;
  color: var(--tg-primary);
}

.tg-link:hover {
  color: var(--tg-primary-2);
}

.tg-hero, .tg-intro, .tg-stats, .tg-steps {
  scroll-margin-top: 84px;
}

.tg-page-hero {
  padding: 4rem 0 2.5rem;
  background: linear-gradient(135deg, rgba(4, 120, 87, 0.04) 0%, rgba(4, 120, 87, 0.02) 100%);
}

.tg-kicker-alt {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.82rem;
  margin-bottom: 0.75rem;
  color: var(--tg-primary);
  font-weight: 700;
}

.tg-page-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--tg-ink);
  letter-spacing: -0.03em;
}

.tg-page-sub {
  font-size: 1.2rem;
  color: var(--tg-muted);
  line-height: 1.65;
}

.tg-packages {
  padding: 3rem 0 4rem;
  background: var(--tg-bg);
}

.tg-table-wrapper {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.92));
  backdrop-filter: blur(12px);
  border-radius: var(--tg-radius);
  padding: 2.5rem;
  box-shadow: var(--tg-shadow-md);
  border: 1px solid rgba(4, 120, 87, 0.08);
  overflow-x: auto;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tg-table-wrapper:hover {
  box-shadow: var(--tg-shadow-lg);
  border-color: rgba(4, 120, 87, 0.12);
}

.tg-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0;
}

.tg-table thead th {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--tg-ink);
  text-align: left;
  padding: 1.25rem 1.5rem;
  border-bottom: 2px solid rgba(4, 120, 87, 0.15);
  letter-spacing: -0.01em;
}

.tg-table tbody tr {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tg-table tbody tr:hover {
  background: linear-gradient(90deg, rgba(4, 120, 87, 0.04), transparent);
  transform: translateX(4px);
}

.tg-table tbody td {
  padding: 1.5rem 1.5rem;
  border-bottom: 1px solid rgba(4, 120, 87, 0.06);
  vertical-align: middle;
}

.tg-table tbody tr:last-child td {
  border-bottom: none;
}

.tg-package-name {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--tg-primary);
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.01em;
}

.tg-package-desc {
  color: var(--tg-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.tg-package-time {
  font-weight: 600;
  color: var(--tg-ink);
  font-size: 1.05rem;
}

.tg-cta-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
  backdrop-filter: blur(12px);
  border-radius: var(--tg-radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--tg-shadow-md);
  border: 1px solid rgba(4, 120, 87, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tg-cta-box:hover {
  box-shadow: var(--tg-shadow-lg);
  transform: translateY(-2px);
}

.tg-cta-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--tg-ink);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.tg-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.tg-btn-secondary {
  background: transparent;
  color: var(--tg-primary);
  border: 2px solid var(--tg-primary);
  padding: 0.85rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tg-btn-secondary:hover {
  background: var(--tg-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(4, 120, 87, 0.25);
}

@media (max-width: 767px) {
  .tg-table-wrapper {
    padding: 1.5rem 1rem;
  }

  .tg-table thead th {
    font-size: 1.1rem;
    padding: 1rem;
  }

  .tg-table tbody td {
    padding: 1.25rem 1rem;
  }

  .tg-package-name {
    font-size: 1.05rem;
  }

  .tg-package-desc, .tg-package-time {
    font-size: 0.95rem;
  }

  .tg-cta-actions {
    flex-direction: column;
  }

  .tg-cta-actions .btn {
    width: 100%;
  }
}

.tg-comparison-section {
  margin-top: 3rem;
}

.tg-comparison-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--tg-ink);
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.tg-comparison-wrapper {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.92));
  backdrop-filter: blur(12px);
  border-radius: var(--tg-radius);
  padding: 2.5rem;
  box-shadow: var(--tg-shadow-md);
  border: 1px solid rgba(4, 120, 87, 0.08);
  overflow-x: auto;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tg-comparison-wrapper:hover {
  box-shadow: var(--tg-shadow-lg);
  border-color: rgba(4, 120, 87, 0.12);
}

.tg-comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0;
}

.tg-comparison-table thead th {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--tg-ink);
  text-align: center;
  padding: 1.25rem 1rem;
  border-bottom: 2px solid rgba(4, 120, 87, 0.15);
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, rgba(4, 120, 87, 0.04), rgba(4, 120, 87, 0.02));
}

.tg-comparison-table thead th:first-child {
  text-align: left;
  background: transparent;
}

.tg-comparison-table tbody tr {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tg-comparison-table tbody tr:hover {
  background: linear-gradient(90deg, rgba(4, 120, 87, 0.03), transparent);
}

.tg-comparison-table tbody td {
  padding: 1.25rem 1rem;
  border-bottom: 1px solid rgba(4, 120, 87, 0.06);
  vertical-align: middle;
  text-align: center;
}

.tg-comparison-table tbody td:first-child {
  text-align: left;
  color: var(--tg-ink);
  font-size: 1.05rem;
}

.tg-comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.tg-icon-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--tg-primary), var(--tg-primary-dark));
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(4, 120, 87, 0.25);
}

.tg-icon-placeholder {
  display: inline-flex;
  width: 32px;
  height: 32px;
}

.tg-icon-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25);
}

.tg-format {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(4, 120, 87, 0.08), rgba(4, 120, 87, 0.04));
  border-radius: 8px;
  color: var(--tg-primary);
  font-weight: 600;
  font-size: 0.95rem;
}

.tg-feature-icon-image {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}

.tg-feature-icon-lg {
  width: 72px;
  height: 72px;
}

@media (max-width: 991px) {
  .tg-comparison-wrapper {
    padding: 1.5rem 1rem;
  }

  .tg-comparison-table thead th {
    font-size: 0.95rem;
    padding: 1rem 0.5rem;
  }

  .tg-comparison-table tbody td {
    padding: 1rem 0.5rem;
    font-size: 0.9rem;
  }

  .tg-icon-yes, .tg-icon-no, .tg-icon-placeholder {
    width: 28px;
    height: 28px;
  }

  .tg-icon-yes, .tg-icon-no {
    font-size: 1rem;
  }

  .tg-format {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }
}

.tg-package-row {
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tg-package-row:hover {
  background: linear-gradient(90deg, rgba(4, 120, 87, 0.06), transparent) !important;
  transform: translateX(6px) !important;
}

.tg-modal .modal-content {
  border-radius: 24px;
  border: 1px solid rgba(4, 120, 87, 0.12);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.tg-modal .modal-header {
  background: linear-gradient(135deg, rgba(4, 120, 87, 0.06), rgba(4, 120, 87, 0.03));
  border-bottom: 1px solid rgba(4, 120, 87, 0.12);
  padding: 1.75rem 2rem;
}

.tg-modal-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--tg-ink);
  margin: 0;
  letter-spacing: -0.02em;
}

.tg-modal .modal-body {
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
}

.tg-modal .modal-footer {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.95), rgba(255, 255, 255, 0.98));
  border-top: 1px solid rgba(4, 120, 87, 0.08);
  padding: 1.5rem 2rem;
  gap: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.tg-modal-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tg-modal-cta-label {
  margin: 0;
  font-weight: 600;
  color: var(--tg-ink);
  font-size: 0.95rem;
}

.tg-modal-cta-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.tg-modal-cta-buttons .btn svg {
  display: inline-block;
  vertical-align: middle;
}

.tg-btn-ghost {
  background: transparent;
  color: var(--tg-muted);
  border: 1px solid rgba(100, 116, 139, 0.3);
  padding: 0.72rem 1.35rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tg-btn-ghost:hover {
  background: rgba(100, 116, 139, 0.08);
  color: var(--tg-ink);
  border-color: rgba(100, 116, 139, 0.4);
}

.tg-modal-section {
  margin-bottom: 2rem;
}

.tg-modal-subtitle {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--tg-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.tg-modal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.tg-modal-list li {
  padding-left: 1.75rem;
  position: relative;
  color: var(--tg-muted);
  line-height: 1.65;
}

.tg-modal-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--tg-primary), var(--tg-primary-dark));
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 3px 8px rgba(4, 120, 87, 0.2);
}

.tg-modal-image {
  border-radius: var(--tg-radius);
  overflow: hidden;
  box-shadow: var(--tg-shadow-lg);
  border: 1px solid rgba(4, 120, 87, 0.1);
  height: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
}

.tg-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--tg-radius);
}

.modal-backdrop.show {
  opacity: 0.6;
  backdrop-filter: blur(4px);
}

@media (max-width: 991px) {
  .tg-modal .modal-body {
    padding: 1.75rem 1.25rem;
  }

  .tg-modal-image {
    min-height: 240px;
  }

  .tg-modal-title {
    font-size: 1.5rem;
  }
}

/* ====================================
   GALLERY (Medya Page)
   ==================================== */

.tg-page-header {
  padding: 5rem 0 3rem;
  background: linear-gradient(135deg, var(--tg-bg) 0%, #e0f2fe 100%);
  position: relative;
  overflow: hidden;
}

.tg-page-header::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(4, 120, 87, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.tg-page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--tg-ink);
  margin-bottom: 0.75rem;
  text-align: center;
}

.tg-page-subtitle {
  font-size: 1.125rem;
  color: var(--tg-muted);
  text-align: center;
  margin: 0;
}

.tg-gallery-section {
  padding: 4rem 0 6rem;
}

.tg-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 0;
}

.tg-gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--tg-radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--tg-shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  background: var(--tg-bg);
}

.tg-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.tg-gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--tg-shadow-xl);
  border-color: var(--tg-primary);
}

.tg-gallery-item:hover img {
  transform: scale(1.08);
}

.tg-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4, 120, 87, 0.85) 0%, rgba(6, 95, 70, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(2px);
}

.tg-gallery-item:hover .tg-gallery-overlay {
  opacity: 1;
}

.tg-gallery-icon {
  width: 48px;
  height: 48px;
  color: white;
  animation: zoomPulse 2s ease-in-out infinite;
}

@keyframes zoomPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.tg-gallery-modal .modal-content {
  background: white;
  border-radius: var(--tg-radius-lg);
  border: none;
  box-shadow: var(--tg-shadow-xl);
  overflow: hidden;
}

.tg-gallery-modal .modal-header {
  background: linear-gradient(135deg, var(--tg-bg) 0%, #e0f2fe 50%);
  padding: 1.5rem 1.75rem;
}

.tg-gallery-modal .modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--tg-ink);
}

.tg-gallery-modal .btn-close {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230a2540'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.tg-gallery-modal .btn-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.tg-gallery-modal .modal-body img {
  border-radius: 0;
  display: block;
}

@media (max-width: 768px) {
  .tg-gallery {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
  }

  .tg-page-header {
    padding: 3rem 0 2rem;
  }

  .tg-gallery-section {
    padding: 2.5rem 0 4rem;
  }

  .tg-gallery-icon {
    width: 36px;
    height: 36px;
  }
}

@media (min-width: 1400px) {
  .tg-gallery {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ====================================
   FLOATING CONTACT BUTTONS
   ==================================== */

.tg-floating-contacts {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tg-float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
}

.tg-float-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2), 0 6px 16px rgba(0, 0, 0, 0.15);
}

.tg-float-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.tg-float-whatsapp:hover {
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
  color: white;
}

.tg-float-email {
  background: linear-gradient(135deg, var(--tg-primary) 0%, var(--tg-primary-dark) 100%);
}

.tg-float-email:hover {
  background: linear-gradient(135deg, var(--tg-primary-dark) 0%, #064e3b 100%);
  color: white;
}

.tg-float-btn svg {
  pointer-events: none;
}

@media (max-width: 768px) {
  .tg-floating-contacts {
    bottom: 20px;
    left: 20px;
    gap: 12px;
  }

  .tg-float-btn {
    width: 54px;
    height: 54px;
  }

  .tg-float-btn svg {
    width: 24px;
    height: 24px;
  }
}

/* Contact Page Styles */
.tg-contact-section {
  padding: 3.5rem 0 4.5rem;
  background: var(--tg-bg);
}

.tg-contact-info {
  position: sticky;
  top: 100px;
}

.tg-contact-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(4, 120, 87, 0.1);
}

.tg-contact-item:last-of-type {
  border-bottom: none;
  margin-bottom: 2.5rem;
}

.tg-contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--tg-primary-light) 0%, rgba(209, 250, 229, 0.5) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--tg-primary);
}

.tg-contact-detail {
  flex: 1;
}

.tg-contact-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--tg-primary);
  margin-bottom: 0.5rem;
}

.tg-contact-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--tg-ink);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
}

.tg-contact-link:hover {
  color: var(--tg-primary);
}

.tg-contact-text {
  font-size: 1.1rem;
  color: var(--tg-muted);
  margin: 0;
  line-height: 1.6;
}

.tg-contact-hours {
  background: linear-gradient(135deg, var(--tg-primary-light) 0%, rgba(209, 250, 229, 0.3) 100%);
  padding: 1.5rem;
  border-radius: var(--tg-radius);
  border: 1px solid rgba(4, 120, 87, 0.1);
}

.tg-contact-hours .tg-body {
  margin-bottom: 0.5rem;
  color: var(--tg-ink);
  font-weight: 500;
}

.tg-contact-hours .tg-body:last-child {
  margin-bottom: 0;
}

.tg-contact-form {
  background: var(--tg-surface);
  padding: 2.5rem;
  border-radius: var(--tg-radius);
  box-shadow: var(--tg-shadow-md);
  border: 1px solid rgba(4, 120, 87, 0.06);
}

.tg-input {
  padding: 0.85rem 1.15rem;
  border: 2px solid rgba(4, 120, 87, 0.1);
  border-radius: 12px;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
  background: var(--tg-surface);
}

.tg-input:focus {
  border-color: var(--tg-primary);
  box-shadow: 0 0 0 4px rgba(4, 120, 87, 0.08);
  outline: none;
}

.form-label {
  font-weight: 600;
  color: var(--tg-ink);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

@media (max-width: 991px) {
  .tg-contact-info {
    position: static;
    margin-bottom: 2rem;
  }
}
