:root{
  --brand:#7a1c86; /* logo moru tahmini */
  --brand-600:#8a2d96;
  --brand-700:#6a1476;
  --brand-50:#f7eff9;
  --brand-light:#e8dceb;
  --brand-dark:#5a0f66;
  --ink:#1f1c2e;
  --ink-light:#4a4a5a;
  --muted:#6b6b7a;
  --surface:#ffffff;
  --surface-2:#f8f9fa;
  --surface-3:#f5f6f7;
  --ring:rgba(122,28,134,.35);
  
  /* Yumuşak gradientler - göz dostu */
  --gradient-primary:linear-gradient(135deg, var(--brand) 0%, var(--brand-600) 50%, var(--brand-700) 100%);
  --gradient-secondary:linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-accent:linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  --gradient-surface:linear-gradient(135deg, #fefefe 0%, #f8f9fa 100%);
  --gradient-surface-soft:linear-gradient(135deg, #fafbfc 0%, #f5f6f7 100%);
  --gradient-glass:linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

.loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #667eea;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

.loading-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  color: #333;
  text-align: center;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Page content initially hidden */
.page-content {
  opacity: 0;
  transition: opacity 0.5s ease-in;
}

.page-content.loaded {
  opacity: 1;
}


.org-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.btn-sm {
  padding: 6px 12px;
  font-size: 0.85rem;
}

/* Logo Grid */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: var(--surface);
  border: 1px solid #eee;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.logo-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.logo-item img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:'Poppins',system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:var(--ink);
  background:var(--surface);
  padding-top:80px;
}
img{max-width:100%;display:block;image-rendering:auto}
img[src=""], img:not([src]){display:none}
/* Logo görünürlük garantisi */
.brand img, .contact-logo img, .footer-grid img{display:block !important;visibility:visible !important;opacity:1 !important}
a{color:inherit;text-decoration:none}

.container{width:min(1120px, 92%);margin-inline:auto}
.narrow{width:min(760px, 92%)}
.section{padding:56px 0}
.muted{color:var(--muted)}
.small{font-size:.9rem}

/* Header - Modern Tasarım */
.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:50;
  background:linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.95) 100%);
  backdrop-filter:saturate(180%) blur(20px);
  border-bottom:1px solid rgba(122,28,134,0.1);
  box-shadow:0 8px 32px rgba(122,28,134,0.12);
  transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scroll efekti - header küçülür */
.site-header.scrolled{
  background:linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(248,250,252,0.98) 100%);
  backdrop-filter:saturate(200%) blur(25px);
  box-shadow:0 4px 20px rgba(122,28,134,0.15);
}

.site-header.scrolled .nav-container{
  height:70px;
}

.site-header.scrolled .brand img{
  max-height:62px;
  filter:drop-shadow(0 2px 8px rgba(122,28,134,0.2));
}

.site-header.scrolled .site-nav a{
  padding:10px 16px;
  font-size:0.9rem;
}

.site-header::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:linear-gradient(135deg, rgba(122,28,134,0.02) 0%, rgba(255,255,255,0.05) 100%);
  pointer-events:none;
}

.nav-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:80px;
  position:relative;
  z-index:2;
}

.brand{
  display:flex;
  align-items:center;
  padding:8px;
  border-radius:16px;
  transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position:relative;
  overflow:hidden;
}

.brand::before{
  content:'';
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(90deg, transparent, rgba(122,28,134,0.1), transparent);
  transition:left 0.6s ease;
}

.brand:hover::before{
  left:100%;
}

.brand img{
  width:clamp(150px, 14vw, 180px);
  height:auto;
  max-height:72px;
  object-fit:contain;
  filter:drop-shadow(0 4px 12px rgba(122,28,134,0.25));
  image-rendering:auto;
  display:block !important;
  visibility:visible !important;
  opacity:1 !important;
  transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand:hover img{
  transform:scale(1.05) translateZ(0);
  filter:drop-shadow(0 6px 20px rgba(122,28,134,0.35));
}

.brand span{display:none}

.site-nav{
  display:flex;
  align-items:center;
  gap:8px;
  position:relative;
}

.site-nav a{
  padding:12px 20px;
  border-radius:16px;
  background:linear-gradient(135deg, var(--brand) 0%, var(--brand-600) 100%);
  color:#fff;
  border:1px solid transparent;
  font-weight:600;
  font-size:0.95rem;
  letter-spacing:0.3px;
  transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position:relative;
  overflow:hidden;
  text-decoration:none;
  box-shadow:0 4px 16px rgba(122,28,134,0.25);
}

.site-nav a::before{
  content:'';
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition:left 0.6s ease;
}

.site-nav a:hover::before{
  left:100%;
}

.site-nav a:hover{
  background:linear-gradient(135deg, var(--brand-600) 0%, var(--brand-700) 100%);
  transform:translateY(-2px) scale(1.02);
  box-shadow:0 8px 24px rgba(122,28,134,0.4);
  border-color:rgba(255,255,255,0.2);
}

.site-nav a.active{
  background:linear-gradient(135deg, var(--brand-600) 0%, var(--brand-700) 100%);
  box-shadow:0 6px 20px rgba(122,28,134,0.4);
  transform:translateY(-1px);
  border-color:rgba(255,255,255,0.2);
}

.site-nav a:active{
  transform:translateY(0) scale(0.98);
  box-shadow:0 2px 8px rgba(122,28,134,0.3);
  transition:all 0.1s ease;
}

/* İletişim butonu da diğerleriyle aynı stil */
.site-nav a.btn-primary{
  background:linear-gradient(135deg, var(--brand) 0%, var(--brand-600) 100%);
  box-shadow:0 4px 16px rgba(122,28,134,0.25);
}

.site-nav a.btn-primary:hover{
  background:linear-gradient(135deg, var(--brand-600) 0%, var(--brand-700) 100%);
  box-shadow:0 8px 24px rgba(122,28,134,0.4);
}
/* Butonlar - Modern Tasarım */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 20px;
  border-radius:16px;
  border:1px solid transparent;
  font-weight:600;
  font-size:0.95rem;
  cursor:pointer;
  user-select:none;
  transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position:relative;
  overflow:hidden;
  text-decoration:none;
}

.btn::before{
  content:'';
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition:left 0.6s ease;
}

.btn:hover::before{
  left:100%;
}

.btn:focus-visible{
  outline:0;
  box-shadow:0 0 0 4px var(--ring);
}

.btn:disabled,.btn[disabled]{
  opacity:0.65;
  cursor:not-allowed;
  box-shadow:none;
  transform:none;
}

.btn-primary{
  background:var(--gradient-primary);
  color:#fff;
  border-color:transparent;
  box-shadow:0 8px 24px rgba(122,28,134,0.3);
}

.btn-primary:hover{
  background:linear-gradient(135deg, var(--brand-600) 0%, var(--brand-700) 100%);
  transform:translateY(-3px) scale(1.02);
  box-shadow:0 12px 32px rgba(122,28,134,0.4);
}

.btn-primary:active{
  transform:translateY(-1px) scale(0.98);
  box-shadow:0 4px 16px rgba(122,28,134,0.3);
}

.btn-outline{
  border-color:var(--brand);
  color:var(--brand) !important;
  background:var(--gradient-surface);
  box-shadow:0 4px 16px rgba(122,28,134,0.1);
}

.btn-outline:hover{
  background:var(--gradient-primary);
  color:#fff !important;
  border-color:var(--brand-600);
  box-shadow:0 8px 24px rgba(122,28,134,0.25);
  transform:translateY(-3px) scale(1.02);
}

.btn-outline:active{
  transform:translateY(-1px) scale(0.98);
  box-shadow:0 4px 16px rgba(122,28,134,0.2);
}

.btn-light{
  background:var(--gradient-surface);
  border-color:rgba(122,28,134,0.2);
  color:var(--ink);
  box-shadow:0 4px 16px rgba(122,28,134,0.08);
}

.btn-light:hover{
  background:var(--gradient-primary);
  border-color:var(--brand);
  color:#fff;
  box-shadow:0 8px 24px rgba(122,28,134,0.2);
  transform:translateY(-3px) scale(1.02);
}

.btn-light:active{
  transform:translateY(-1px) scale(0.98);
  box-shadow:0 4px 16px rgba(122,28,134,0.15);
}

.btn-ghost{
  background:transparent;
  border-color:rgba(122,28,134,0.2);
  color:var(--ink);
}

.btn-ghost:hover{
  background:var(--gradient-primary);
  border-color:var(--brand);
  color:#fff;
  box-shadow:0 4px 16px rgba(122,28,134,0.15);
  transform:translateY(-2px) scale(1.02);
}

.btn-ghost:active{
  transform:translateY(0) scale(0.98);
  box-shadow:0 2px 8px rgba(122,28,134,0.1);
}

/* sizes */
.btn-lg{padding:12px 18px;font-size:1rem}
.btn-sm{padding:8px 12px;font-size:.9rem;border-radius:10px}
.btn-block{width:100%}

/* Mobil Menü Toggle Butonu */
.nav-toggle{
  display:none;
  background:linear-gradient(135deg, var(--brand) 0%, var(--brand-600) 100%);
  border:none;
  border-radius:16px;
  padding:12px;
  color:white;
  font-size:20px;
  cursor:pointer;
  transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:0 4px 16px rgba(122,28,134,0.25);
  position:relative;
  overflow:hidden;
}

.nav-toggle::before{
  content:'';
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition:left 0.6s ease;
}

.nav-toggle:hover::before{
  left:100%;
}

.nav-toggle:hover{
  background:linear-gradient(135deg, var(--brand-600) 0%, var(--brand-700) 100%);
  transform:translateY(-2px) scale(1.05);
  box-shadow:0 8px 24px rgba(122,28,134,0.4);
}

.nav-toggle:active{
  transform:translateY(0) scale(0.95);
  transition:all 0.1s ease;
}

/* Mobil Menü */
@media (max-width:900px){
  .site-nav{
    position:absolute;
    inset:80px 0 auto 0;
    display:none;
    flex-direction:column;
    background:linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(248,250,252,0.98) 100%);
    backdrop-filter:saturate(180%) blur(20px);
    padding:24px 20px;
    border-bottom:1px solid rgba(122,28,134,0.1);
    box-shadow:0 8px 32px rgba(122,28,134,0.15);
    border-radius:0 0 24px 24px;
    gap:12px;
    animation:slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .site-nav.open{
    display:flex;
  }
  
  .nav-toggle{
    display:inline-flex;
  }
  
  .site-nav a{
    width:100%;
    justify-content:center;
    padding:16px 24px;
    font-size:1rem;
    border-radius:20px;
    margin:4px 0;
  }
  
  .site-nav a:hover{
    transform:translateX(8px) scale(1.02);
  }
  
  /* Scroll efekti mobilde */
  .site-header.scrolled .site-nav{
    inset:70px 0 auto 0;
  }
}

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

/* Theme toggle removed */

/* Hero */
.section-hero .hero-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:24px;align-items:stretch}
@media (max-width:900px){
  .section-hero .hero-grid{grid-template-columns:1fr;}
  .hero-carousel{height:300px}
  .carousel{height:300px}
  .carousel img{height:300px}
}
/* Hero Section - Modern Tasarım */
.hero-carousel{
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 20px 60px rgba(122,28,134,0.15);
  height:420px;
  position:relative;
  background:transparent;
}

.hero-carousel::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:transparent;
  pointer-events:none;
  z-index:1;
}

.carousel{
  position:relative;
  isolation:isolate;
  height:420px;
  overflow:hidden;
  border-radius:24px;
  background:#1a1520;
}

.carousel img{
  width:100%;
  height:420px;
  object-fit:cover;
  display:block;
  border-radius:24px;
  transition:transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel:hover img{
  transform:scale(1.05);
}

.carousel-dots{
  position:absolute;
  inset:auto 0 20px 0;
  display:flex;
  justify-content:center;
  gap:12px;
  z-index:3;
}

.carousel-dots button{
  width:12px;
  height:12px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,0.4);
  transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor:pointer;
  backdrop-filter:blur(10px);
}

.carousel-dots button:hover{
  background:rgba(255,255,255,0.7);
  transform:scale(1.2);
}

.carousel-dots button.active{
  background:var(--brand);
  box-shadow:0 0 20px rgba(122,28,134,0.5);
  transform:scale(1.3);
}

.hero-ctas{
  display:grid;
  gap:20px;
}

.cta-card{
  display:block;
  border:1px solid rgba(122,28,134,0.1);
  border-radius:16px;
  padding:24px;
  background:var(--surface);
  box-shadow:0 4px 16px rgba(122,28,134,0.08);
  transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position:relative;
  overflow:hidden;
}

.cta-card::before{
  content:'';
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(90deg, transparent, rgba(122,28,134,0.05), transparent);
  transition:left 0.6s ease;
}

.cta-card:hover::before{
  left:100%;
}

.cta-card:hover{
  border-color:rgba(122,28,134,0.2);
  box-shadow:0 8px 24px rgba(122,28,134,0.15);
  transform:translateY(-6px) scale(1.02);
}

.cta-card h2{
  margin:0 0 12px;
  color:var(--brand);
  font-weight:700;
  font-size:1.4rem;
  position:relative;
  z-index:1;
}

.cta-card p{
  margin:0 0 20px;
  color:var(--muted);
  line-height:1.6;
  position:relative;
  z-index:1;
}

/* Two column generic */
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:24px;align-items:center}
@media (max-width:900px){.two-col{grid-template-columns:1fr}}
/* Visual Cards - Birleşik Tasarım */
.visual-card{
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 4px 16px rgba(122,28,134,0.08);
  min-height:280px;
  transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position:relative;
}

.visual-card:hover{
  transform:translateY(-6px) scale(1.02);
  box-shadow:0 8px 24px rgba(122,28,134,0.15);
}

.visual-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:rgba(255,255,255,0.05);
  pointer-events:none;
  z-index:1;
  opacity:0;
  transition:opacity 0.3s ease;
}

.visual-card:hover::before{
  opacity:1;
}

.visual-bg{
  width:100%;
  height:100%;
  min-height:280px;
  background:var(--gradient-secondary);
  background-image:var(--bg);
  background-size:cover;
  background-position:center;
  image-rendering:auto;
  transition:transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.visual-card:hover .visual-bg{
  transform:scale(1.1);
}

/* Lists */
.check-list, .feature-list{padding:0;margin:12px 0 20px;list-style:none;display:grid;gap:10px}
.check-list li{padding-left:26px;position:relative}
.check-list li:before{content:'✓';position:absolute;left:0;top:0;color:var(--brand)}
.feature-list li{padding:12px;border:1px solid #eee;border-radius:12px}

/* Testimonials */
.testimonials{position:relative;border:1px solid #eee;border-radius:16px;padding:24px;background:white}
.testimonial blockquote{font-size:1.1rem;margin:0 0 8px}
.testimonial figcaption{color:var(--muted)}
.testimonial-dots{display:flex;gap:8px;margin-top:12px}
.testimonial-dots button{width:8px;height:8px;border-radius:999px;border:0;background:#e1d5e6}
.testimonial-dots button.active{background:var(--brand)}

/* Partners */
.logo-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:16px;margin-top:16px}
.logo-pill{display:flex;align-items:center;justify-content:center;border:1px solid #e6d9eb;border-radius:999px;padding:16px 20px;color:var(--brand);background:linear-gradient(180deg,#fff 0%,#fdfdfe 30%,#fbfafc 70%,#f9f7fb 100%);box-shadow:0 6px 18px rgba(122,28,134,.06);font-weight:600;transition:all .2s;min-height:60px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;flex:0 0 200px;width:200px;cursor:pointer}
.logo-pill:hover{border-color:#d8c7df;box-shadow:0 10px 24px rgba(122,28,134,.12);transform:translateY(-2px);background:linear-gradient(180deg,#f9f7fb 0%,#f5f0f7 30%,#f0e8f3 70%,#e8dceb 100%)}
.logo-pill:active{transform:translateY(0);box-shadow:0 4px 12px rgba(122,28,134,.15);background:var(--brand);color:#fff;border-color:var(--brand)}

/* Dinamik kaydırma için partnerler */
.partners-container{position:relative;overflow:hidden;margin-top:16px}
.partners-scroll{display:flex;gap:16px;overflow-x:auto;scroll-behavior:smooth;padding:8px 0;scrollbar-width:thin;scrollbar-color:var(--brand-50) transparent}
.partners-scroll::-webkit-scrollbar{height:6px}
.partners-scroll::-webkit-scrollbar-track{background:transparent}
.partners-scroll::-webkit-scrollbar-thumb{background:var(--brand-50);border-radius:3px}
.partners-scroll::-webkit-scrollbar-thumb:hover{background:var(--brand-600)}
.partner-item{flex:0 0 200px;width:200px}
.partner-item .logo-pill{width:200px;justify-content:center;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;min-height:60px;padding:16px 20px}

/* Tur galerisi - tam 4 görsel sığar, fazlası kaydırmalı */
.tour-gallery-scroll{display:flex;gap:12px}
.tour-gallery-scroll img{flex:0 0 calc(25% - 9px);width:calc(25% - 9px);height:220px;object-fit:cover;border-radius:12px;cursor:pointer;transition:transform 0.2s}
.tour-gallery-scroll img:hover{transform:scale(1.03)}
@media (max-width: 768px){
  .tour-gallery-scroll img{flex:0 0 calc(50% - 6px);width:calc(50% - 6px);height:170px}
}
@media (max-width: 480px){
  .tour-gallery-scroll img{flex:0 0 calc(100% - 0px);width:100%;height:200px}
}

/* Tour image lightbox */
#imageModal .image-modal-card{
  width:min(860px,88vw);
  max-height:82vh;
  padding:12px;
  background:rgba(22,22,24,.98);
  border-radius:14px;
  box-shadow:0 16px 40px rgba(0,0,0,.45);
  overflow:hidden;
}

#imageModal .image-modal-close{
  position:absolute;
  top:10px;
  right:10px;
  z-index:2;
  width:36px;
  height:36px;
  border:none;
  border-radius:999px;
  background:rgba(255,255,255,.2);
  color:#fff;
  font-size:22px;
  line-height:1;
  cursor:pointer;
}

#imageModal .image-modal-close:hover{
  background:rgba(255,255,255,.32);
}

#imageModal .image-modal-viewport{
  width:100%;
  max-width:100%;
  max-height:calc(82vh - 24px);
  overflow:auto;
  -webkit-overflow-scrolling:touch;
  display:flex;
  align-items:center;
  justify-content:center;
}

#imageModal #modalImage{
  display:block;
  width:auto;
  max-width:100%;
  height:auto;
  max-height:calc(82vh - 40px);
  object-fit:contain;
  border-radius:10px;
  margin:auto;
}

/* Responsive breakpoints */
@media (min-width: 1200px) {
  .logo-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
}

@media (max-width: 1199px) and (min-width: 769px) {
  .logo-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
}

@media (max-width: 768px) {
  .logo-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
  .partner-item { width: calc(50% - 6px); min-width: 140px; }
}

@media (max-width: 480px) {
  .logo-grid { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 8px; }
}

/* Kaydırma butonları */
.scroll-buttons{display:flex;justify-content:center;gap:8px;margin-top:12px}
.scroll-btn{width:32px;height:32px;border-radius:50%;border:1px solid var(--brand-50);background:#fff;color:var(--brand);cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .2s;font-size:14px}
.scroll-btn:hover{background:var(--brand);color:#fff;border-color:var(--brand)}
.scroll-btn:disabled{opacity:.3;cursor:not-allowed}
.scroll-btn:disabled:hover{background:#fff;color:var(--brand);border-color:var(--brand-50)}

/* Cards - Birleşik Tasarım */
.card{
  border:1px solid rgba(122,28,134,0.1);
  border-radius:16px;
  background:var(--surface);
  overflow:hidden;
  box-shadow:0 4px 16px rgba(122,28,134,0.08);
  transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position:relative;
}

.card::before{
  content:'';
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(90deg, transparent, rgba(122,28,134,0.05), transparent);
  transition:left 0.6s ease;
  z-index:1;
}

.card:hover::before{
  left:100%;
}

.card:hover{
  transform:translateY(-6px) scale(1.02);
  box-shadow:0 8px 24px rgba(122,28,134,0.15);
  border-color:rgba(122,28,134,0.2);
}

.card img{
  height:200px;
  object-fit:cover;
  width:100%;
  transition:transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover img{
  transform:scale(1.05);
}

.card-content{
  padding:24px;
  position:relative;
  z-index:2;
}

.card-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:24px;
}

.tour-card .actions{
  margin-top:16px;
}

.info-note{
  margin-top:20px;
  padding:20px;
  border-radius:12px;
  background:var(--surface);
  border:1px solid rgba(122,28,134,0.1);
  box-shadow:0 2px 8px rgba(122,28,134,0.05);
  transition:all 0.3s ease;
}

.info-note:hover{
  transform:translateY(-2px);
  box-shadow:0 4px 12px rgba(122,28,134,0.1);
}

/* Tours page: keep card sizes consistent regardless of item count */
#toursGrid.card-grid{grid-template-columns:repeat(4,1fr)}
@media (max-width:1200px){#toursGrid.card-grid{grid-template-columns:repeat(3,1fr)}}
@media (max-width:900px){#toursGrid.card-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:600px){#toursGrid.card-grid{grid-template-columns:1fr}}

/* Forms */
.form{display:grid;gap:14px}
.form-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
.form-grid .full{grid-column:1/-1}
label{display:grid;gap:6px;font-weight:500}
input, textarea, select{padding:10px 12px;border:1px solid #e2dbe6;border-radius:10px;font:inherit;background-color:#fff;color:inherit}
select{
  -webkit-appearance:none; -moz-appearance:none; appearance:none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%236b6b7a' d='M5.8 7.5a1 1 0 0 1 1.4 0L10 10.3l2.8-2.8a1 1 0 1 1 1.4 1.4l-3.5 3.5a1 1 0 0 1-1.4 0L5.8 8.9a1 1 0 0 1 0-1.4z'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 10px center; background-size:18px;
  padding-right:38px;
}
input:focus, textarea:focus, select:focus{outline:2px solid var(--ring);border-color:var(--brand)}
.form-status{min-height:1.2em;color:var(--brand-700)}

/* Contact */
.contact-preview{display:grid;grid-template-columns:1fr 1fr;gap:24px}
@media (max-width:900px){.contact-preview{grid-template-columns:1fr}}
.contact-list{list-style:none;padding:0;margin:12px 0;display:grid;gap:8px}
.contact-list a{color:var(--brand);text-decoration:none;font-weight:500;transition:color .2s}
.contact-list a:hover{color:var(--brand-600);text-decoration:underline}
.map-placeholder{height:260px;border:1px dashed #d8c7df;border-radius:16px;display:flex;align-items:center;justify-content:center;color:var(--muted)}
.contact-logo{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
}
.contact-logo img{
  max-width:min(100%, 380px);
  max-height:300px;
  width:auto;
  height:auto;
  object-fit:contain;
  image-rendering:auto;
  display:block !important;
  visibility:visible !important;
  opacity:1 !important;
}
@media (max-width:900px){
  .contact-logo{padding:16px;max-width:280px;margin:0 auto}
  .contact-logo img{max-height:220px}
}

/* Footer */
.site-footer{border-top:1px solid #eee;background:var(--surface-2);padding:28px 0;margin-top:24px}
.footer-grid{display:grid;grid-template-columns:1fr 1fr 1fr;gap:20px;align-items:center}
.footer-grid img{
  max-width:120px;
  height:auto;
  object-fit:contain;
  display:block !important;
  visibility:visible !important;
  opacity:1 !important;
}
.footer-nav{display:flex;flex-wrap:wrap;gap:12px}
.copy{text-align:right;color:var(--muted)}
@media (max-width:900px){
  .footer-grid{grid-template-columns:1fr;gap:12px}
  .copy{text-align:left}
}

/* Footer gizli */
.site-footer{display:none}

/* Section Arka Planları - Birleşik Tasarım */
.section{
  position:relative;
  z-index:1;
  background:var(--surface);
  margin:0;
  padding:56px 0;
}

/* İlk section (hero) - üst köşeleri yuvarlak */
.section-hero{
  background:var(--surface);
  border-radius:0 0 24px 24px;
  margin-bottom:0;
  padding-top:80px;
}

/* Son section - alt köşeleri yuvarlak */
.section-contact{
  background: linear-gradient(135deg, var(--surface) 0%, var(--brand-50) 100%);
  border-radius:24px 24px 0 0;
  margin-top:0;
  position: relative;
  box-shadow: 0 -2px 8px rgba(122, 28, 134, 0.03);
}

/* Ara sectionlar - düz arka plan */
.section-student,
.section-about,
.section-testimonials,
.section-partners{
  background:var(--surface);
  margin:0;
  border-radius:0;
}

/* Ensure anchors account for fixed header */
section[id]{scroll-margin-top:88px}

h1,h2,h3{line-height:1.2}
h1{font-size:2rem;margin:.2rem 0 1rem}
h2{font-size:1.5rem;margin:.2rem 0 .8rem}
h3{font-size:1.1rem;margin:.2rem 0 .4rem}

/* Modals */
.modal{position:fixed;inset:0;display:none;align-items:center;justify-content:center;z-index:100}
.modal[aria-hidden="false"]{display:flex}
.modal-backdrop{position:absolute;inset:0;background:rgba(0,0,0,.4)}
.modal-card{position:relative;background:#fff;border-radius:16px;padding:20px;min-width:min(520px,94%);box-shadow:0 12px 32px rgba(0,0,0,.16)}
.image-modal-card{overflow:auto}
.image-modal-viewport{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  max-width:90vw;
  max-height:90vh;
  overflow:auto;
  padding:8px;
}
.modal-actions{display:flex;gap:12px;margin-top:12px}
.modal-close{position:absolute;right:12px;top:8px;border:0;background:transparent;font-size:24px;cursor:pointer}

/* Gallery & itinerary & driver */
.gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.gallery img{width:100%;height:100px;object-fit:cover;border-radius:12px}
.itinerary ol{padding-left:18px}
.driver-card{display:grid;grid-template-columns:100px 1fr;gap:12px;align-items:center;border:1px solid #eee;border-radius:14px;padding:12px;margin:14px 0;background:#fff}
.driver-card img{width:100px;height:100px;object-fit:cover;border-radius:12px}

/* Minimal range slider */
.range-wrap{
  display:flex;
  align-items:center;
  gap:12px;
  padding:4px 0;
}
.range-wrap input[type="range"]{
  flex:1;
  height:2px;
  border-radius:1px;
  background:#e6d9eb;
  outline:none;
  appearance:none;
  -moz-appearance:none;
  -webkit-appearance:none;
}
.range-wrap input[type="range"]::-webkit-slider-thumb{
  -webkit-appearance:none;
  width:16px;
  height:16px;
  border-radius:50%;
  background:var(--brand);
  cursor:pointer;
  border:2px solid #fff;
  box-shadow:0 1px 3px rgba(0,0,0,.1);
  transition:all .15s ease;
}
.range-wrap input[type="range"]::-webkit-slider-thumb:hover{
  transform:scale(1.1);
  box-shadow:0 2px 6px rgba(122,28,134,.2);
}
.range-wrap input[type="range"]::-moz-range-thumb{
  width:16px;
  height:16px;
  border-radius:50%;
  background:var(--brand);
  cursor:pointer;
  border:2px solid #fff;
  box-shadow:0 1px 3px rgba(0,0,0,.1);
}
.range-wrap output{
  min-width:1.5rem;
  text-align:center;
  color:var(--brand);
  font-weight:500;
  font-size:14px;
}

/* Tur Detay Sayfası Stilleri */
.tour-header {
  background: linear-gradient(135deg, var(--brand-50), #fff);
  padding: 40px 20px;
  border-radius: 20px;
  margin-bottom: 40px;
}

.map-section, .gallery-section {
  background: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
}

#mapImage{
  cursor: zoom-in;
}

.tour-description {
  background: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
}

.description-content {
  background: #f8f9fa;
  padding: 24px;
  border-radius: 16px;
  border-left: 4px solid var(--brand);
}


/* Galeri hover efektleri */
.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

/* Reveal animations */
[data-reveal]{opacity:0;transform:translateY(16px) scale(.98);transition:opacity .6s ease, transform .6s ease}
[data-reveal].is-visible{opacity:1;transform:none}
[data-reveal="fade"]{transform:none}


/* Responsive tasarım */
@media (max-width: 768px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  
  .gallery img {
    height: 100px;
  }
  
}

/* Kurum Detay Sayfası */
.org-detail-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  margin-bottom: 32px;
}

.org-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--surface-2);
}

.org-logo-container {
  flex-shrink: 0;
}

.org-logo {
  width: 280px;
  height: 280px;
  object-fit: contain;
  border-radius: 28px;
  border: 4px solid var(--surface-2);
  background: white;
  padding: 24px;
}

.org-info h1 {
  margin: 0 0 8px 0;
  color: var(--ink);
  font-size: 2rem;
  font-weight: 700;
}

.org-type-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.org-type-badge.school {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  color: #1565c0;
  border: 2px solid #90caf9;
}

.org-type-badge.factory {
  background: linear-gradient(135deg, var(--brand-50), #f3e5f5);
  color: var(--brand);
  border: 2px solid var(--brand-50);
}

.org-description {
  margin-bottom: 32px;
}

.org-description p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  background: var(--surface-2);
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid var(--brand);
}

.org-services h3 {
  margin: 0 0 20px 0;
  color: var(--ink);
  font-size: 1.4rem;
  font-weight: 600;
}

.org-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.org-buttons .btn {
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all .3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.org-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(122,28,134,.2);
}

.contact-info-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
}

.contact-info-card h3 {
  margin: 0 0 20px 0;
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 600;
}

.contact-grid {
  display: grid;
  gap: 16px;
}

.contact-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--surface-2);
}

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

.contact-item strong {
  color: var(--ink);
  font-weight: 600;
}

.contact-item span {
  color: var(--muted);
}

/* Responsive - Kurum Detay */
@media (max-width: 768px) {
  .org-detail-card {
    padding: 24px;
  }
  
  .org-header {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .org-logo {
    width: 200px;
    height: 200px;
  }
  
  .org-info h1 {
    font-size: 1.6rem;
  }
  
  .org-buttons {
    flex-direction: column;
  }
  
  .org-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  .contact-info-card {
    padding: 20px;
  }
  
  .contact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

/* Google Reviews Carousel Styles */
#googleReviewsContainer {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 60px;
  overflow: hidden;
}

.reviews-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.reviews-prev,
.reviews-next {
  background: var(--brand);
  color: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(122, 28, 134, 0.2);
  z-index: 10;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.reviews-prev {
  left: 0;
}

.reviews-next {
  right: 0;
}

.reviews-prev:hover:not(:disabled),
.reviews-next:hover:not(:disabled) {
  background: var(--brand-dark);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 16px rgba(122, 28, 134, 0.3);
}

.reviews-prev:disabled,
.reviews-next:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.review-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand-50);
  cursor: pointer;
  transition: all 0.3s;
}

.review-dot:hover {
  background: var(--brand);
  transform: scale(1.2);
}

.review-dot.active {
  background: var(--brand);
  width: 32px;
  border-radius: 6px;
}

.review-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(122, 28, 134, 0.08);
  margin-bottom: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(122, 28, 134, 0.08);
  position: relative;
  overflow: hidden;
  flex: 0 0 calc(33.333% - 16px);
  min-width: 320px;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: rgba(122, 28, 134, 0.08);
  line-height: 1;
  font-weight: bold;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(122, 28, 134, 0.15);
  border-color: rgba(122, 28, 134, 0.2);
}

.review-card .review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.review-card .review-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--brand-50);
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

.review-card .review-info {
  flex: 1;
}

.review-card .review-author {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

.review-card .review-stars {
  color: #ffa500;
  font-size: 16px;
  margin: 4px 0;
  letter-spacing: 2px;
}

.review-card .review-date {
  margin: 0;
  font-size: 13px;
  color: var(--ink-light);
}

.review-card .review-text {
  color: var(--ink-light);
  line-height: 1.7;
  margin: 0;
  font-size: 15px;
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .review-card {
    flex: 0 0 calc(50% - 12px);
    min-width: 280px;
  }
}

@media (max-width: 768px) {
  #googleReviewsContainer {
    padding: 0 50px;
  }
  
  .review-card {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 24px;
  }
  
  .review-card::before {
    font-size: 60px;
  }
  
  .reviews-prev,
  .reviews-next {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

/* =====================================================
   POPUP SİSTEMİ STİLLERİ - MODERN TASARIM
   ===================================================== */

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: popupFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px;
}

.popup-container {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-radius: 24px;
  padding: 0;
  max-width: 520px;
  width: 100%;
  max-height: 85vh;
  overflow: hidden;
  position: relative;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: popupSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(122, 28, 134, 0.1);
}

.popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--muted);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.popup-close:hover {
  color: var(--brand);
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(122, 28, 134, 0.2);
}

.popup-content-wrapper {
  padding: 40px 32px 32px;
  position: relative;
}

.popup-image {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.popup-image:hover {
  transform: scale(1.02);
}

.popup-title {
  margin: 0 0 20px 0;
  color: var(--brand);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.popup-content {
  margin: 0 0 28px 0;
  line-height: 1.7;
  color: var(--ink);
  font-size: 17px;
  text-align: center;
  font-weight: 400;
}

.popup-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-600));
  color: white;
  padding: 16px 32px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 8px 24px rgba(122, 28, 134, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  min-width: 160px;
  letter-spacing: 0.5px;
}

.popup-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.popup-link:hover::before {
  left: 100%;
}

.popup-link:hover {
  background: linear-gradient(135deg, var(--brand-600), var(--brand-700));
  transform: translateY(-3px);
  box-shadow: 
    0 12px 32px rgba(122, 28, 134, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.2);
}

.popup-link:active {
  transform: translateY(-1px);
  box-shadow: 
    0 6px 20px rgba(122, 28, 134, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Dekoratif elementler kaldırıldı - temiz görünüm */

/* Popup Animasyonları - Temizlenmiş */
@keyframes popupFadeIn {
  from {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
  to {
    opacity: 1;
    backdrop-filter: blur(3px);
  }
}

@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes popupFadeOut {
  from {
    opacity: 1;
    backdrop-filter: blur(3px);
  }
  to {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
}

/* Popup Responsive - Modern */
@media (max-width: 768px) {
  .popup-overlay {
    padding: 16px;
  }
  
  .popup-container {
    max-width: 100%;
    border-radius: 20px;
    max-height: 90vh;
  }
  
  .popup-content-wrapper {
    padding: 32px 24px 24px;
  }
  
  .popup-close {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .popup-title {
    font-size: 24px;
    margin-bottom: 16px;
  }
  
  .popup-content {
    font-size: 16px;
    margin-bottom: 24px;
  }
  
  .popup-link {
    padding: 14px 28px;
    font-size: 15px;
    min-width: 140px;
  }
  
  .popup-image {
    max-height: 200px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .popup-overlay {
    padding: 12px;
  }
  
  .popup-container {
    border-radius: 16px;
    max-height: 95vh;
  }
  
  .popup-content-wrapper {
    padding: 28px 20px 20px;
  }
  
  .popup-title {
    font-size: 22px;
    margin-bottom: 14px;
  }
  
  .popup-content {
    font-size: 15px;
    margin-bottom: 20px;
  }
  
  .popup-link {
    padding: 12px 24px;
    font-size: 14px;
    min-width: 120px;
  }
  
  .popup-image {
    max-height: 180px;
    margin-bottom: 18px;
  }
  
  .popup-close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}

/* =====================================================
   Kurum Detay Sayfası — Buton Izgarası
   ===================================================== */
.org-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
}

.org-buttons .btn {
  min-width: 160px;
  flex: 1 1 160px;
  max-width: 260px;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .org-buttons .btn {
    flex: 1 1 calc(50% - 6px);
    max-width: 100%;
  }
}

/* =====================================================
   Kurum Detay Sayfası — Yetkili Kişiler
   ===================================================== */
.org-contacts-section {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border, #e5e7eb);
}

.org-contacts-section h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 16px;
}

.org-contacts-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.org-contact-display-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid var(--border, #e5e7eb);
  border-radius: 16px;
  padding: 20px 16px 16px;
  width: 180px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: box-shadow .2s, transform .2s;
}

.org-contact-display-card:hover {
  box-shadow: 0 6px 24px rgba(122,28,134,.12);
  transform: translateY(-2px);
}

.contact-display-photo {
  width: 90px;
  height: 112px;
  object-fit: cover;
  border-radius: 10px;
  border: 3px solid var(--brand-50, #f5f0ff);
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  flex-shrink: 0;
}

.contact-display-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
}

.contact-display-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  margin: 0;
  line-height: 1.3;
}

.contact-display-title {
  font-size: 0.78rem;
  color: var(--brand);
  font-weight: 500;
  text-align: center;
  margin: 0;
}

.contact-display-item {
  font-size: 0.78rem;
  color: var(--muted, #6b7280);
  text-decoration: none;
  text-align: center;
  display: block;
  transition: color .15s;
}

.contact-display-item:hover {
  color: var(--brand);
}

@media (max-width: 480px) {
  .org-contact-display-card {
    width: calc(50% - 10px);
    min-width: 140px;
  }
}

/* Developer Signature */
.dev-signature {
  position: fixed;
  bottom: 0;
  right: 0;
  background: rgba(150, 150, 150, 0.25);
  color: rgba(80, 80, 80, 0.55);
  padding: 4px 10px;
  border-radius: 8px 0 0 0;
  font-size: 12px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  z-index: 1000;
  opacity: 0.6;
  transition: opacity 0.25s ease, background 0.25s ease, color 0.25s ease;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  display: inline-block;
}

.dev-signature:hover {
  opacity: 1;
  background: rgba(122, 28, 134, 0.12);
  color: var(--brand, #7a1c86);
}
