/* ==========================================================================
   Kardiyak Görüntüleme ve Kapak Hastalıkları Toplantısı - Custom Styles
   ========================================================================== */

/* --- Root & Color Variables --- */
:root {
  --primary-color: #d75a11;        /* Medical Crimson Red */
  --primary-hover: #c86b28;
  --secondary-color: #0b1b3d;      /* Deep Navy Blue */
  --secondary-light: #162a56;
  --accent-color: #008080;         /* Teal Accent */
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --bg-card: #ffffff;
  --glass-bg: rgba(11, 27, 61, 0.85);
  --glass-border: rgba(255, 255, 255, 0.15);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Outfit', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* --- Base & Reset --- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--secondary-color);
}

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

/* --- Section Typography & Titles --- */
.section-padding {
  padding: 80px 0;
}

.section-bg-alt {
  background-color: var(--bg-light);
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-subtitle {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.875rem;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 2.25rem;
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

/* Cardiogram pulse icon divider */
.title-pulse {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.title-pulse::before,
.title-pulse::after {
  content: '';
  width: 40px;
  height: 2px;
  background-color: rgba(200, 16, 46, 0.3);
}

/* --- Header & Navigation --- */
.navbar-custom {
  background-color: #203557;
  padding: 5px 0;
  transition: var(--transition);
  z-index: 1050;
}

.navbar-custom.navbar-scrolled {
  background-color:#203557;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid var(--glass-border);
}

.navbar-brand img {
  height: 52px;
  width: auto;
  transition: var(--transition);
  padding: 5px 12px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.nav-link-custom {
  color: #ffffff !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 16px !important;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: #ffffff !important;
  background-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.4);
}

.btn-header-cta {
  background: var(--primary-color);
  color: #ffffff !important;
  font-weight: 600;
  border-radius: 30px;
  padding: 8px 22px;
  box-shadow: 0 4px 15px rgba(200, 16, 46, 0.4);
  border: 2px solid var(--primary-color);
  transition: var(--transition);
}

.btn-header-cta:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 16, 46, 0.6);
}

/* --- Hero Banner Section --- */
.hero-section {
  position: relative;
  overflow: hidden; /* Added to keep balloons within the section bounds */
  min-height: 90vh;
  background: url('../img/header-bg.jpg?a=1234') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: flex-end; /* Push content to bottom of slider */
  padding-top: 140px;
  padding-bottom: 25px;
  color: #ffffff;
  background-position: center top;
}

/* Light overlay to keep header-bg.jpg text legible while showing graphics */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* --- Animated Balloons (Parallax Effect) --- */
.hero-balloon {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.balloon-1 {
  width: 140px;
  bottom: 60%;
  left: 8%;
  animation: floatBalloon1 8s ease-in-out infinite;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2));
}

.balloon-2 {
  width: 80px;
  top: 20%;
  right: 12%;
  opacity: 0.85;
  filter: blur(0.5px) drop-shadow(0 5px 10px rgba(0,0,0,0.1));
  animation: floatBalloon2 12s ease-in-out infinite;
}

@keyframes floatBalloon1 {
  0% { transform: translateY(0) translateX(0) rotate(-2deg); }
  50% { transform: translateY(-30px) translateX(10px) rotate(2deg); }
  100% { transform: translateY(0) translateX(0) rotate(-2deg); }
}

@keyframes floatBalloon2 {
  0% { transform: translateY(0) translateX(0) rotate(2deg); }
  50% { transform: translateY(-20px) translateX(-15px) rotate(-2deg); }
  100% { transform: translateY(0) translateX(0) rotate(2deg); }
}

/* --- Sanat Yönetmeni: Unified Luxury Action Dock --- */
.hero-dock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(197, 139, 60, 0.45); /* Altın yaldız çizgi - Hitit Güneşi & Logo bordürüyle uyumlu */
  border-radius: 60px;
  padding: 8px 12px 8px 20px;
  box-shadow: 0 12px 35px rgba(0, 45, 90, 0.16), 0 2px 8px rgba(0, 0, 0, 0.04);
  margin-bottom: 12px;
  transition: var(--transition);
  animation: heroDockFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroDockFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-dock:hover {
  box-shadow: 0 16px 45px rgba(0, 45, 90, 0.22);
  border-color: rgba(197, 139, 60, 0.7);
  background: rgba(255, 255, 255, 0.95);
}

/* Sol: Sayaç Bölümü */
.dock-countdown {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dock-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #003865;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.dock-timer-boxes {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dock-timer-item {
  background: #ffffff;
  border: 1px solid rgba(0, 56, 101, 0.14);
  border-radius: 10px;
  padding: 4px 8px;
  min-width: 50px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 30, 80, 0.05);
  transition: var(--transition);
}

.dock-timer-item:hover {
  transform: translateY(-2px);
  border-color: var(--primary-color);
  box-shadow: 0 4px 10px rgba(224, 31, 38, 0.2);
}

.dock-number {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: #003865;
  line-height: 1.1;
}

.dock-label {
  display: block;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #718096;
  text-transform: uppercase;
  margin-top: 1px;
}

/* Dikey Ayırıcı Çizgi */
.dock-divider {
  width: 1.5px;
  height: 36px;
  background: linear-gradient(180deg, transparent, rgba(197, 139, 60, 0.5), transparent);
  margin: 0 2px;
}

/* Sağ: Butonlar */
.dock-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-dock-primary {
  background: linear-gradient(135deg, #e01f26 0%, #a00c23 100%);
  color: #ffffff !important;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.92rem;
  line-height: 1.25;
  box-shadow: 0 6px 18px rgba(224, 31, 38, 0.4);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  box-sizing: border-box;
  transition: var(--transition);
  min-width: 140px;
}

.btn-dock-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 31, 38, 0.65);
  color: #ffffff;
}

.btn-dock-secondary {
  background: linear-gradient(135deg, #004b85 0%, #002d55 100%);
  color: #ffffff !important;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.92rem;
  line-height: 1.25;
  box-shadow: 0 6px 18px rgba(0, 75, 133, 0.4);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  box-sizing: border-box;
  transition: var(--transition);
  min-width: 140px;
}

.btn-dock-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 75, 133, 0.65);
  color: #ffffff;
}

/* Scroll indicator */
.hero-scroll-down {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

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

/* --- DAVET Section --- */
.davet-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.davet-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.davet-text p {
  font-size: 1.05rem;
  color: #334155;
  margin-bottom: 20px;
  line-height: 1.8;
}

.president-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
}

.president-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: #ffffff;
}

.president-avatar {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.8rem;
}

.president-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin-bottom: 4px;
}

.president-role {
  font-size: 0.85rem;
  color: var(--primary-color);
  font-weight: 600;
}

/* --- KURULLAR Section --- */
.committee-tab-btn {
  background: #ffffff;
  color: var(--secondary-color);
  border: 2px solid #e2e8f0;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 30px;
  margin: 0 5px 10px;
  transition: var(--transition);
}

.committee-tab-btn.active,
.committee-tab-btn:hover {
  background: var(--secondary-color);
  color: #ffffff;
  border-color: var(--secondary-color);
  box-shadow: var(--shadow-md);
}

.member-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
  transition: var(--transition);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 15px;
}

.member-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.member-icon {
  width: 48px;
  height: 48px;
  background: rgba(200, 16, 46, 0.1);
  color: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.member-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--secondary-color);
  margin-bottom: 2px;
}

.member-title {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- PROGRAM Section --- */
.nav-pills-custom .nav-link {
  background-color: #ffffff;
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 30px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.nav-pills-custom .nav-link.active {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.program-timeline {
  position: relative;
}

.program-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  overflow: hidden;
  transition: var(--transition);
}

.program-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 16, 46, 0.3);
}

.program-time-badge {
  background: var(--secondary-color);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 140px;
}

.program-card.break-session .program-time-badge {
  background: #0284c7;
}

.program-card.keynote-session .program-time-badge {
  background: var(--primary-color);
}

.program-body {
  padding: 20px 25px;
}

.program-topic {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.program-chairs {
  font-size: 0.9rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 12px;
}

.program-speakers {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.program-speakers li {
  margin-bottom: 4px;
}

/* --- BİLDİRİ ÖZETLERİ Section --- */
.abstract-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
  height: 100%;
  transition: var(--transition);
}

.abstract-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.abstract-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.abstract-list {
  list-style: none;
  padding-left: 0;
}

.abstract-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.abstract-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary-color);
}

.deadline-badge {
  background: rgba(200, 16, 46, 0.1);
  border: 1px solid rgba(200, 16, 46, 0.3);
  color: var(--primary-color);
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
}

.deadline-badge-large {
  border-radius: 16px;
  padding: 30px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

@keyframes blink-alert {
  0% { opacity: 1; }
  50% { opacity: 0.2; }
  100% { opacity: 1; }
}

.blink-anim {
  animation: blink-alert 1.5s infinite ease-in-out;
}

/* --- GENEL BİLGİLER & KAYIT Section --- */
.info-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 25px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
  height: 100%;
  transition: var(--transition);
}

.info-box:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: var(--secondary-color);
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.info-box h5 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

/* Pricing Tables */
.pricing-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
  margin-bottom: 30px;
}

.pricing-header {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
  color: #ffffff;
  padding: 20px 25px;
  text-align: center;
}

.pricing-header.accent-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
}

.pricing-header h4 {
  color: #ffffff;
  margin-bottom: 0;
}

.table-custom {
  margin-bottom: 0;
}

.table-custom th {
  background-color: #f1f5f9;
  color: var(--secondary-color);
  font-weight: 700;
  border-bottom: 2px solid #cbd5e1;
  padding: 14px 18px;
}

.table-custom td {
  padding: 14px 18px;
  vertical-align: middle;
}

.bank-details-box {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  padding: 20px;
  margin-top: 25px;
}

/* --- SPONSORLAR Section --- */
.sponsor-badge {
  display: inline-block;
  background: var(--secondary-color);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 30px;
}

.sponsor-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
  transition: var(--transition);
  height: 120px;
}

.sponsor-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.sponsor-card img,
.sponsor-card span {
  max-height: 60px;
  max-width: 80%;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--secondary-color);
}

/* --- İLETİŞİM Section --- */
.contact-info-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px;
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
  height: 100%;
}

.simurg-logo-img {
  max-width: 220px;
  height: auto;
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: rgba(200, 16, 46, 0.1);
  color: var(--primary-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-form-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px;
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
}

.form-control-custom {
  border-radius: 10px;
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  transition: var(--transition);
}

.form-control-custom:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.15);
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 380px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Footer --- */
.footer {
  background: var(--secondary-color);
  color: #ffffff;
  padding: 70px 0 30px;
  position: relative;
}

.footer-logo {
  max-height: 60px;
  width: auto;
  margin-bottom: 20px;
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 25px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* Floating Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(200, 16, 46, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-hover);
  color: #ffffff;
  transform: translateY(-4px);
}

/* --- Mobile Specific Customizations & Responsive Tweaks --- */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--secondary-color);
    padding: 20px;
    border-radius: 12px;
    margin-top: 15px;
    box-shadow: var(--shadow-lg);
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .countdown-item {
    min-width: 65px;
    padding: 6px 10px;
  }
  
  .countdown-number {
    font-size: 1.4rem;
  }

  .hero-section {
    overflow: visible !important;
  }

  .hero-content {
    position: relative;
    z-index: 10;
  }

  .hero-dock {
    flex-direction: column;
    gap: 12px;
    border-radius: 24px;
    padding: 12px 18px;
    max-width: 480px;
    margin: 0 auto 10px;
  }

  .dock-countdown {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  .dock-divider {
    display: none;
  }

  .dock-buttons {
    width: 100%;
    justify-content: center;
    gap: 10px;
  }
  
  .btn-dock-primary,
  .btn-dock-secondary {
    flex: 1;
    width: auto;
    min-width: 0;
    justify-content: center;
    padding: 10px 14px;
    font-size: 0.9rem;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    background: url('../img/mobil-tr.jpg?a=1234') no-repeat center top !important;
    background-size: cover !important;
    padding-top: 140px;
    padding-bottom: 0 !important;
    min-height: 92vh;
    align-items: flex-end;
    overflow: visible !important;
  }
  
  .hero-content {
    margin-bottom: -38px !important;
    position: relative;
    z-index: 10;
  }

  .hero-dock {
    flex-direction: column;
    gap: 8px;
    border-radius: 18px;
    padding: 10px 14px;
    width: 94%;
    max-width: 380px;
    margin: 0 auto !important;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 38px rgba(0, 45, 90, 0.22), 0 4px 10px rgba(0, 0, 0, 0.06);
  }

  .dock-countdown {
    width: 100%;
    justify-content: center;
    gap: 6px;
    flex-direction: column;
  }

  .dock-title {
    font-size: 0.68rem;
    margin-bottom: 2px;
  }

  .dock-timer-boxes {
    gap: 5px;
    justify-content: center;
  }

  .dock-timer-item {
    min-width: 48px;
    padding: 3px 6px;
    border-radius: 8px;
  }

  .dock-number {
    font-size: 1.15rem;
  }

  .dock-label {
    font-size: 0.52rem;
  }

  .dock-divider {
    display: none;
  }

  .dock-buttons {
    width: 100%;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .btn-dock-primary,
  .btn-dock-secondary {
    flex: 1;
    min-width: 0 !important;
    width: auto !important;
    min-height: 42px;
    padding: 8px 10px;
    font-size: 0.85rem;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
  }

  #davet {
    padding-top: 65px;
  }

  .hero-scroll-down {
    display: none; /* Hide scroll icon on small mobile to save vertical space */
  }

  .davet-card {
    padding: 22px;
  }
}

/* --- Genel Bilgiler Custom Mizanpaj Styles --- */
.genel-info-header-box {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
  border-radius: 20px;
  padding: 35px 30px;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.genel-info-header-box::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(200, 16, 46, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.genel-header-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px 20px;
  border-radius: 14px;
  height: 100%;
  transition: var(--transition);
}

.genel-header-item:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(200, 16, 46, 0.5);
  transform: translateY(-3px);
}

.genel-header-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.4);
}

.genel-card-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
  height: 100%;
  transition: var(--transition);
  position: relative;
}

.genel-card-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.genel-card-badge-icon {
  width: 46px;
  height: 46px;
  background: rgba(200, 16, 46, 0.1);
  color: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.genel-card-box h5 {
  font-size: 1.15rem;
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 10px;
}

.genel-card-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.olgu-container {
  transition: var(--transition);
}

.olgu-container:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg) !important;
  border-color: var(--primary-color) !important;
}

/* --- Kayıt & Konaklama Mizanpaj Styles --- */
.kayit-section-title-badge {
  display: inline-block;
  background: var(--primary-color);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 8px 24px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 0;
  box-shadow: 0 4px 10px rgba(200, 16, 46, 0.3);
}

.table-kayit-header {
  background: var(--primary-color) !important;
  color: #ffffff !important;
  text-align: center;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 15px !important;
  border: none !important;
}

.table-kayit-sub {
  background: #a00c23 !important;
  color: #ffffff !important;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px !important;
}

.table-kayit-body td {
  padding: 14px 20px !important;
  vertical-align: middle;
  border-bottom: 1px solid #e2e8f0;
}

.table-kayit-body tr:nth-child(even) {
  background-color: #f8fafc;
}

.bank-card-blue {
  background: #f0f7ff;
  border: 2px solid #38bdf8;
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.bank-card-blue:hover {
  box-shadow: var(--shadow-md);
  border-color: #0284c7;
}

.bank-row-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #dbeafe;
  flex-wrap: wrap;
  gap: 10px;
}

.bank-row-item:last-child {
  border-bottom: none;
}

.bank-label {
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 0.95rem;
  text-transform: uppercase;
}

.bank-val {
  font-weight: 600;
  color: #0f172a;
  font-size: 1rem;
}
