
:root{
 --navy:#071225;--navy2:#0c1b33;--panel:#10223d;--panel2:#142b4b;
 --white:#f8fbff;--muted:#9fb2ca;--line:rgba(255,255,255,.10);
 --blue:#2563eb;--blue2:#3b82f6;--purple:#7c3aed;--pink:#db2777;
 --orange:#f97316;--yellow:#f59e0b;--green:#10b981;--cyan:#06b6d4;
 --red:#ef4444;--shadow:0 24px 65px rgba(0,0,0,.30)
}
*{box-sizing:border-box}
html,body{margin:0;min-height:100%;font-family:Inter,Arial,sans-serif}
body{
 color:var(--white);
 background:
 radial-gradient(circle at 8% 0%,rgba(37,99,235,.18),transparent 28%),
 radial-gradient(circle at 96% 10%,rgba(219,39,119,.14),transparent 27%),
 linear-gradient(180deg,var(--navy),#0a172a 55%,var(--navy));
}
a{text-decoration:none;color:inherit}
button,input,select,textarea{font:inherit}
.muted{color:var(--muted)}.small{font-size:13px}
.brand{display:flex;align-items:center;gap:12px;font-weight:900;font-size:22px}
.brand-logo{
 width:48px;height:48px;border-radius:16px;display:grid;place-items:center;
 background:linear-gradient(135deg,var(--blue2),var(--purple),var(--pink));
 box-shadow:0 12px 28px rgba(59,130,246,.30);font-size:17px
}

/* LOGIN / REGISTER */
.auth-shell{min-height:100vh;display:grid;grid-template-columns:minmax(0,1.05fr) minmax(420px,.95fr)}
.auth-visual{
 min-width:0;position:relative;overflow:hidden;padding:58px;
 display:flex;flex-direction:column;justify-content:center;
 background:
 linear-gradient(145deg,rgba(37,99,235,.20),rgba(124,58,237,.13),rgba(219,39,119,.10))
}
.auth-visual:before,.auth-visual:after{
 content:"";position:absolute;border-radius:50%;filter:blur(5px);pointer-events:none
}
.auth-visual:before{
 width:330px;height:330px;right:-95px;top:35px;
 background:linear-gradient(135deg,rgba(219,39,119,.42),rgba(124,58,237,.30))
}
.auth-visual:after{
 width:260px;height:260px;left:-85px;bottom:20px;
 background:linear-gradient(135deg,rgba(16,185,129,.32),rgba(6,182,212,.26))
}
.auth-copy{position:relative;z-index:2;max-width:720px}
.auth-title{font-size:clamp(38px,5vw,68px);line-height:1.03;margin:30px 0 18px;letter-spacing:-1.8px}
.auth-subtitle{font-size:18px;line-height:1.65;color:#d2ddec;max-width:640px}
.feature-row{display:flex;flex-wrap:wrap;gap:10px;margin-top:24px}
.feature-pill{
 padding:10px 13px;border-radius:999px;background:rgba(255,255,255,.075);
 border:1px solid rgba(255,255,255,.11);backdrop-filter:blur(10px);
 font-weight:750;font-size:14px
}
.auth-side{display:flex;align-items:center;justify-content:center;padding:28px;min-width:0}
.auth-card{
 width:100%;max-width:480px;padding:32px;border-radius:26px;
 background:linear-gradient(145deg,rgba(17,35,59,.98),rgba(8,22,39,.98));
 border:1px solid var(--line);box-shadow:var(--shadow)
}
.auth-card h1,.auth-card h2{margin:0 0 8px}
.auth-links{display:flex;justify-content:space-between;gap:12px;align-items:center;margin-top:16px;flex-wrap:wrap}
.text-link{color:#9cc2ff;font-weight:800}
.text-link:hover{color:#fff}
.form-group{margin-top:15px}
label{display:block;margin:0 0 7px;font-weight:850;font-size:14px}
input,select,textarea{
 width:100%;border:1px solid rgba(255,255,255,.15);border-radius:13px;
 padding:13px 14px;background:#071426;color:#fff;outline:none;transition:.2s
}
input::placeholder,textarea::placeholder{color:#6f86a1}
input:focus,select:focus,textarea:focus{
 border-color:#60a5fa;box-shadow:0 0 0 4px rgba(59,130,246,.13)
}
.btn,button{
 border:0;border-radius:13px;padding:12px 17px;display:inline-flex;
 align-items:center;justify-content:center;gap:8px;cursor:pointer;
 color:#fff;font-weight:900;background:linear-gradient(135deg,var(--blue),var(--purple),var(--pink));
 box-shadow:0 10px 24px rgba(37,99,235,.23)
}
.btn-block{width:100%;margin-top:18px}
.btn.secondary{background:rgba(255,255,255,.065);border:1px solid var(--line);box-shadow:none}
.btn.danger{background:linear-gradient(135deg,var(--red),var(--orange))}
.btn.success{background:linear-gradient(135deg,var(--green),var(--cyan))}
.alert{padding:13px 14px;border-radius:13px;margin:15px 0;line-height:1.45}
.alert.error{background:rgba(239,68,68,.17);border:1px solid rgba(239,68,68,.40);color:#ffd4d9}
.alert.success{background:rgba(16,185,129,.16);border:1px solid rgba(16,185,129,.35);color:#b9ffe5}

/* PANELS */
.layout{display:grid;grid-template-columns:280px minmax(0,1fr);min-height:100vh}
.sidebar{
 height:100vh;position:sticky;top:0;padding:22px;border-right:1px solid var(--line);
 background:
 linear-gradient(180deg,rgba(8,20,37,.99),rgba(6,16,30,.99)),
 radial-gradient(circle at top,rgba(59,130,246,.17),transparent 35%)
}
.sidebar .brand{margin-bottom:28px}
.menu{display:flex;flex-direction:column;gap:9px}
.menu a{
 padding:13px 14px;border-radius:14px;color:var(--muted);font-weight:850;
 border:1px solid transparent;transition:.2s
}
.menu a:hover,.menu a.active{
 color:#fff;transform:translateX(3px);
 background:linear-gradient(135deg,rgba(37,99,235,.23),rgba(124,58,237,.18),rgba(219,39,119,.13));
 border-color:rgba(255,255,255,.08)
}
.content{min-width:0;padding:27px 30px}
.topbar{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-bottom:24px}
.userbox{display:flex;gap:12px;align-items:center}
.avatar{
 width:45px;height:45px;border-radius:15px;display:grid;place-items:center;font-weight:900;
 background:linear-gradient(135deg,var(--orange),var(--pink),var(--purple))
}
.grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:17px}
.stat{
 min-width:0;padding:21px;border-radius:22px;position:relative;overflow:hidden;
 border:1px solid rgba(255,255,255,.12);box-shadow:var(--shadow)
}
.stat:after{content:"";position:absolute;width:95px;height:95px;border-radius:50%;right:-24px;bottom:-28px;background:rgba(255,255,255,.12)}
.stat:nth-child(1){background:linear-gradient(135deg,#2563eb,#4f8cff)}
.stat:nth-child(2){background:linear-gradient(135deg,#f97316,#f59e0b)}
.stat:nth-child(3){background:linear-gradient(135deg,#10b981,#06b6d4)}
.stat:nth-child(4){background:linear-gradient(135deg,#7c3aed,#db2777)}
.stat .value{font-size:30px;font-weight:950;margin-top:9px;position:relative;z-index:2;word-break:break-word}
.stat .muted{color:rgba(255,255,255,.84)}
.stat .badge{display:inline-block;padding:5px 9px;border-radius:999px;background:rgba(255,255,255,.18);font-size:12px;font-weight:900}
.card{
 margin-top:20px;padding:22px;border-radius:23px;background:linear-gradient(145deg,rgba(17,35,59,.97),rgba(9,23,40,.97));
 border:1px solid var(--line);box-shadow:var(--shadow);min-width:0
}
.card-header{display:flex;align-items:center;justify-content:space-between;gap:15px;margin-bottom:16px}
.table-wrap{overflow:auto;border-radius:16px}
table{width:100%;border-collapse:collapse;min-width:720px}
th,td{padding:13px 12px;text-align:left;border-bottom:1px solid rgba(255,255,255,.08)}
th{font-size:13px;color:#b7c9dc}
tr:hover td{background:rgba(255,255,255,.025)}
.status{display:inline-flex;padding:6px 10px;border-radius:999px;font-weight:900;font-size:12px}
.status.ok{background:rgba(16,185,129,.17);color:#79f0c3}
.status.wait{background:rgba(245,158,11,.17);color:#ffd987}
.status.cancel{background:rgba(239,68,68,.17);color:#ff9fa9}
.form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
.full{grid-column:1/-1}
.welcome{
 padding:31px;border-radius:25px;position:relative;overflow:hidden;
 background:linear-gradient(135deg,rgba(37,99,235,.94),rgba(124,58,237,.90),rgba(219,39,119,.82));
 border:1px solid rgba(255,255,255,.14);box-shadow:var(--shadow)
}
.welcome:after{content:"🏨";position:absolute;right:24px;bottom:-5px;font-size:92px;opacity:.14}
.welcome .muted{color:rgba(255,255,255,.84)}
.quick-actions{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:15px;margin-top:20px}
.quick{padding:19px;border-radius:20px;background:linear-gradient(145deg,rgba(17,35,59,.96),rgba(9,23,40,.96));border:1px solid var(--line)}
.quick-icon{width:48px;height:48px;border-radius:15px;display:grid;place-items:center;font-size:23px;background:linear-gradient(135deg,var(--blue2),var(--purple))}
.quick:nth-child(2) .quick-icon{background:linear-gradient(135deg,var(--orange),var(--yellow))}
.quick:nth-child(3) .quick-icon{background:linear-gradient(135deg,var(--green),var(--cyan))}
.quick strong{display:block;margin:10px 0 5px}
.mobile-toggle{display:none}

@media(max-width:1050px){
 .grid{grid-template-columns:repeat(2,minmax(0,1fr))}
 .auth-shell{grid-template-columns:1fr}
 .auth-visual{display:none}
 .auth-side{min-height:100vh;padding:22px}
}
@media(max-width:780px){
 .layout{grid-template-columns:1fr}
 .sidebar{position:fixed;left:-300px;top:0;width:280px;z-index:50;transition:.25s}
 .sidebar.open{left:0}
 .mobile-toggle{display:inline-flex}
 .content{padding:17px}
 .topbar{align-items:flex-start}
 .grid,.quick-actions,.form-grid{grid-template-columns:1fr}
 .full{grid-column:auto}
 .auth-card{padding:24px 18px;border-radius:22px}
 .auth-side{padding:15px;align-items:flex-start}
 .auth-links{align-items:flex-start;flex-direction:column}
}
@media(max-width:480px){
 .auth-side{padding:0}
 .auth-card{min-height:100vh;max-width:none;border-radius:0;border-left:0;border-right:0;padding:24px 17px}
 .brand{font-size:19px}
 .brand-logo{width:43px;height:43px}
 .content{padding:14px}
 .card{padding:16px}
 .grid{gap:12px}
 .stat{padding:18px}
 h1{font-size:27px}
}

/* MOBİL VE MEDYA */
.hero-slider{position:relative;overflow:hidden;border-radius:25px;min-height:340px;margin-bottom:20px;border:1px solid var(--line);box-shadow:var(--shadow);background:#0c1b33}
.hero-slide{position:absolute;inset:0;opacity:0;transition:opacity .7s}.hero-slide.active{opacity:1}
.hero-slide img,.hero-slide video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.hero-slide:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(4,12,24,.88),rgba(4,12,24,.28))}
.hero-caption{position:relative;z-index:2;max-width:640px;min-height:340px;padding:45px;display:flex;flex-direction:column;justify-content:center}
.hero-caption h2{font-size:42px;margin:0 0 12px}.hero-dots{position:absolute;z-index:4;left:50%;bottom:15px;transform:translateX(-50%);display:flex;gap:8px}
.hero-dot{width:10px;height:10px;border-radius:50%;padding:0;background:rgba(255,255,255,.45);box-shadow:none}.hero-dot.active{background:#fff}
.media-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}
.media-card{overflow:hidden;border-radius:20px;border:1px solid var(--line);background:linear-gradient(145deg,rgba(17,35,59,.97),rgba(9,23,40,.97));box-shadow:var(--shadow)}
.media-thumb{aspect-ratio:16/10;background:#081525}.media-thumb img,.media-thumb video{width:100%;height:100%;object-fit:cover;display:block}
.media-body{padding:15px}.media-body h3{margin:8px 0}.media-tag{display:inline-flex;padding:5px 9px;border-radius:999px;background:rgba(59,130,246,.16);color:#a9c9ff;font-size:12px;font-weight:800}
.preview-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-top:12px}.preview-grid img,.preview-grid video{width:100%;aspect-ratio:16/10;object-fit:cover;border-radius:14px}
.bottom-mobile-nav{display:none}
@media(max-width:1100px){.media-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:850px){
 body{padding-bottom:72px}.content{padding:14px}.topbar{flex-direction:column;align-items:stretch}.grid{grid-template-columns:repeat(2,1fr)}
 .quick-actions{grid-template-columns:1fr 1fr}.media-grid{grid-template-columns:repeat(2,1fr)}.hero-slider,.hero-caption{min-height:285px}.hero-caption{padding:26px}.hero-caption h2{font-size:31px}
 .bottom-mobile-nav{display:grid;grid-template-columns:repeat(5,1fr);position:fixed;left:0;right:0;bottom:0;z-index:70;background:rgba(7,18,37,.98);border-top:1px solid var(--line);padding:6px 3px calc(6px + env(safe-area-inset-bottom))}
 .bottom-mobile-nav a{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:3px;min-height:52px;font-size:11px;color:var(--muted)}
 .bottom-mobile-nav a span:first-child{font-size:21px}.bottom-mobile-nav a.active{color:#fff}
}
@media(max-width:560px){
 .grid,.quick-actions,.media-grid,.preview-grid,.form-grid{grid-template-columns:1fr!important}.full{grid-column:auto!important}
 .hero-slider,.hero-caption{min-height:245px}.hero-caption{padding:20px}.hero-caption h2{font-size:26px}.card{padding:14px}.btn,button{min-height:44px}
}


/* =========================================================
   CANLI VE YÜKSEK KONTRASTLI TEMA
   Tüm paneller, tablolar, alt taban ve mobil menü için
   ========================================================= */
:root{
 --navy:#06101f;
 --navy2:#0b1d38;
 --panel:#153458;
 --panel2:#1d4774;
 --white:#ffffff;
 --muted:#d7e8ff;
 --line:rgba(255,255,255,.24);
 --shadow:0 20px 55px rgba(0,0,0,.38);
}

html,body{
 color:#fff !important;
 background:
 linear-gradient(135deg,rgba(0,180,255,.16),transparent 35%),
 linear-gradient(225deg,rgba(255,0,153,.14),transparent 38%),
 linear-gradient(180deg,#071a32 0%,#0b2a4d 48%,#071a32 100%) !important;
}

body, p, span, div, td, label, strong, h1, h2, h3, h4, h5, h6{
 text-shadow:0 1px 1px rgba(0,0,0,.25);
}

.muted,.small{
 color:#d9ecff !important;
 opacity:1 !important;
}

.sidebar{
 background:
 radial-gradient(circle at 15% 5%,rgba(0,191,255,.28),transparent 35%),
 linear-gradient(180deg,#0d3260 0%,#10294c 48%,#081a32 100%) !important;
 border-right:2px solid rgba(89,207,255,.40) !important;
 box-shadow:8px 0 28px rgba(0,0,0,.28);
}

.sidebar .brand{
 color:#fff !important;
}

.menu a{
 color:#eaf6ff !important;
 background:rgba(255,255,255,.055);
 border:1px solid rgba(255,255,255,.12);
}

.menu a:nth-child(4n+1){border-left:4px solid #38bdf8}
.menu a:nth-child(4n+2){border-left:4px solid #fb7185}
.menu a:nth-child(4n+3){border-left:4px solid #34d399}
.menu a:nth-child(4n+4){border-left:4px solid #fbbf24}

.menu a:hover,.menu a.active{
 color:#fff !important;
 background:linear-gradient(135deg,#1274d8,#7c3aed,#db2777) !important;
 border-color:rgba(255,255,255,.42) !important;
 box-shadow:0 9px 24px rgba(24,114,216,.34);
}

.content{
 background:
 radial-gradient(circle at 85% 0%,rgba(236,72,153,.13),transparent 25%),
 radial-gradient(circle at 10% 100%,rgba(6,182,212,.13),transparent 30%);
}

.topbar{
 padding:16px 18px;
 border-radius:20px;
 background:linear-gradient(135deg,rgba(24,79,132,.96),rgba(73,43,135,.92)) !important;
 border:1px solid rgba(255,255,255,.26);
 box-shadow:0 12px 30px rgba(0,0,0,.26);
}

.card,.quick,.media-card,.auth-card,.public-card{
 color:#fff !important;
 background:
 linear-gradient(145deg,rgba(28,79,126,.98),rgba(17,48,82,.98)) !important;
 border:1px solid rgba(142,218,255,.35) !important;
 box-shadow:0 16px 42px rgba(0,0,0,.30) !important;
}

.card:nth-of-type(4n+1),.quick:nth-child(4n+1){
 background:linear-gradient(145deg,#174d7a,#123557) !important;
}
.card:nth-of-type(4n+2),.quick:nth-child(4n+2){
 background:linear-gradient(145deg,#563579,#2d2a59) !important;
}
.card:nth-of-type(4n+3),.quick:nth-child(4n+3){
 background:linear-gradient(145deg,#14625f,#154052) !important;
}
.card:nth-of-type(4n+4),.quick:nth-child(4n+4){
 background:linear-gradient(145deg,#784329,#4b2f3f) !important;
}

.card h1,.card h2,.card h3,
.quick strong,.media-card h3,.public-card h3{
 color:#fff !important;
}

.table-wrap{
 border:1px solid rgba(255,255,255,.22);
 background:#0b2947 !important;
 box-shadow:inset 0 0 0 1px rgba(93,206,255,.10);
}

table{
 background:#0c2d4e !important;
 color:#fff !important;
}

thead,th{
 background:linear-gradient(135deg,#146bc0,#5b36a7) !important;
 color:#fff !important;
 font-weight:950 !important;
 border-bottom:2px solid rgba(255,255,255,.30) !important;
}

tbody tr:nth-child(odd) td{
 background:#123c65 !important;
}
tbody tr:nth-child(even) td{
 background:#174873 !important;
}
tbody tr:hover td{
 background:#235f91 !important;
}
td{
 color:#fff !important;
 border-bottom:1px solid rgba(255,255,255,.18) !important;
}

input,select,textarea{
 color:#fff !important;
 background:#0b2948 !important;
 border:2px solid rgba(120,211,255,.42) !important;
 box-shadow:inset 0 1px 0 rgba(255,255,255,.05);
}

select option{
 color:#101828 !important;
 background:#fff !important;
}

input::placeholder,textarea::placeholder{
 color:#c6dcf5 !important;
 opacity:1;
}

input:focus,select:focus,textarea:focus{
 background:#123a61 !important;
 border-color:#67e8f9 !important;
 box-shadow:0 0 0 4px rgba(34,211,238,.20) !important;
}

.btn,button{
 color:#fff !important;
 border:1px solid rgba(255,255,255,.24) !important;
 background:linear-gradient(135deg,#0284c7,#6d28d9,#db2777) !important;
 box-shadow:0 10px 24px rgba(32,90,200,.36) !important;
}

.btn:hover,button:hover{
 filter:brightness(1.17);
 transform:translateY(-1px);
}

.btn.secondary{
 color:#fff !important;
 background:linear-gradient(135deg,#2563a5,#334e80) !important;
 border-color:rgba(171,222,255,.42) !important;
}

.btn.success{
 background:linear-gradient(135deg,#059669,#06b6d4) !important;
}

.btn.danger,.btn-danger{
 background:linear-gradient(135deg,#dc2626,#f97316) !important;
}

.alert{
 color:#fff !important;
 font-weight:750;
 border-width:1px !important;
 border-style:solid !important;
}

.alert.success{
 background:linear-gradient(135deg,rgba(5,150,105,.94),rgba(8,145,178,.90)) !important;
 border-color:#67e8f9 !important;
 color:#fff !important;
}

.alert.error{
 background:linear-gradient(135deg,rgba(185,28,28,.95),rgba(194,65,12,.92)) !important;
 border-color:#fecaca !important;
 color:#fff !important;
}

.status.ok{
 background:#047857 !important;
 color:#fff !important;
 border:1px solid #6ee7b7;
}
.status.wait{
 background:#b45309 !important;
 color:#fff !important;
 border:1px solid #fde68a;
}
.status.cancel{
 background:#b91c1c !important;
 color:#fff !important;
 border:1px solid #fecaca;
}

.quick{
 transition:.2s ease;
}
.quick:hover{
 transform:translateY(-4px);
 border-color:#fff !important;
 filter:brightness(1.10);
}

.quick-icon{
 color:#fff !important;
 box-shadow:0 8px 22px rgba(0,0,0,.25);
}

.hero-caption{
 color:#fff !important;
}
.hero-caption p,.hero-caption .muted{
 color:#fff !important;
}

.hero-slide:after{
 background:linear-gradient(90deg,rgba(2,16,35,.94),rgba(14,55,95,.42)) !important;
}

/* Mobil alt taban */
.bottom-mobile-nav{
 background:linear-gradient(90deg,#075985,#5b21b6,#be185d) !important;
 border-top:2px solid rgba(255,255,255,.55) !important;
 box-shadow:0 -8px 30px rgba(0,0,0,.42) !important;
}

.bottom-mobile-nav a{
 color:#fff !important;
 font-weight:850 !important;
 opacity:.88;
 border-radius:12px;
}

.bottom-mobile-nav a.active{
 color:#fff !important;
 opacity:1;
 background:rgba(255,255,255,.20) !important;
 box-shadow:inset 0 0 0 1px rgba(255,255,255,.28);
}

.bottom-mobile-nav a:hover{
 background:rgba(255,255,255,.15);
}

.bottom-mobile-nav a span:first-child{
 filter:drop-shadow(0 2px 4px rgba(0,0,0,.35));
}

/* Genel alt alan ve sayfa sonu */
footer,.footer,.site-footer{
 color:#fff !important;
 background:linear-gradient(135deg,#0d4b78,#442580,#8b1d58) !important;
 border-top:1px solid rgba(255,255,255,.30) !important;
}

/* Herkese açık site */
.public-head{
 padding:16px 20px !important;
 border-radius:20px;
 background:linear-gradient(135deg,#0e64ad,#6d28d9,#c0266d) !important;
 border:1px solid rgba(255,255,255,.30);
 box-shadow:0 12px 30px rgba(0,0,0,.28);
}

.wa-float{
 color:#fff !important;
 background:linear-gradient(135deg,#16a34a,#059669,#0891b2) !important;
 border:2px solid rgba(255,255,255,.70);
 box-shadow:0 12px 35px rgba(0,0,0,.38) !important;
}

@media(max-width:850px){
 body{background:#092746 !important}
 .content{background:linear-gradient(180deg,#0b3155,#0c2440) !important}
 .bottom-mobile-nav{padding-top:8px !important}
}

@media(max-width:480px){
 .card,.quick,.media-card,.public-card{
  border-radius:18px !important;
 }
 .topbar{
  border-radius:17px;
 }
}

/* Canlı onay ve vitrin */
.canli-degisti td{
 animation:canliDegisti 2.5s ease;
}
@keyframes canliDegisti{
 0%{background:#047857!important;box-shadow:inset 0 0 0 2px #a7f3d0}
 100%{box-shadow:none}
}
.yonetim-placeholder{
 width:100%;height:100%;min-height:220px;display:grid;place-items:center;
 font-size:70px;background:linear-gradient(135deg,#17629b,#6d28d9);
}
.yonetim-card .media-thumb img{object-position:center top}
.live-vitrin-section{animation:vitrinGel .35s ease}
@keyframes vitrinGel{from{opacity:.3;transform:translateY(5px)}to{opacity:1;transform:none}}

/* Kurumsal müşteri paneli ve profesyonel slayt */
.kurumsal-slider{min-height:390px;border-radius:28px;border:1px solid rgba(255,255,255,.28)}
.kurumsal-slider .hero-caption{max-width:760px;min-height:390px;padding:52px}
.kurumsal-slider .hero-caption h2{font-size:clamp(32px,5vw,58px);line-height:1.05;letter-spacing:-1px}
.kurumsal-slider .hero-caption p{font-size:17px;line-height:1.65;max-width:640px}
.kurumsal-kapsul{display:inline-flex;width:max-content;padding:7px 11px;border-radius:999px;background:rgba(255,255,255,.16);border:1px solid rgba(255,255,255,.28);font-size:12px;font-weight:900;letter-spacing:.8px;margin-bottom:14px}
.slider-arrow{position:absolute;z-index:7;top:50%;transform:translateY(-50%);width:46px;height:46px;padding:0;border-radius:50%;background:rgba(5,20,39,.55)!important;border:1px solid rgba(255,255,255,.5)!important;font-size:31px}
.slider-arrow.prev{left:16px}.slider-arrow.next{right:16px}
.kurumsal-islemler .quick{min-height:150px}
.kurumsal-durum{border-left:5px solid #34d399!important}
.kurumsal-istatistik{grid-template-columns:repeat(2,minmax(0,1fr));max-width:720px}
[data-canli-slayt]:empty,[data-canli-vitrin]:empty{display:none}
@media(max-width:850px){
 .kurumsal-slider,.kurumsal-slider .hero-caption{min-height:330px}
 .kurumsal-slider .hero-caption{padding:30px 24px}
 .slider-arrow{width:40px;height:40px}
}

/* Oda başına 10 resim/video mobil slaytı */
.oda-vitrin-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px}
.oda-vitrin-card{overflow:hidden;border-radius:22px;background:linear-gradient(145deg,#174d7a,#123557);border:1px solid rgba(142,218,255,.35);box-shadow:0 16px 42px rgba(0,0,0,.3)}
.oda-slider{position:relative;width:100%;aspect-ratio:16/10;overflow:hidden;background:#06182a;touch-action:pan-y}
.oda-slider-track,.oda-slide{position:absolute;inset:0}
.oda-slide{opacity:0;visibility:hidden;transition:opacity .45s ease}
.oda-slide.active{opacity:1;visibility:visible}
.oda-slide img,.oda-slide video{width:100%;height:100%;object-fit:cover;display:block;background:#06182a}
.oda-slider-ok{position:absolute;z-index:4;top:50%;transform:translateY(-50%);width:42px;height:42px;border-radius:50%;padding:0;background:rgba(4,20,38,.7)!important;border:1px solid rgba(255,255,255,.55)!important;font-size:29px}
.oda-slider-ok.sol{left:12px}.oda-slider-ok.sag{right:12px}
.oda-slider-noktalar{position:absolute;z-index:4;left:50%;bottom:13px;transform:translateX(-50%);display:flex;gap:6px}
.oda-slider-noktalar button{width:9px;height:9px;padding:0;border-radius:50%;background:rgba(255,255,255,.5)!important;box-shadow:none!important;border:0!important}
.oda-slider-noktalar button.active{background:#fff!important;transform:scale(1.25)}
.oda-sayac{position:absolute;z-index:4;right:12px;top:12px;padding:6px 9px;border-radius:999px;background:rgba(3,18,35,.72);color:#fff;font-size:12px;font-weight:900}
.oda-vitrin-body{padding:18px}.oda-vitrin-body h3{margin:0 0 8px;font-size:23px}.oda-vitrin-body .btn{margin-top:8px}
@media(max-width:850px){
 .oda-vitrin-grid{grid-template-columns:1fr}
 .oda-slider{aspect-ratio:4/3}
 .oda-slider-ok{width:38px;height:38px}
 .oda-vitrin-body{padding:16px}
}
@media(max-width:480px){
 .oda-slider{aspect-ratio:1/1}
 .oda-slider-ok{width:36px;height:36px}
 .oda-slider-ok.sol{left:8px}.oda-slider-ok.sag{right:8px}
 .oda-slider-noktalar{max-width:70%;overflow:hidden}
}
