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

:root {
  --primary: #1a3a5c;
  --primary-light: #2a5a8c;
  --accent: #c8102e;
  --accent-hover: #a80d24;
  --gold: #d4a843;
  --gold-light: #f0d68a;
  --bg: #f8f6f3;
  --bg-white: #ffffff;
  --text: #1e293b;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== HEADER ===== */
.site-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 16px;
}

.header-logos {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-logos img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.header-logos .divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

.header-nav { display: flex; gap: 8px; flex-wrap: wrap; }

.header-nav a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}

.header-nav a:hover {
  color: var(--primary);
  background: rgba(26,58,92,0.06);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #0d2238 0%, #162f4b 50%, #0a1726 100%);
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212,168,67,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,16,46,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Premium subtle dot grid overlay */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,168,67,0.08);
  border: 1px solid rgba(212,168,67,0.25);
  padding: 6px 20px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeInDown 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero h1 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: clamp(32px, 5.5vw, 54px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero-emblem {
  display: block;
  height: 60px;
  width: auto;
  margin: 0 auto 16px;
  object-fit: contain;
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
}

.hero h1 span {
  display: block;
  color: var(--gold-light);
  font-size: clamp(22px, 3.8vw, 38px);
  margin-top: 8px;
  font-weight: 400;
}

.hero-subtitle {
  font-size: clamp(15px, 2.2vw, 19px);
  color: rgba(255,255,255,0.8);
  max-width: 720px;
  margin: 0 auto 24px;
  font-weight: 300;
  line-height: 1.6;
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 24px;
  border-radius: 16px;
  min-width: 150px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.hero-meta-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.hero-meta-item .hero-icon-svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.75;
  margin-bottom: 4px;
}

.hero-meta-item .label {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.hero-meta-item .value {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
  scroll-margin-top: 88px; /* Avoid overlapping sticky header */
}

.section-alt {
  background: var(--bg-white);
  scroll-margin-top: 88px;
}

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

.section-header h2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.section-header .underline {
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ===== REGION CARDS ===== */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}

.region-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  cursor: pointer;
}

.region-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(26,58,92,0.12);
  border-color: var(--gold-light);
}

.region-card-header {
  background: var(--bg-white);
  padding: 18px 20px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.region-card-header h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.2px;
}

.region-card-header .region-icon-svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.region-card:hover .region-icon-svg {
  transform: scale(1.1);
  stroke: var(--gold);
}

.region-card-body { 
  padding: 0 20px 16px; 
}

.region-dates {
  list-style: none;
}

.region-dates li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
  color: var(--text-secondary);
}

.region-dates li:last-child { border-bottom: none; }

.region-dates li .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.region-card-footer {
  padding: 12px 20px 18px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(248,246,243,0.4);
}

.region-price {
  font-size: 19px;
  font-weight: 700;
  color: var(--primary);
}

.region-price small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(200,16,46,0.3);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* ===== PRICE TABLE ===== */
.price-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
  font-size: 15px;
}

.price-table thead {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
}

.price-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.price-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}

.price-table tbody tr:hover { background: rgba(26,58,92,0.03); }
.price-table tbody tr:last-child td { border-bottom: none; }

.price-highlight {
  font-weight: 700;
  color: var(--primary);
  font-size: 17px;
}

.price-notes {
  margin-top: 20px;
  padding: 20px;
  background: rgba(212,168,67,0.08);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
}

.price-notes p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 6px;
  padding-left: 8px;
}

.price-notes p:last-child { margin-bottom: 0; }

/* ===== BANK INFO ===== */
.bank-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 700px;
  margin: 0 auto;
}

.bank-card-header {
  background: linear-gradient(135deg, #004d40, #00796b);
  padding: 18px 24px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.bank-card-header h3 { font-size: 17px; font-weight: 600; }

.bank-card-body { padding: 24px; }

.bank-row {
  display: flex;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}

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

.bank-label {
  width: 180px;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bank-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  word-break: break-all;
}

.iban-highlight {
  font-family: 'Courier New', monospace;
  font-weight: 700;
  font-size: 16px;
  color: var(--primary);
  letter-spacing: 1px;
}

.iban-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
  position: relative;
}

.copy-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.copy-btn:hover svg { stroke: #fff; }

.copy-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-secondary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s;
}

.copy-btn .tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  background: #1e293b;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s;
}

.copy-btn .tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #1e293b;
}

.copy-btn.copied .tooltip {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

/* Payment Warning */
.payment-warning {
  margin-top: 28px;
  background: linear-gradient(135deg, rgba(26,58,92,0.04), rgba(26,58,92,0.08));
  border: 1px solid rgba(26,58,92,0.15);
  border-radius: var(--radius);
  padding: 24px 28px;
  position: relative;
  overflow: hidden;
}

.payment-warning::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
}

.payment-warning-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.payment-warning p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-card {
  background: var(--bg-white);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s;
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.contact-icon.phone {
  background: rgba(26,58,92,0.06);
  color: var(--primary);
}
.contact-icon.email {
  background: rgba(200,16,46,0.06);
  color: var(--accent);
}

.contact-icon-svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.warning-icon-svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.bank-header-svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.contact-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}

.contact-card .subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.contact-card a {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.contact-card a:hover { color: var(--accent); }

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(135deg, #0f2440, var(--primary));
  color: rgba(255,255,255,0.7);
  padding: 40px 0 24px;
  text-align: center;
}

.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
}

.footer-logos img {
  height: 50px;
  background: #fff;
  padding: 8px 16px;
  border-radius: 8px;
}

.footer-offices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin: 24px auto 0;
  max-width: 700px;
  text-align: left;
}

.footer-office h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.footer-office p {
  font-size: 13px;
  margin-bottom: 4px;
  line-height: 1.5;
}

.footer-office a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-office a:hover {
  color: var(--gold-light);
}

.site-footer p {
  font-size: 13px;
  margin-bottom: 6px;
}

.site-footer .copyright {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header-inner { flex-direction: column; gap: 12px; }
  .header-nav { justify-content: center; }
  .hero { padding: 48px 0 40px; }
  .hero-meta { gap: 20px; }
  .section { padding: 48px 0; }
  .regions-grid { grid-template-columns: 1fr; }
  .bank-label { width: 120px; font-size: 12px; }
  .bank-value { font-size: 14px; }
  .iban-highlight { font-size: 13px; }
  .region-card-footer { flex-direction: column; gap: 12px; align-items: flex-start; }
  
  /* Floating Buttons Mobile Adjustments */
  .fab-whatsapp {
    width: 44px;
    height: 44px;
    left: 16px;
    bottom: 16px;
  }
  .fab-whatsapp i {
    width: 20px !important;
    height: 20px !important;
  }
  .back-to-top {
    width: 40px;
    height: 40px;
    right: 16px;
    bottom: 16px;
  }
  .back-to-top i {
    width: 18px !important;
    height: 18px !important;
  }
}

@media (max-width: 480px) {
  .header-logos img { height: 36px; }
  .price-table th, .price-table td { padding: 10px 12px; font-size: 13px; }
  .bank-row { flex-direction: column; gap: 4px; }
  .bank-label { width: auto; }
}

/* ===== BRAND STYLING ===== */
.site-footer {
  margin-top: 40px;
}

/* ===== HERO CTA ===== */
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-cta .btn {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: 10px;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #c29b38);
  color: #1a1a1a;
}

.btn-gold:hover {
  box-shadow: 0 4px 16px rgba(212,168,67,0.4);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
}

/* ===== FLOATING BUTTONS ===== */
.fab-whatsapp {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(26,58,92,0.3);
  transition: all 0.3s;
  z-index: 90;
}

.fab-whatsapp:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 24px rgba(26,58,92,0.45);
  background: var(--primary-light);
}

.fab-whatsapp i {
  width: 22px;
  height: 22px;
  color: #fff;
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all 0.3s;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(26,58,92,0.45);
}

.back-to-top i {
  width: 20px;
  height: 20px;
  color: #fff;
}

/* ===== PRICE TABLE INCELE BTN ===== */
.btn-table {
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 6px;
}

/* ===== PRINT ===== */
@media print {
  .site-header, .fab-whatsapp, .back-to-top, .header-nav { display: none !important; }
  .hero { padding: 30px 0; background: #1a3a5c !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .section { padding: 24px 0; }
  .region-card { break-inside: avoid; box-shadow: none; border: 1px solid #ccc; }
  .fade-in { opacity: 1 !important; transform: none !important; }
  body { font-size: 12px; }
}
