:root {
--primary-red: #B5123E;
--accent-red: #8e0e30;
--accent-red2:rgb(88, 5, 27)0;
--light: #f4f7fb;
--white: #ffffff;
--text: #1a2340;
--border: #e2e8f0;
--muted: #6b7a99;
--primary-epra: #00263E; /* 0a1628 */
--accent: #00c8ff;
--accent2: #0066ff;
--nav-h: 72px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html { 
    scroll-behavior: smooth;
}

body { 
    font-family: 'DM Sans', sans-serif;
    /* font-family: 'Verdana', sans-serif; */
    /* font-family: 'Montserrat', sans-serif; */
    color: var(--text);
    background: var(--white);
    overflow-x: hidden; 
    margin: 0; 
    padding: 0;
}

.topbar { 
    background: var(--primary-red);
    color: var(--light);
    font-size: 13px;
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    a { 
        color: var(--light);
        text-decoration: none; 
        &:hover { 
            color: var(--text);
        }
        img {
            width: 6px;
            height: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
    }
    .topbar-right { display: flex; gap: 24px; }
}
    
nav { 
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    height: var(--nav-h);
    display: flex;
    align-items: center;
    padding: 0 40px;
    gap: 20px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06); 
    color: var(--primary-red);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    
    #epcode-main-logo{
        display: flex;
        flex-direction: column;
        padding: 0px 0px;
        margin: 0px;
        gap: 0px;
        justify-content: center;
        justify-items: center;
    
        .logo {
            position: relative;
            margin-bottom: 0;
            img {
                width: 80px;
                height: auto;
                display: flex;
                align-items: center;
                justify-content: center;
              }
              &::after {
                content: 'Beta-Coming Soon';
                position: absolute; 
                top: 20px;
                left: 120px;
                color: var(--accent-red);
                font-weight: 600;
                width: 200px;
                align-items: center;
                justify-content: center;
            }
        }
    }
    
    .nav-links {
        display: flex;
        gap: 4px;
        list-style: none;
        margin-left: auto;
        align-items: center;
        & > li { 
            position: relative;
            & > a {
                display: flex;
                align-items: center;
                gap: 4px;
                padding: 8px 14px;
                font-size: 1.2rem;
                font-weight: 600;
                color: var(--primary-red);
                text-decoration: none;
                border-radius: 6px;
                transition: background 0.2s, color 0.2s;
                &:hover {
                    background: var(--light);
                    color: var(--accent-red2);
                }
                svg { 
                    width: 12px;
                    height: 12px; 
                }
            }
            &:hover .dropdown {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
        }
        .dropdown {
            position: absolute;
            top: calc(100% + 18px); /* under navbar */
            left: 0;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.12);
            min-width: 350px;
            padding: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: all 0.2s;
            list-style: none; 
            a {
                display: block;
                padding: 10px 14px;
                font-size: 14px;
                color: var(--text);
                text-decoration: none;
                border-radius: 8px;
                transition: background 0.15s; 
                img {
                    height: 2em;
                    vertical-align: middle;
                    margin-right: 1em;
                }
                &:hover { 
                    background: var(--light);
                    color: var(--accent-red2); 
                }
            }
        }   
    }
}

nav.scrolled {
    background: var(--primary-red);
    box-shadow: 0 2px 20px rgba(0,0,0,0.18);

    /* Logo "Beta-Coming Soon" text */
    #epcode-main-logo .logo::after {
        color: var(--light);
    }

    /* Nav links */
    .nav-links > li > a {
        color: var(--light);

        &:hover {
            background: var(--accent-red);
            color: var(--white);
        }
    }
    .logo img {
      filter: brightness(0) invert(1);
    }
}
@media (max-width: 516px) {
    nav {
        padding: 0 16px;
        gap: 10px;
        flex-wrap: wrap;

        #epcode-main-logo .logo img {
            width: 60px;
        }

        .nav-links {
            margin-left: 0;
            gap: 2px;

            & > li > a {
                padding: 6px 8px;
                font-size: 12px;
            }

            .dropdown {
                min-width: 260px;
                left: 50%;
                transform: translateX(-50%) translateY(-8px);

                &:hover {
                    transform: translateX(-50%) translateY(0);
                }
            }
        }

    }
}

.hero {
    min-height: 600px;
    background: var(--primary-epra);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden; 
    height: calc(100vh - 177px);
    
    &::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.2); /*0.5 = 50% dark overlay, adjust to taste */
        z-index: 1;
    }
    .hero-bg {
        position: absolute;
        inset: 0;
        /* background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(0,102,255,0.15) 0%, transparent 70%), radial-gradient(ellipse 40% 60% at 20% 80%, rgba(0,200,255,0.1) 0%, transparent 60%); */
    }
    .hero-grid { 
        position: absolute;
        inset: 0;
        background-image: url("images/city-lights.jpg");
        background-size: cover;
    }
    .hero-content { 
        position: relative;
        z-index: 2;
        max-width: 1200px;
        margin: 0 auto;
        width: 100%; 
 
        h1 {
            /* font-family: 'Syne', sans-serif; */
            font-size: clamp(36px, 5vw, 62px);
            font-weight: 800;
            color: var(--white);
            line-height: 1.1;
            max-width: 700px;
            animation: fadeUp 0.6s 0.1s ease both;
            letter-spacing: -3px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
        }
        p { 
            font-size: 20px;
            color: var(--light);
            max-width: 520px;
            margin-top: 20px;
            line-height: 1.7;
            font-weight: 400;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
            animation: fadeUp 0.6s 0.2s ease both;
        }

    }
    .hero-buttons {
        display: flex;
        gap: 12px;
        margin-top: 36px;
        animation: fadeUp 0.6s 0.3s ease both; 
    }

}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 24px rgba(0,102,255,0.35); 
    &:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(0,102,255,0.45); 
    }
}
.btn-outline { background: transparent; color: white; padding: 14px 28px; border-radius: 10px; font-size: 15px; font-weight: 500; text-decoration: none; border: 1px solid rgba(255,255,255,0.2); transition: background 0.2s; }
.btn-outline:hover { background: rgba(255,255,255,0.08); }

.partners-bar { background: var(--light); padding: 20px 40px; display: flex; align-items: center; gap: 16px; border-bottom: 1px solid var(--border); }
.partners-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); white-space: nowrap; }
.partners-logos { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; }
.partner-chip { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px; color: var(--muted); cursor: pointer; transition: color 0.2s; }
.partner-chip:hover { color: var(--accent2); }

section { padding: 80px 40px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--accent2); margin-bottom: 12px; }
.section-title { font-family: 'Syne', sans-serif; font-size: clamp(28px, 3.5vw, 42px); font-weight: 700; color: var(--primary-epra); line-height: 1.15; letter-spacing: -0.5px; }

.sectors { background: var(--white); }
.sectors-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-top: 48px; }
.sector-card { background: var(--light); border-radius: 16px; padding: 28px 24px; border: 1px solid var(--border); transition: all 0.25s; cursor: pointer; text-decoration: none; color: var(--text); display: block; }
.sector-card:hover { border-color: var(--accent2); box-shadow: 0 12px 40px rgba(0,102,255,0.1); transform: translateY(-3px); }
.sector-icon { width: 48px; height: 48px; background: linear-gradient(135deg, rgba(0,102,255,0.1), rgba(0,200,255,0.1)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.sector-card h3 { font-weight: 600; font-size: 15px; line-height: 1.4; }

.solutions { background: var(--primary-epra); color: white; }
.solutions .section-title { color: white; }
.solutions .section-label { color: var(--accent); }
.solutions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; margin-top: 48px; }
.solution-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 32px 28px; transition: all 0.25s; }
.solution-card:hover { background: rgba(0,102,255,0.15); border-color: rgba(0,102,255,0.4); transform: translateY(-3px); }
.solution-card .icon { font-size: 28px; margin-bottom: 18px; }
.solution-card h3 { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 10px; color: white; }
.solution-card p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.solution-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-size: 13px; font-weight: 600; color: var(--accent); text-decoration: none; }
.solution-link:hover { color: white; }

.software { background: var(--light); }
.software-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; margin-top: 48px; }
.software-card { background: white; border-radius: 16px; padding: 28px; border: 1px solid var(--border); transition: all 0.25s; }
.software-card:hover { border-color: var(--accent2); box-shadow: 0 16px 40px rgba(0,102,255,0.08); transform: translateY(-2px); }
.sw-tag { display: inline-block; background: rgba(0,102,255,0.08); color: var(--accent2); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 4px 10px; border-radius: 100px; margin-bottom: 14px; }
.software-card h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 18px; margin-bottom: 8px; color: var(--primary-epra); }
.software-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.sw-btn { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; padding: 8px 16px; background: var(--light); border-radius: 8px; font-size: 13px; font-weight: 600; color: var(--text); text-decoration: none; transition: background 0.2s, color 0.2s; }
.sw-btn:hover { background: var(--accent2); color: white; }

.news { background: white; }
.news-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-top: 48px; }
.news-card { border-radius: 16px; overflow: hidden; border: 1px solid var(--border); transition: all 0.25s; display: flex; flex-direction: column; }
.news-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.1); transform: translateY(-3px); }
.news-img { height: 200px; background: linear-gradient(135deg, var(--primary-epra), #1a3a7a); display: flex; align-items: center; justify-content: center; font-size: 48px; }
.news-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.news-date { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.news-body h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 16px; line-height: 1.4; color: var(--primary-epra); margin-bottom: 10px; }
.news-body p { font-size: 14px; color: var(--muted); line-height: 1.6; flex: 1; }
.news-read { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 13px; font-weight: 600; color: var(--accent2); text-decoration: none; }

.stats { background: linear-gradient(135deg, var(--accent2), #0088ff); color: white; padding: 60px 40px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; max-width: 1200px; margin: 0 auto; text-align: center; }
.stat-item h2 { font-family: 'Syne', sans-serif; font-size: 52px; font-weight: 800; letter-spacing: -2px; }
.stat-item p { font-size: 14px; opacity: 0.8; margin-top: 6px; }

footer {
  background: var(--primary-red);
  /* border-top: 1px solid #222; */
  font-size: 13.5px;
  color: var(--light);

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 36px 48px 28px;
    display: flex;
    justify-content: center;
    gap: 80px;
    align-items: flex-start;
  }

  .footer-brand {
    flex: 0 0 540px;
  }

  .footer-logo {
    width: 120px;
    height: auto;
    display: block;
    margin-bottom: 16px;
  }

  .footer-tagline {
    font-size: 13px;
    line-height: 1.9;
    margin: 0 0 20px;
  }

  .footer-social {
    display: flex;
    gap: 10px;

    & svg {
      width: 16px;
      height: 16px;
    }
    & a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border: 1px solid var(--light);
      border-radius: 7px;
      text-decoration: none;
      transition: color 0.2s, border-color 0.2s;
      color: var(--light);

    }
    & a:hover {
      border-color: var(--primary-epra);
    }

  }

  .footer-links {
    flex: 0 0 auto;
    display: flex;
    gap: 64px;
  }

  .footer-col h4 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    margin: 0 0 14px;
  }

  .footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
  }

  .footer-col ul li a {
    color: var(--light);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
  }

  .footer-col ul li a:hover {
    color: var(--primary-epra);
  }

  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 48px;
    border-top: 1px solid var(--light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    flex-wrap: wrap;
    gap: 6px;
  }

  .footer-contact a {
    text-decoration: none;
    transition: color 0.2s;
    color: var(--light);
  }

  .footer-contact a:hover {
    color: var(--primary-epra);
  }
}



@media (max-width: 768px) {
nav, .topbar { padding: 0 20px; }
.hero-content, section, .stats, footer { padding: 60px 20px; }
.news-grid { grid-template-columns: 1fr; }
.stats-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
.nav-links { display: none; }
.hero-buttons { flex-direction: column; }
  .footer-brand { flex: none; }
  .footer-links { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; padding: 14px 20px; }
}


.partners-marquee {
  padding: 3rem 0;
  text-align: center;
  background-color: var(--light);
}

.partners-marquee-label {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 2rem;
  font-weight: 600;
}

.marquee-wrap {
  overflow: hidden;
  position: relative;
}

.marquee-wrap::before,
.marquee-wrap::after {
  width: 48px;
  background: unset;
}

.marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, #0a0a0a 0%, transparent 100%);
}

.marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, #0a0a0a 0%, transparent 100%);
}

.marquee-track {
  display: flex;          /* yan yana */
  flex-direction: row;    /* kesinlikle yatay */
  align-items: center;
  gap: 64px;
  width: max-content;     /* içerik kadar genişle, wrap yapma */
  animation: marquee-scroll 24s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* logo boyut sınırı */
.marquee-track img {
  height: 60px;
  width: 120px;
  max-width: 120px;
  object-fit: contain;
  flex-shrink: 0;
}

.marquee-track img:hover {
  opacity: 1;
  filter: grayscale(0);
}

.logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-tip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.75);
  color: var(--light);
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  padding: 4px 10px;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
}

.logo-wrap:hover .logo-tip {
  opacity: 1;
}


.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.social-links-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  margin-right: 8px;
}

.social-link {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s;
}
.social-link:hover { background: rgba(255,255,255,0.2); }
.social-link svg { width: 13px; height: 13px; fill: rgba(255,255,255,0.75); display: block; }

/* İÇERİK */
.about-content {
  width: 100%;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.about-wave-bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.about-content-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* SOL */
.about-left { padding: 64px 60px; }

.about-text-block { margin-bottom: 44px; }
.about-text-block:last-child { margin-bottom: 0; }

.about-text-block h2 {
  font-size: 19px;
  font-weight: 700;
  color: #0b1a3e;
  margin: 0 0 10px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid #dde2ef;
}

.about-text-block p {
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.85;
  color: #1a1d2c;
  margin-top: 10px;
}

/* SAĞ */
.about-right {
  padding: 64px 60px 64px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.partners-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a90a8;
  text-align: right;
  margin-bottom: 12px;
}

.partner-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.partner-logo-box {
  background: var(--light);
  border: 1px solid #dde2ef;
  border-radius: 8px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9.5px;
  font-weight: 700;
  color: #1a2a5e;
  letter-spacing: 0.03em;
  padding: 0 6px;
  text-align: center;
}

.stats-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 14px;
  padding: 20px 10px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.stat-row:hover {
  transform: translateY(-5px);
}

.stat-icon {
  margin-bottom: 10px;
  opacity: 0.7;
}

.stat-num {
  font-size: 28px;
  font-weight: 800;
  color: #111;
}

.stat-label {
  font-size: 13px;
  opacity: 0.7;
}
@media (max-width: 900px) {
  .about-content-inner { grid-template-columns: 1fr; }
  .about-left, .about-right { padding: 40px 24px; }
  .partner-logos-grid { grid-template-columns: repeat(2, 1fr); }
}

        :root {
        --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        --color-text-primary: #1A1A1B;
        --color-text-secondary: #4A4A4A;
        --color-text-tertiary: #8E8E93;
        --color-background-primary: #FFFFFF;
        --color-background-secondary: #F8F9FA;
        --color-border-secondary: #E5E5E7;
        --color-border-tertiary: #F2F2F2;
        --border-radius-md: 8px;
        --border-radius-lg: 12px;
        --brand-orange: #D85A30;
        --brand-orange-light: #FAECE7;
        --brand-orange-dark: #993C1D;
    }

    .faq-wrap {
        font-family: var(--font-sans);
        max-width: 820px;
        margin: 0 auto;
        padding: 4rem 1.5rem;
    }

    .faq-hero {
        text-align: center;
        margin-bottom: 3rem;
    }

    .faq-pill {
        display: inline-block;
        font-size: 18px;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--brand-orange-dark);
        background: var(--brand-orange-light);
        padding: 6px 16px;
        border-radius: 999px;
        margin-bottom: 1.25rem;
    }

    .faq-hero h1 {
        font-size: 28px;
        font-weight: 600;
        color: var(--color-text-primary);
        margin-bottom: 0.75rem;
        letter-spacing: -0.02em;
    }

    .faq-hero p {
        font-size: 15px;
        color: var(--color-text-secondary);
        max-width: 500px;
        margin: 0 auto;
    }

    /* Arama Bölümü */
    .search-wrap {
        position: relative;
        margin-bottom: 1.5rem;
    }

    .search-icon {
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        width: 16px;
        height: 16px;
        stroke: var(--color-text-tertiary);
        fill: none;
        stroke-width: 2;
    }

    .search-input {
        width: 100%;
        padding: 12px 14px 12px 42px;
        font-size: 14px;
        border: 1px solid var(--color-border-secondary);
        border-radius: var(--border-radius-md);
        background: var(--color-background-primary);
        color: var(--color-text-primary);
        outline: none;
        transition: all 0.2s;
        box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    }

    .search-input:focus {
        border-color: var(--brand-orange);
        box-shadow: 0 0 0 3px rgba(216, 90, 48, 0.1);
    }

    /* Filtreler */
    .faq-filters {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 2.5rem;
    }

    .filter-btn {
        font-size: 13px;
        font-weight: 500;
        padding: 8px 18px;
        border-radius: 999px;
        border: 1px solid var(--color-border-secondary);
        background: var(--color-background-primary);
        color: var(--color-text-secondary);
        cursor: pointer;
        transition: all 0.2s;
    }

    .filter-btn:hover, .filter-btn.active {
        background: var(--brand-orange-light);
        border-color: #F0997B;
        color: var(--brand-orange-dark);
    }

    /* FAQ Kartları */
    .faq-grid {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .faq-item {
        background: var(--color-background-primary);
        border: 1px solid var(--color-border-tertiary);
        border-radius: var(--border-radius-lg);
        overflow: hidden;
        transition: all 0.2s ease;
    }

    .faq-item:hover {
        border-color: #F0997B;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    }

    .faq-item.open {
        border-color: var(--brand-orange);
        box-shadow: 0 10px 25px rgba(216, 90, 48, 0.08);
    }

    .faq-btn {
        width: 100%;
        background: none;
        border: none;
        padding: 1.25rem;
        display: flex;
        align-items: flex-start;
        gap: 16px;
        cursor: pointer;
        text-align: left;
    }

    .faq-num {
        font-size: 12px;
        font-weight: 600;
        color: var(--color-text-tertiary);
        min-width: 24px;
        padding-top: 3px;
        flex-shrink: 0;
    }

    .faq-item.open .faq-num { color: var(--brand-orange); }

    .faq-q-wrap { flex: 1; }

    .faq-q {
        font-size: 15px;
        font-weight: 600;
        color: var(--color-text-primary);
        line-height: 1.4;
        margin-bottom: 8px;
    }

    .faq-item.open .faq-q { color: var(--brand-orange-dark); }

    .tag-row { display: flex; gap: 6px; flex-wrap: wrap; }

    .tag {
        font-size: 10px;
        font-weight: 600;
        padding: 4px 10px;
        border-radius: 6px;
        background: var(--color-background-secondary);
        color: var(--color-text-secondary);
        text-transform: uppercase;
        letter-spacing: 0.02em;
    }

    .faq-item.open .tag {
        background: var(--brand-orange-light);
        color: var(--brand-orange-dark);
    }

    .chevron {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: var(--color-background-secondary);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: all 0.2s;
    }

    .chevron svg {
        width: 12px;
        height: 12px;
        stroke: var(--color-text-tertiary);
        fill: none;
        stroke-width: 2.5;
        transition: transform 0.3s;
    }

    .faq-item.open .chevron { background: var(--brand-orange-light); }
    .faq-item.open .chevron svg { transform: rotate(180deg); stroke: var(--brand-orange); }

    /* Cevap Alanı */
    .faq-body {
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        padding: 0 1.25rem 0 4rem;
        opacity: 0;
    }

    .faq-item.open .faq-body {
        max-height: 500px;
        padding-bottom: 1.5rem;
        opacity: 1;
    }

    .faq-divider {
        height: 1px;
        background: var(--color-border-tertiary);
        margin-bottom: 1.25rem;
    }

    .faq-answer {
        font-size: 14px;
        line-height: 1.8;
        color: var(--color-text-secondary);
    }

    .faq-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        font-weight: 600;
        color: var(--brand-orange);
        text-decoration: none;
        margin-top: 15px;
    }

    .count-bar {
        margin-bottom: 1rem;
        font-size: 12px;
        color: var(--color-text-tertiary);
        font-weight: 500;
    }

    .faq-empty {
        text-align: center;
        padding: 4rem 0;
        color: var(--color-text-tertiary);
        display: none;
    }

    .about-content-inner {
  display: flex;
  gap: 60px;
}

    .about-left {
    flex: 1;
    }

    .about-right {
    flex: 1;
    position: relative;
    }

    /* Harita */
    .turkey-map {
    position: relative;
    width: 100%;
    max-width: 500px;
    }

    .turkey-map img {
    width: 100%;
    opacity: 0.9;
    }

    /* Marker genel */
    .marker {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #f5c842;
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    }

    /* Pulse efekti */
    .marker::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(245, 200, 66, 0.5);
    animation: pulse 1.8s infinite;
    }

    @keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
    }

    /* Tooltip */
    .marker::before {
    content: attr(data-city);
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #1d2c57;
    color: white;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 6px;
    opacity: 0;
    white-space: nowrap;
    transition: 0.3s;
    pointer-events: none;
    }

    .marker:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    }


    .marker.ankara { top: 48%; left: 58%; }
    .marker.istanbul { top: 28%; left: 38%; }
    .marker.izmir { top: 55%; left: 10%; }
    .marker.antalya { top: 72%; left: 50%; }



.coming-soon-wrap {
  position: relative;
}
 
.coming-soon-wrap > a {
  cursor: default;
}
 
.coming-soon-tooltip {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #1a1a1a;
  color: #ccc;
  font-size: 11.5px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  border: 1px solid #333;
  z-index: 100;
}
 
.coming-soon-tooltip::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-bottom-color: #333;
}
 
.coming-soon-wrap:hover .coming-soon-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(8px);
}