/* =======================
   GENEL AYARLAR
======================= */
*{
  box-sizing:border-box;
  font-family:'Montserrat', Arial, Helvetica, sans-serif;
}

html, body{
  margin:0;
  padding:0;
  width:100%;
  overflow-x:hidden;
}

body{
  background:#f2f2f2;
}

/* =======================
   KONTEYNER
======================= */
.container{
  width:1200px;
  margin:auto;
}

/* =======================
   ÜST BAR
======================= */
.top-bar{
  background:#0b3c5d;
  color:#fff;
  font-size:13px;
  padding:6px 0;
}

.top-bar .right{
  float:right;
}

/* =======================
   HEADER
======================= */
.header{
  background:#fff;
  padding:15px 0;
}

.header-flex{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

/* =======================
   LOGO
======================= */
.logo{
  display:flex;
  align-items:center;
}

.logo img{
  width:220px;
  height:auto;
}

/* =======================
   BAŞLIK BLOĞU
======================= */
.site-title{
  margin-left:auto;
  text-align:right;
}

.site-title h1{
  margin:0;
  font-size:28px;
  font-weight:700;
  line-height:1.1;
}

.site-title small{
  display:block;
  margin-top:4px;
  font-size:13px;
  font-weight:400;
  color:#555;
  opacity:.9;
}

/* =======================
   HAMBURGER
======================= */
.menu-toggle{
  display:none;
  font-size:30px;
  cursor:pointer;
  border:none;
  background:transparent;
}

/* =======================
   OVERLAY
======================= */
.menu-overlay{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100vh;
  background:rgba(0,0,0,.30);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  z-index:1000;
  display:none;
}

.menu-overlay.active{
  display:block;
}

/* =======================
   MENÜ LINK AYARLARI
======================= */
.menu a,
.submenu a,
.menu-item.single a{
  color:inherit;
  text-decoration:none;
  display:block;
}

/* =======================
   DESKTOP MENÜ
======================= */
.menu{
  position:relative;
  width:100%;
  background:#a40000;
  z-index:10;
  transform:none;
  height:auto;
  display:flex;
  justify-content:center;
}

.menu-close{ display:none; }

.menu-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  justify-content:center;
}

.menu-item{ border-bottom:none; }

.menu-item.single{
  padding:15px 18px;
  color:#fff;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  text-align:center;
}

.menu-title{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:15px 18px;
  color:#fff;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  text-align:center;
}

.menu-title .icon{ display:none; }
.submenu{ display:none; }

.menu-item.single:hover,
.menu-title:hover{
  background:rgba(0,0,0,.15);
}

/* =======================
   DESKTOP DROPDOWN (SADECE MASAÜSTÜ)
   Mobil hamburger menüyü bozmaz
======================= */
@media (min-width: 769px){

  .menu-item{
    position: relative;
  }

  .submenu{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    min-width:220px;
    background:#ffffff;
    border-radius:10px;
    padding:10px 0;
    margin:0;
    list-style:none;
    box-shadow:0 18px 40px rgba(0,0,0,0.18);
    z-index:9999;
  }

  /* hover ile aç */
  .menu-item:hover > .submenu{
    display:block;
  }

  .submenu li a{
    padding:12px 14px;
    color:#000000;
    font-weight:600;
    white-space:nowrap;
  }

  .submenu li a:hover{
    background:rgba(0,90,167,0.10);
  }
}

/* =======================
   ANA İÇERİK
======================= */
.main{
  display:flex;
  margin-top:20px;
}

.content{ width:70%; }
.sidebar{ width:30%; padding-left:20px; }

/* =======================
   SLIDER (DUZELTILMIS + THUMBNAIL + OKLAR)
======================= */
.slider{
  position:relative;
  height:420px;
  overflow:hidden;
  border-radius:6px;
  background:#000;
}

/* Ana slider resimleri: sadece active görünsün */
.slider > img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:none;
}

.slider > img.active{
  display:block;
}

/* OKLAR */
.slider-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border:none;
  cursor:pointer;
  border-radius:999px;
  background:rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color:#fff;
  font-size:28px;
  line-height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:5;
}

.slider-nav:hover{ background:rgba(255,255,255,0.35); }
.slider-nav.prev{ left:12px; }
.slider-nav.next{ right:12px; }

/* THUMBNAIL BAR (JS sliderin altina ekliyor) */
.slider-thumbs{
  margin-top:10px;
  width:100%;
  display:flex;
  gap:8px;
  overflow-x:auto;
  overflow-y:hidden;
  padding:6px 2px;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:thin;
}

.slider-thumbs .thumb{
  border:none;
  padding:0;
  cursor:pointer;
  background:transparent;
  flex:0 0 auto;
  border-radius:6px;
  overflow:hidden;
  opacity:.65;
  transition:opacity .25s ease, transform .25s ease;
}

.slider-thumbs .thumb img{
  display:block;
  width:110px;
  height:58px;
  object-fit:cover;
}

.slider-thumbs .thumb.active{
  opacity:1;
  transform:translateY(-1px);
  outline:2px solid rgba(0,90,167,0.9);
}

.slider-thumbs .thumb:hover{ opacity:.95; }

/* =======================
   YAZARLAR – MODERN GLASS (TEMİZ)
======================= */
.section-title{
  text-align:center;
  margin:30px 0 18px;
  font-size:26px;
  font-weight:800;
  letter-spacing:.3px;
}

.glass-writers{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
  margin-bottom:30px;
}

.writer-glass{
  background:rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius:22px;
  padding:22px;
  box-shadow:0 18px 45px rgba(0,0,0,.08);
  border:1px solid rgba(255,255,255,.45);
  position:relative;
  transition:all .3s ease;
}

.writer-glass:hover{
  transform:translateY(-6px);
  box-shadow:0 28px 60px rgba(0,0,0,.12);
}

/* üst renk şeridi */
.writer-glass::before{
  content:"";
  position:absolute;
  top:0; left:0; right:0;
  height:5px;
  background:linear-gradient(90deg, #0b3c5d, #b30000);
  border-radius:22px 22px 0 0;
}

.writer-header{
  margin-bottom:12px;
}

.writer-badge{
  display:inline-block;
  font-size:12px;
  font-weight:700;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(11,60,93,.08);
  color:#0b3c5d;
  margin-bottom:8px;
}

.writer-name{
  margin:6px 0 0;
  font-size:18px;
  font-weight:800;
  letter-spacing:.2px;
}

.writer-text{
  margin:14px 0 0;
  font-size:14px;
  line-height:1.75;
  opacity:.9;
  position:relative;
}

/* büyük tırnak efekti */
.writer-text::before{
  content:"“";
  position:absolute;
  top:-18px;
  left:-6px;
  font-size:48px;
  color:rgba(0,0,0,.08);
  font-weight:900;
}

/* Tablet: 2 kolon */
@media (max-width: 980px){
  .glass-writers{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobil: 1 kolon */
@media (max-width: 620px){
  .glass-writers{
    grid-template-columns: 1fr;
    gap:14px;
  }
  .writer-glass{
    padding:18px;
    border-radius:18px;
  }
  .section-title{
    font-size:22px;
    margin:22px 0 14px;
  }
}

/* =======================
   SIDEBAR
======================= */
.box{
  background:#fff;
  padding:15px;
  margin-bottom:15px;
}

.social{
  display:flex;
  gap:20px;
}

.social a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}

.social img{
  width:32px;
  height:32px;
  cursor:pointer;
  transition:transform .25s ease, opacity .25s ease;
}

.social a:hover img{
  transform:scale(1.15);
  opacity:.85;
}

/* =======================
   HERO (MAVİ ALAN)
======================= */
section.hero{
  width:100%;
  background:#a40000;
  padding:60px 0;
  margin-top:30px;
  overflow:hidden;
}

section.hero .hero-content{
  width:1200px;
  max-width:100%;
  margin:0 auto;
  padding:0 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}

section.hero .hero-text{
  flex:1;
  color:#fff;
}

section.hero .hero-image{
  flex:1;
  text-align:right;
}

section.hero .hero-image img{
  width:100%;
  max-width:520px;
  height:auto;
  display:block;
  margin-left:auto;
  border-radius:6px;
}

/* =======================
   FOOTER (eski footer sınıfın varsa dursun)
======================= */
.footer{
  background:#0b3c5d;
  color:#fff;
  text-align:center;
  padding:15px;
  margin-top:30px;
}

/* =======================
   MOBİL UYUMLULUK
======================= */
@media (max-width:768px){

  .container{ width:95%; }

  .header-flex{
    position:relative;
    justify-content:center;
  }

  .logo{ margin:0 auto; }

  .site-title{ display:none !important; }

  .menu-toggle{
    display:block;
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
  }

  .logo img{ width:170px; }

  .main{ flex-direction:column; }

  .content,
  .sidebar{
    width:100%;
    padding-left:0;
  }

  /* ✅ SIDEBAR biraz aşağı insin */
  .sidebar{ margin-top:25px; }

  .slider{ height:220px; }

  .slider-thumbs .thumb img{
    width:90px;
    height:48px;
  }

  .sidebar .box{ text-align:center; }
  .sidebar h3{ text-align:center; margin-bottom:12px; }

  .social{
    justify-content:center;
    gap:24px;
    flex-wrap:wrap;
  }
  .social img{
    width:44px;
    height:44px;
  }

  /* Mobil kayan menü */
  .menu{
    position:fixed;
    top:0;
    left:0;
    width:80%;
    height:100vh;
    background:#005aa7;
    z-index:1001;
    transform:translateX(-100%);
    transition:transform .4s ease;
    display:block;
  }

  .menu.active{ transform:translateX(0); }

  .menu-close{
    display:block;
    position:absolute;
    top:14px;
    right:14px;
    font-size:26px;
    color:#fff;
    border:none;
    background:transparent;
    cursor:pointer;
    z-index:1002;
  }

  .menu-list{
    display:block;
    padding:60px 0 0 0;
  }

  .menu-item{
    border-bottom:1px solid rgba(255,255,255,.18);
  }

  .menu-item.single{
    padding:18px;
    text-align:left;
    font-size:18px;
  }

  .menu-title{
    justify-content:space-between;
    padding:18px;
    font-size:18px;
    text-align:left;
  }

  .menu-title .icon{
    display:inline-block;
    font-size:22px;
    width:28px;
    text-align:center;
    user-select:none;
  }

  .submenu{
    display:block;
    list-style:none;
    margin:0;
    padding:0;
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
    background:rgba(0,0,0,.12);
  }

  .menu-item.open .submenu{ max-height:500px; }

  .submenu li{
    padding:14px 18px;
    color:rgba(255,255,255,.92);
    font-size:15px;
    cursor:pointer;
  }

  .submenu li:hover,
  .menu-item.single:hover,
  .menu-title:hover{
    background:rgba(0,0,0,.15);
  }

  /* HERO MOBİL */
  section.hero .hero-content{
    width:95%;
    flex-direction:column;
    text-align:center;
  }

  section.hero .hero-image{ text-align:center; }

  section.hero .hero-image img{
    margin:0 auto;
    max-width:100%;
  }

  /* MAP MOBİL */
  .map-container{
    grid-template-columns:1fr;
  }

  .map-info{
    text-align:center;
  }

  .tr-map-obj{
    height:420px;
  }
}

/* =======================
   FAQ / ACCORDION
======================= */
.faq{
  width:1200px;
  max-width:100%;
  margin:40px auto;
  padding:0 20px;
}

.faq-item{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:10px;
  margin-bottom:14px;
  overflow:hidden;
}

.faq-header{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px 18px;
  background:#fff;
  border:none;
  cursor:pointer;
  text-align:left;
}

.faq-title{
  font-size:26px;
  font-weight:800;
  color:#0b3c5d;
}

.faq-icon{
  width:40px;
  height:40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  font-weight:700;
  color:#0b3c5d;
  border-radius:10px;
}

.faq-body{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
  background:#fff;
}

.faq-body-inner{
  padding:0 18px 18px 18px;
  color:#333;
  line-height:1.6;
}

/* Açıkken: başlık kırmızı + ikon "-" */
.faq-item.active .faq-title{
  color:#e11d48;
}

.faq-item.active .faq-icon{
  color:#e11d48;
}

@media (max-width:768px){
  .faq-title{ font-size:20px; }
  .faq-icon{ width:36px; height:36px; font-size:24px; }
}

/* =======================
   ETTS MODERN FOOTER
======================= */
.etts-footer{
  background: linear-gradient(160deg, #0e0f14, #151722);
  color:#fff;
  padding:60px 0 30px;
  margin-top:30px;
}

.etts-footer__container{
  width:1200px;
  max-width:100%;
  margin:0 auto;
  padding:0 20px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:40px;
}

/* Sol kolonlar */
.etts-footer__columns{
  display:flex;
  gap:80px;
  flex-wrap:wrap;
}

.etts-footer__col{
  min-width:180px;
}

.etts-footer__title{
  font-size:16px;
  margin:0 0 14px 0;
  color:#ffffff;
  font-weight:700;
  letter-spacing:.2px;
}

.etts-footer__link{
  display:block;
  margin:0 0 10px 0;
  font-size:14px;
  color:#b9bcc7;
  text-decoration:none;
  transition: color .25s ease;
}

.etts-footer__link:hover{
  color:#ffffff;
}

/* Sağ kart (glass) */
.etts-footer__card{
  width:300px;
  max-width:100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius:16px;
  padding:22px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.etts-footer__cardTitle{
  margin:0 0 14px 0;
  font-size:16px;
  font-weight:800;
  color:#ffffff;
}

.etts-footer__cardRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.etts-footer__cardRow:last-of-type{
  border-bottom:none;
}

.etts-footer__cardLabel{
  font-size:12px;
  color:#b9bcc7;
  letter-spacing:.2px;
}

.etts-footer__cardValue{
  font-size:14px;
  color:#e8e9ee;
  text-decoration:none;
  transition: color .25s ease;
}

.etts-footer__cardValue:hover{
  color:#ffffff;
}

.etts-footer__address{
  margin:12px 0 0 0;
  font-size:13px;
  color:#b9bcc7;
  line-height:1.55;
}

/* Alt bar */
.etts-footer__bottom{
  width:1200px;
  max-width:100%;
  margin:45px auto 0;
  padding:22px 20px 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.etts-footer__brand{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
}

.etts-footer__logo{
  width:95px;
  height:auto;
  transition: transform .25s ease;
}

.etts-footer__logo:hover{
  transform: scale(1.15);
}

.etts-footer__copy{
  font-size:13px;
  color:#b9bcc7;
  text-align:center;
  flex:1;
}

/* Sosyal ikonlar */
.etts-footer__social{
  display:flex;
  align-items:center;
  gap:14px;
}

.etts-footer__socialLink{
  color:#b9bcc7;
  font-size:18px;
  text-decoration:none;
  transition: color .25s ease, transform .25s ease;
}

.etts-footer__socialLink:hover{
  color:#e11d48;
  transform: translateY(-1px);
}

/* FOOTER MOBİL */
@media (max-width: 768px){

  .etts-footer{
    padding:45px 0 24px;
  }

  .etts-footer__container{
    flex-direction:column;
    gap:18px;
  }

  .etts-footer__columns{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:18px 22px;
  }

  .etts-footer__col{
    width:auto;
    min-width:0;
  }

  .etts-footer__col:nth-child(3){
    grid-column:1 / -1;
    margin-top:4px;
  }

  .etts-footer__title{
    font-size:15px;
    margin-bottom:10px;
  }

  .etts-footer__link{
    font-size:13.5px;
    margin-bottom:8px;
  }

  .etts-footer__card{
    width:100%;
    margin-top:6px;
  }

  .etts-footer__bottom{
    flex-direction:column;
    text-align:center;
    gap:10px;
  }

  .etts-footer__brand{ order:1; }
  .etts-footer__social{ order:2; justify-content:center; }
  .etts-footer__copy{ order:3; }
}

/* =======================
   NEWS SECTION (Haberler)
======================= */
.news-section{
  background:#f2f2f2;
  padding:55px 0 45px;
}

.news-container{
  width:1200px;
  max-width:100%;
  margin:0 auto;
  padding:0 20px;
}

/* üst başlık alanı */
.news-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:28px;
  margin-bottom:22px;
}

.news-kicker{
  font-size:12px;
  letter-spacing:.22em;
  font-weight:800;
  color:#e11d48;
  margin-bottom:8px;
  text-transform:uppercase;
}

.news-title{
  margin:0;
  font-size:44px;
  line-height:1.05;
  color:#222;
  font-weight:800;
}

.news-desc{
  margin:8px 0 0 0;
  color:#666;
  font-size:14px;
  line-height:1.6;
  max-width:430px;
}

/* kart grid */
.news-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:18px;
  margin-top:22px;
}

.news-card{
  background:#fff;
  border-radius:10px;
  overflow:hidden;
  text-decoration:none;
  color:inherit;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform .22s ease, box-shadow .22s ease;
  display:flex;
  flex-direction:column;
  min-height: 360px;
}

.news-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.news-img{
  height:160px;
  background:#ddd;
  overflow:hidden;
}

.news-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition: transform .35s ease;
}

.news-card:hover .news-img img{
  transform: scale(1.04);
}

.news-body{
  padding:16px 16px 18px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.news-meta{
  font-size:12px;
  color:#777;
  display:flex;
  align-items:center;
  gap:8px;
}

.news-tag{
  font-weight:700;
  color:#0b3c5d;
}

.news-dot{
  opacity:.6;
}

.news-card-title{
  margin:0;
  font-size:18px;
  line-height:1.2;
  color:#222;
  font-weight:800;
}

.news-excerpt{
  margin:0;
  color:#666;
  font-size:13px;
  line-height:1.6;
}

/* alt CTA */
.news-cta{
  margin-top:24px;
  text-align:center;
}

.news-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 24px;
  background:#e11d48;
  color:#fff;
  text-decoration:none;
  border-radius:8px;
  font-weight:800;
  letter-spacing:.02em;
  box-shadow: 0 12px 26px rgba(225,29,72,0.30);
  transition: transform .18s ease, filter .18s ease;
}

.news-button:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.news-button i{
  font-size:18px;
}

.news-subtext{
  margin-top:10px;
  font-size:12px;
  color:#777;
}

/* RESPONSIVE */
@media (max-width: 1024px){
  .news-title{ font-size:34px; }
  .news-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px){
  .news-section{ padding:40px 0 35px; }

  .news-head{
    flex-direction:column;
    gap:10px;
  }

  .news-title{
    font-size:28px;
  }

  .news-desc{
    max-width:none;
  }

  .news-grid{
    grid-template-columns: 1fr;
    gap:14px;
  }

  .news-card{
    min-height:unset;
  }

  .news-img{
    height:180px;
  }

  .news-button{
    width:100%;
    max-width:420px;
  }
}

/* =======================
   Tüzük / Sayfa Şablonu
======================= */
.page{
  width:100%;
  padding:24px 0;
}

.page-head{
  background:#fff;
  border-radius:16px;
  padding:18px;
  margin-bottom:14px;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
}

.page-card{
  background:#fff;
  border-radius:16px;
  padding:18px;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
  line-height:1.7;
}

.page-card h3{
  margin:18px 0 8px 0;
}
/* =======================
   SENDİKAYA ÜYE OLMA BUTONU
======================= */

.join-guide-box {
    text-align: center;
    padding: 20px;
}

.join-guide-btn {
    display: block;
    background: linear-gradient(135deg, #0b3c5d, #125a8c);
    color: #fff;
    text-decoration: none;
    padding: 14px 18px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.join-guide-btn:hover {
    background: linear-gradient(135deg, #125a8c, #0b3c5d);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* =======================
   ÜYELİK REHBERİ (uye-olma.html)
======================= */
.guide-hero{
  display:grid;
  grid-template-columns: 1.4fr .9fr;
  gap:18px;
  margin-top:22px;
}

.guide-kicker{
  font-size:12px;
  letter-spacing:.22em;
  font-weight:900;
  color:#e11d48;
  text-transform:uppercase;
  margin-bottom:8px;
}

.guide-title{
  margin:0;
  font-size:40px;
  line-height:1.05;
  color:#222;
  font-weight:900;
}

.guide-desc{
  margin:12px 0 0 0;
  color:#666;
  font-size:14px;
  line-height:1.7;
  max-width:720px;
}

.guide-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}

.guide-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:12px;
  text-decoration:none;
  font-weight:900;
  letter-spacing:.01em;
  border:1px solid rgba(0,0,0,.08);
}

.guide-btn.primary{
  background:#e11d48;
  color:#fff;
  box-shadow:0 12px 26px rgba(225,29,72,0.28);
}

.guide-btn.primary:hover{ filter:brightness(1.05); }

.guide-btn.ghost{
  background:#fff;
  color:#222;
}

.guide-badges{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:14px;
}

.guide-badge{
  display:inline-block;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(11,60,93,.08);
  color:#0b3c5d;
  font-weight:800;
  font-size:12px;
}

.guide-card{
  background:#fff;
  border-radius:16px;
  padding:16px;
  box-shadow:0 10px 26px rgba(0,0,0,.07);
  border:1px solid rgba(0,0,0,.06);
}

.guide-card h3{
  margin:0 0 10px 0;
  font-weight:900;
  color:#0b3c5d;
}

.guide-card ul{
  margin:0;
  padding-left:18px;
  color:#333;
  line-height:1.8;
}

.guide-note{
  margin-top:12px;
  padding:12px;
  border-radius:12px;
  background:rgba(225,29,72,0.07);
  color:#333;
  font-size:13px;
  line-height:1.6;
}

.guide-steps-head{
  margin-top:18px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
}

.guide-steps-head h2{
  margin:0;
  font-size:22px;
  font-weight:900;
  color:#222;
}

.guide-steps-head p{
  margin:0;
  font-size:13px;
  color:#666;
}

.guide-steps{
  margin-top:12px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

/* Step card */
.step{
  display:grid;
  grid-template-columns: 54px 1fr;
  gap:12px;
  background:#fff;
  border-radius:16px;
  padding:14px;
  box-shadow:0 10px 26px rgba(0,0,0,.07);
  border:1px solid rgba(0,0,0,.06);
}

.step-no{
  width:54px;
  height:54px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-size:18px;
  background:linear-gradient(135deg, rgba(11,60,93,.12), rgba(225,29,72,.12));
  color:#0b3c5d;
}

.step-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}

.step-title{
  margin:0;
  font-size:18px;
  font-weight:900;
  color:#222;
}

.step-pill{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  color:#e11d48;
  background:rgba(225,29,72,0.08);
}

.step-text{
  margin:10px 0 0 0;
  color:#555;
  line-height:1.75;
  font-size:14px;
}

.step-media{
  margin-top:12px;
  border-radius:14px;
  overflow:hidden;
  background:#eee;
  border:1px solid rgba(0,0,0,.06);
}

.step-media img{
  width:100%;
  display:block;
  cursor:zoom-in;
  transition:transform .25s ease;
}

.step-media img:hover{
  transform:scale(1.01);
}

.step-caption{
  padding:10px 12px;
  font-size:12px;
  color:#666;
  background:#fff;
  border-top:1px solid rgba(0,0,0,.06);
}

.step-tip{
  margin-top:10px;
  padding:10px 12px;
  border-radius:12px;
  background:rgba(11,60,93,.06);
  color:#0b3c5d;
  font-size:13px;
  line-height:1.6;
  font-weight:600;
}

/* Mini FAQ */
.guide-mini-faq{
  margin-top:18px;
  background:#fff;
  border-radius:16px;
  padding:16px;
  box-shadow:0 10px 26px rgba(0,0,0,.07);
  border:1px solid rgba(0,0,0,.06);
}

.guide-mini-faq h2{
  margin:0 0 10px 0;
  font-size:20px;
  font-weight:900;
  color:#222;
}

.mini-faq-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}

.mini-faq{
  background:rgba(0,0,0,.03);
  border:1px solid rgba(0,0,0,.06);
  border-radius:14px;
  padding:12px;
}

.mini-faq h4{
  margin:0 0 6px 0;
  font-size:14px;
  font-weight:900;
  color:#0b3c5d;
}

.mini-faq p{
  margin:0;
  color:#555;
  line-height:1.65;
  font-size:13px;
}

/* Lightbox / Modal */
.img-modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:99999;
}

.img-modal.active{ display:block; }

.img-modal__overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.img-modal__dialog{
  position:relative;
  width:min(980px, 92vw);
  max-height:86vh;
  margin:6vh auto 0;
  background:#111;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,.45);
  border:1px solid rgba(255,255,255,.12);
}

.img-modal__img{
  width:100%;
  height:auto;
  display:block;
  max-height:86vh;
  object-fit:contain;
  background:#111;
}

.img-modal__close{
  position:absolute;
  top:10px;
  right:10px;
  width:42px;
  height:42px;
  border-radius:12px;
  border:none;
  cursor:pointer;
  color:#fff;
  font-size:22px;
  background:rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.img-modal__close:hover{
  background:rgba(255,255,255,.18);
}

/* Responsive */
@media (max-width: 980px){
  .guide-hero{ grid-template-columns: 1fr; }
  .guide-title{ font-size:30px; }
  .mini-faq-grid{ grid-template-columns:1fr; }
}