/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Roboto', sans-serif; color: #1a1a1a; background: #fff; line-height: 1; }
img { display: block; }
button { cursor: pointer; font-family: 'Roboto', sans-serif; }
a { text-decoration: none; color: inherit; }

/* ── Announcement Bar ── */
.announcement-bar {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 9px 20px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.8px;
}

/* ── Navbar ── */
.navbar {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: 84px;
}

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 40px;
}

.nav-logo img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 34px;
    margin: 0 auto;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
}

.nav-links a.active,
.nav-links li.current-menu-item > a,
.nav-links li.current_page_item > a {
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-thickness: 1.5px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-social a {
    font-size: 15px;
    color: #fff;
}

.btn-nav {
    background: #fff;
    color: #000;
    border: none;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    transition: opacity 0.2s ease;
}

.btn-nav:hover { opacity: 0.8; }

.mobile-iletisim {
    display: inline-block;
    margin-top: 8px;
    background: #fff;
    color: #000 !important;
    padding: 13px 28px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-bottom: none !important;
}

/* ── Hamburger Button ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Menu ── */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 199;
    background: #fff;
    padding: 130px 32px 40px;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu a.active { color: #673de6; }

.mobile-menu-social {
    display: flex;
    gap: 20px;
    margin-top: 32px;
}

.mobile-menu-social a {
    font-size: 20px;
    border-bottom: none;
    padding: 0;
    color: #555;
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: -84px;
    padding-top: 84px;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 40px;
    max-width: 820px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2d9fb;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 24px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.hero h1 {
    font-size: 68px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 42px;
    max-width: 680px;
}

.hero-subtitle p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 21px;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: -0.3px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-features {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 14px 32px;
    border-radius: 100px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-features span {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.2px;
}

.hero-features .feature-dot { color: rgba(255, 255, 255, 0.3); font-size: 12px; }
.hero-features i { color: #b39ef3; }

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: nowrap;
}

.btn-hero-outline {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 36px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.btn-hero-outline:hover { background: rgba(255, 255, 255, 0.15); transform: translateY(-2px); }

.btn-hero-dark {
    display: inline-block;
    background: #fff;
    color: #000;
    border: none;
    padding: 16px 36px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255,255,255,0.2);
}

.btn-hero-dark:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(255,255,255,0.3); }

/* ── Page Header (blog/inner pages) ── */
.page-header {
    position: relative;
    background: #f8f7ff;
    padding: 80px 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.page-header .hero-overlay { background: none; }
.page-header h1 { font-size: 40px; font-weight: 700; color: #1a1a1a; }
.page-header .hero-subtitle p { color: #727586; font-size: 17px; text-shadow: none; }
.page-header .hero-badge { background: rgba(103,61,230,0.08); border-color: rgba(103,61,230,0.15); color: #673de6; }

/* ── Shared section layout ── */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section-header { margin-bottom: 48px; }
.section-header h2 { font-size: 32px; font-weight: 700; color: #1a1a1a; margin-bottom: 8px; }
.section-header p { font-size: 15px; color: #727586; }

/* ── Services ── */
.services-section { padding: 72px 0; background: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { border: 1px solid #e8e8ee; border-radius: 10px; padding: 32px 28px; transition: box-shadow 0.25s, border-color 0.25s; }
.service-card:hover { box-shadow: 0 8px 28px rgba(103,61,230,0.10); border-color: #c4b0f5; }
.service-icon { width: 52px; height: 52px; background: #ebe4ff; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: #673de6; margin-bottom: 18px; }
.service-card h3 { font-size: 17px; font-weight: 700; color: #1a1a1a; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: #727586; line-height: 1.7; }

/* ── Blog ── */
.blog-section { padding: 60px 48px 80px; max-width: 1200px; margin: 0 auto; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 52px; }

.blog-card { border: 1px solid #e8e8ee; border-radius: 12px; overflow: hidden; transition: box-shadow 0.25s, transform 0.25s; }
.blog-card:hover { box-shadow: 0 12px 32px rgba(103,61,230,0.10); transform: translateY(-3px); }

.blog-card-img { aspect-ratio: 16 / 9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; display: block; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }

.blog-card-body { padding: 22px 22px 24px; }
.blog-card-category { display: inline-block; background: #ebe4ff; color: #673de6; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; padding: 4px 12px; border-radius: 20px; margin-bottom: 12px; text-transform: uppercase; }
.blog-card-title { font-size: 18px; font-weight: 700; color: #1a1a1a; line-height: 1.4; margin-bottom: 10px; }
.blog-card-title a { color: inherit; }
.blog-card-title a:hover { color: #673de6; }
.blog-card-excerpt { font-size: 14px; color: #727586; line-height: 1.65; margin-bottom: 16px; }
.blog-card-meta { display: flex; gap: 18px; font-size: 12.5px; color: #aaa; }
.blog-card-meta i { margin-right: 5px; }

/* ── Blog pagination ── */
.blog-section .pagination { display: flex; justify-content: center; gap: 6px; }
.blog-section .pagination .page-numbers {
    min-width: 38px; height: 38px; padding: 0 10px;
    border-radius: 8px; border: 1px solid #e8e8ee;
    background: #fff; color: #1a1a1a; font-size: 14px;
    display: inline-flex; align-items: center; justify-content: center;
    transition: all 0.16s;
}
.blog-section .pagination .page-numbers:hover { border-color: #673de6; color: #673de6; }
.blog-section .pagination .page-numbers.current { background: #673de6; border-color: #673de6; color: #fff; font-weight: 700; }

/* ── Shared buttons ── */
.btn-outline {
    background: transparent;
    color: #1a1a1a;
    border: 1.5px solid #1a1a1a;
    padding: 11px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.btn-outline:hover { background: #1a1a1a; color: #fff; }

/* ── Footer ── */
footer { background: #f5f5f7; color: #515154; padding: 60px 48px 30px; border-top: 1px solid #d2d2d7; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 64px; margin-bottom: 36px; }
.footer-col-title { font-size: 17px; font-weight: 600; color: #1d1d1f; margin-bottom: 12px; letter-spacing: -0.01em; }
.footer-col-heading { font-size: 12px; font-weight: 600; color: #1d1d1f; margin-bottom: 16px; letter-spacing: 0.02em; text-transform: uppercase; }
.footer-col p { font-size: 13px; color: #515154; line-height: 1.5; margin-bottom: 24px; font-weight: 400; }
.footer-social { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 30px; }
.footer-social a { color: #86868b; font-size: 18px; transition: color 0.2s ease; }
.footer-social a:hover { color: #1d1d1f; }
.footer-contact-item { font-size: 13px; color: #515154; margin-bottom: 10px; display: flex; align-items: center; text-decoration: none; transition: color 0.2s ease; }
.footer-contact-item i { width: 16px; margin-right: 8px; color: #86868b; text-align: center; }
.footer-contact-item:hover { color: #1d1d1f; }
.footer-bottom { border-top: 1px solid #d2d2d7; padding-top: 20px; font-size: 12px; color: #86868b; display: flex; justify-content: space-between; align-items: center; }

/* ── Cookie Consent ── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #1c1c2e;
    color: #ccc;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-size: 13.5px;
    line-height: 1.6;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.25);
}

.cookie-banner.hidden { display: none; }
.cookie-banner a { color: #b39ef3; text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }

.btn-cookie-accept {
    background: #673de6;
    color: #fff;
    border: none;
    padding: 9px 22px;
    border-radius: 4px;
    font-size: 13.5px;
    font-weight: 600;
    white-space: nowrap;
}

.btn-cookie-decline {
    background: transparent;
    color: #aaa;
    border: 1px solid #555;
    padding: 9px 18px;
    border-radius: 4px;
    font-size: 13.5px;
    font-weight: 500;
    white-space: nowrap;
}

/* ── Responsive: ≤ 920px ── */
@media (max-width: 920px) {
    .hamburger { display: flex; }
    .nav-links  { display: none; }
    .nav-right  { display: none; }
    .navbar-inner { padding: 0 20px; }

    .hero { margin-top: -84px; }
    .hero-content { padding: 50px 24px; max-width: 100%; }
    .hero h1 { font-size: 42px; letter-spacing: -1px; }
    .hero-subtitle p { font-size: 17px; }
    .hero-features { flex-direction: column; gap: 12px; border-radius: 20px; padding: 20px; width: 100%; align-items: flex-start; }
    .hero-features .feature-dot { display: none; }
    .hero-buttons { flex-wrap: wrap; gap: 10px; width: 100%; justify-content: center; }
    .btn-hero-outline, .btn-hero-dark { width: 100%; text-align: center; }

    .section-inner { padding: 0 24px; }
    .services-section { padding: 48px 0; }
    .services-grid { grid-template-columns: 1fr 1fr; }

    .blog-section { padding: 40px 24px 60px; }
    .blog-grid { grid-template-columns: 1fr 1fr; gap: 20px; }

    footer { padding: 40px 24px 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ── Responsive: ≤ 600px ── */
@media (max-width: 600px) {
    .announcement-bar { font-size: 11px; letter-spacing: 0.3px; }
    .hero h1 { font-size: 36px; }
    .services-grid { grid-template-columns: 1fr; }

    .blog-grid { grid-template-columns: 1fr; }
    .cookie-banner { flex-direction: column; align-items: flex-start; padding: 20px 20px 24px; }
}
