/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #000000;
    overflow-x: hidden;
    /* Global top padding to account for fixed navbar height */
    padding-top: var(--navbar-h, 80px);
    /* Reduce font swap-induced CLS in fallback scenarios */
    font-size-adjust: 0.5;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body.no-navbar {
    padding-top: 0;
}

/* Fluid media defaults */
img,
svg {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1240px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
    display: block !important;
}

@media (max-width: 991px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .brand-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .brand-logo {
        width: 56px;
        height: 56px;
    }
}

/* Global layout variables */
:root {
    --navbar-h: 80px;
}

@media (max-width: 768px) {
    :root {
        --navbar-h: 72px;
    }
}

@media (max-width: 480px) {
    :root {
        --navbar-h: 64px;
    }
}

.captcha-block {
    margin-top: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 12px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.captcha-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.captcha-title {
    font-weight: 600;
    color: #fff;
}

.captcha-reload {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 8px 12px;
    cursor: pointer;
}

.captcha-reload:hover {
    border-color: #fff;
}

.captcha-reload i {
    transition: transform 0.3s ease;
}

.captcha-reload.spin i {
    transform: rotate(360deg);
}

.captcha-svg {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    overflow: hidden;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    -webkit-pointer-events: none;
    -moz-pointer-events: none;
}

.captcha-input-group {
    margin-top: 10px;
}

.captcha-input {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    -webkit-touch-callout: none;
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.captcha-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.captcha-help {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
}

.nav-logo i {
    margin-right: 10px;
    color: #ffffff;
    font-size: 1.8rem;
}

/* SVG Logo image sizing */
.nav-logo img,
.nav-logo .logo-img {
    height: 36px;
    width: auto;
    display: block;
}

.footer .footer-logo img,
.footer .footer-logo .footer-logo-img {
    height: 24px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    object-fit: contain;
}

@media (min-width: 768px) {

    .footer .footer-logo img,
    .footer .footer-logo .footer-logo-img {
        height: 32px;
    }
}

@media (max-width: 768px) {

    .nav-logo img,
    .nav-logo .logo-img {
        height: 32px;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

@media (max-width: 991px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: var(--navbar-h);
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 2rem 0;
        z-index: 999;
        height: calc(100vh - var(--navbar-h));
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #cccccc;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Reserve space for blog author avatars to prevent CLS */
.author-box .author-avatar {
    width: 60px;
    height: 60px;
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

/* Hero Section */
.hero {
    /* Compensate for fixed navbar: maintain full viewport without extra scroll */
    min-height: calc(100vh - var(--navbar-h));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(ellipse at center, #111111 0%, #000000 100%);
    overflow: hidden;
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20px 30px, #ffffff, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #ffffff, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(2px 2px at 160px 30px, #ffffff, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: twinkle 20s linear infinite;
}

@keyframes twinkle {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100px);
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    z-index: 2;
    position: relative;
}

.astronaut-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 2rem;
    color: #cccccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-slogan {
    margin-bottom: 3rem;
}

.hashtag {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-sizing: border-box;
}

.cta-primary {
    background: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
}

/* Error Page (404) */
.error-page {
    padding: 80px 0;
    /* header yok, dikey nefes alanı */
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.error-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.error-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    animation: float 6s ease-in-out infinite;
}

.error-code {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 6px;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.error-message {
    font-size: 1.1rem;
    color: #cccccc;
    margin: 0 auto 2rem;
    max-width: 700px;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.helpful-links h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.helpful-links ul {
    list-style: none;
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.helpful-links a {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
}

.helpful-links a:hover {
    color: #cccccc;
    border-bottom-color: rgba(255, 255, 255, 0.7);
}

.cta-primary:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
}

.cta-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-secondary:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-header p {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: #111111;
}

.focus-sectors-line {
    margin-top: 1rem;
    text-align: center;
}

.focus-sectors-line span {
    font-size: 0.9rem;
    color: #cccccc;
    font-style: italic;
    opacity: 0.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
    /* tüm kartlar aynı yükseklikte olur */
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
    /* grid hücresini tamamen doldur */
    transition: all 0.3s ease;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: 100%;
    /* eşit yükseklik için */
    display: flex;
    flex-direction: column;
}

.service-card.hover {
    transform: translateY(-15px) scale(1.02);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-card ul {
    list-style: none;
    margin-top: auto;
    /* içeriği dengeleyerek kart yüksekliğini sabit tut */
}

.service-card li {
    color: #cccccc;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.service-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ffffff;
}

/* Investors Section */
.investors {
    background: #111111;
    padding: 5rem 0;
}

.investors-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.investor-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.investor-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    color: inherit;
}

.investor-card i {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.investor-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.investor-card p {
    color: #cccccc;
}

/* Brands, Team, Blog Sections */
.brands,
.team,
.blog {
    background: #111111;
}

.brands:nth-child(even),
.team:nth-child(even),
.blog:nth-child(even) {
    background: #000000;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: start;
    position: relative;
    overflow: visible;
}

.brands .container {
    max-width: 1500px;
}

.brand-grid::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20px 30px, #ffffff, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #ffffff, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(2px 2px at 160px 30px, #ffffff, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: twinkle-grid 24s linear infinite;
    opacity: 0.25;
    pointer-events: none;
}

@keyframes twinkle-grid {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-120px);
    }
}

.brand-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.06);
    position: relative;
    min-height: 160px;
}

.brand-card::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 12px;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 40%, rgba(255, 255, 255, 0.02) 60%, transparent 80%);
    filter: blur(4px);
    z-index: 0;
    pointer-events: none;
}

.brand-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 36px rgba(255, 255, 255, 0.1);
}

.brand-logo {
    width: clamp(80px, 18vw, 112px);
    height: clamp(80px, 18vw, 112px);
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    padding: 12px;
}

.brand-name {
    color: #ffffff;
    font-weight: 600;
    font-size: clamp(1.1rem, 3.8vw, 1.25rem);
    text-align: center;
    word-break: keep-all;
    overflow-wrap: normal;
}

.brand-name.domain {
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .brand-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
    }

    .brand-card,
    .brand-card:hover {
        transform: none !important;
    }

    .brand-logo {
        animation: none !important;
    }

    .brand-grid::before {
        animation: none !important;
    }

    .brand-card {
        min-height: 160px;
    }

    .brand-name {
        overflow-wrap: normal !important;
        word-break: keep-all !important;
    }

    .brand-card::before {
        animation: none !important;
    }

    .brand-card {
        contain: paint;
    }
}

@media (max-width: 768px) {
    .brand-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
    }

    .brand-card {
        min-height: 160px;
        padding: 20px;
    }
}

/* Irregular arrangement for space effect */
.brand-card:nth-child(1) {
    transform: translateY(-2px);
}

.brand-card:nth-child(2) {
    transform: translateY(2px);
}

.brand-card:nth-child(3) {
    transform: translateY(-3px);
}

.brand-card:nth-child(4) {
    transform: translateY(3px);
}

.brand-card:nth-child(5) {
    transform: translateY(-2px);
}

.brand-card:nth-child(6) {
    transform: translateY(2px);
}

.brand-card:nth-child(7) {
    transform: translateY(-3px);
}

.brand-card:nth-child(8) {
    transform: translateY(3px);
}

.brand-placeholder,
.blog-placeholder {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
}

.brand-placeholder i,
.blog-placeholder i {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.brand-placeholder h3,
.blog-placeholder h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.brand-placeholder p,
.blog-placeholder p {
    color: #cccccc;
    font-size: 1.1rem;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: block;
    text-decoration: none;
    color: inherit;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.team-photo.brand {
    width: 64px;
    height: 64px;
    border-radius: 12px;
}

.team-photo.brand img {
    border-radius: 12px;
}

.break-word {
    word-break: break-word;
}

.brand-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 10px;
}

.brand-edit-form {
    display: inline-flex;
    gap: 8px;
}

.brand-input-name {
    max-width: 160px;
}

.brand-input-logo {
    max-width: 200px;
}

.brand-input-url {
    max-width: 220px;
}

.team-card:hover .team-photo {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.team-photo i {
    font-size: 3rem;
    color: #ffffff;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.team-role {
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.team-company {
    font-size: 1rem;
    color: #cccccc;
    font-style: italic;
}

/* Contact Section */
.contact {
    background: #000000;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 2rem;
    color: #ffffff;
    width: 50px;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.contact-item p {
    color: #cccccc;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #cccccc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn.state-success {
    background: #4CAF50;
}

.submit-btn.state-error {
    background: #f44336;
}

.submit-btn:hover {
    background: #cccccc;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #111111;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    gap: 8px;
}

.footer-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.footer-slogan {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #ffffff;
    color: #111111;
    transform: translateY(-2px);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #cccccc;
}

/* Footer placeholder reservation to avoid CLS during JS injection */
footer.footer[data-include="footer"] {
    display: block;
    min-height: 380px;
    /* desktop approximate */
    background: #111111;
    /* match final footer bg to avoid flicker */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    footer.footer[data-include="footer"] {
        min-height: 460px;
        /* stacked columns often taller on tablet */
    }
}

@media (max-width: 480px) {
    footer.footer[data-include="footer"] {
        min-height: 520px;
        /* mobile reserve: grid stacks increase height */
    }
}

/* Blog Index and Article Pages */
.blog-page {
    background: #111111;
}

.blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 16px 32px rgba(255, 255, 255, 0.08);
}

.blog-card h2,
.blog-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.blog-card a {
    color: #ffffff;
    text-decoration: none;
}

.blog-card a:hover {
    color: #cccccc;
    text-decoration: underline;
}

.blog-excerpt {
    color: #cccccc;
    margin-bottom: 0.75rem;
}

.blog-meta {
    color: #aaaaaa;
    font-size: 0.9rem;
}

.blog-more {
    margin-top: 1rem;
}

.blog-more .button {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 10px;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-more .button:hover {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    transform: translateY(-2px);
}

/* Blog filter tabs */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 1rem 0 2rem;
}

.filter-tab {
    padding: 8px 14px;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-tab:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

.filter-tab.active {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.filter-tab:focus {
    outline: 2px solid #ffffff66;
    outline-offset: 2px;
}

/* Utility */
.hidden {
    display: none !important;
}

.article-page {
    background: #111111;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
}

.article-content h2 {
    font-size: 1.6rem;
    margin: 1.5rem 0 0.75rem;
}

.article-content p {
    color: #cccccc;
}

.article-content ul {
    margin-left: 1.2rem;
    list-style: disc;
}

.article-content li {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

/* Article meta and tags */
.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin: 16px 0 24px;
    flex-wrap: wrap;
}

.author-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    object-fit: contain;
}

.author-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.author-name {
    font-weight: 600;
}

.author-role {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

.tag-badges {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tag-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    backdrop-filter: saturate(120%) blur(6px);
}

.blog-card .tag-badges {
    margin-top: 8px;
}

@media (max-width: 1024px) {

    /* Stabilize ADA İstasyonu grid on tablet/mobile */
    .brand-card,
    .brand-card:hover {
        transform: none !important;
    }

    .brand-card:nth-child(1),
    .brand-card:nth-child(2),
    .brand-card:nth-child(3),
    .brand-card:nth-child(4),
    .brand-card:nth-child(5),
    .brand-card:nth-child(6),
    .brand-card:nth-child(7),
    .brand-card:nth-child(8) {
        transform: none !important;
    }

    .brand-logo {
        animation: none !important;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 25px;
    }

    .nav-container {
        padding: 0 25px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    /* Blog responsive styles for tablet */
    .blog-list {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.8rem;
    }

    .blog-card {
        padding: 1.8rem;
    }

    .filter-tabs {
        gap: 10px;
    }

    .filter-tab {
        padding: 7px 13px;
        font-size: 0.95rem;
    }

    /* Contact form responsive styles for tablet */
    .contact-form {
        padding: 2.5rem;
    }

    .form-row {
        gap: 1.2rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 13px;
    }
}

@media (max-width: 640px) {
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: all 0.3s ease;
        backdrop-filter: blur(15px);
        padding: 120px 0 2rem 0;
        z-index: 1000;
        justify-content: flex-start;
        gap: 2rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-menu.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-menu.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-menu.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-menu a {
        font-size: 1.5rem;
        padding: 1rem;
        display: block;
    }

    .hero {
        padding: 0 15px;
        min-height: 100vh;
    }

    .hero-container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }

    .hashtag {
        font-size: 1.5rem;
        padding: 8px 16px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 12px 20px;
        display: block;
        margin: 0 10px;
        line-height: 1.4;
        overflow-wrap: break-word;
        word-break: break-word;
        box-sizing: border-box;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-social {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .investors-content {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    /* Blog responsive styles */
    .blog-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-card {
        padding: 1.5rem;
        margin: 0 10px;
    }

    .blog-card h2,
    .blog-card h3 {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .filter-tabs {
        gap: 8px;
        margin: 1rem 0 1.5rem;
    }

    .filter-tab {
        padding: 6px 12px;
        font-size: 0.9rem;
    }

    .article-content {
        padding: 1.5rem;
        margin: 0 10px;
    }

    .article-content h2 {
        font-size: 1.5rem;
    }

    /* Contact form responsive styles */
    .contact-form {
        padding: 2rem;
        margin: 0 10px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 0.95rem;
    }

    .form-group.error input,
    .form-group.error select,
    .form-group.error textarea {
        border-color: #f44336;
        box-shadow: 0 0 0 2px rgba(244, 67, 54, 0.15);
    }

    .form-error {
        color: #f44336;
        font-size: 0.85rem;
        margin-top: 6px;
    }

    .contact-form-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .submit-btn {
        padding: 15px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 0 10px;
    }

    .hero-container {
        padding: 0 10px;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 5px;
    }

    .hashtag {
        font-size: 1.2rem;
        padding: 6px 12px;
    }

    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .astronaut-icon {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .service-card,
    .investor-card,
    .contact-form {
        padding: 1.2rem;
        margin: 0 5px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 5px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .nav-menu a {
        font-size: 1.3rem;
        padding: 0.8rem;
    }

    .cta-primary,
    .cta-secondary {
        font-size: 1rem;
        padding: 12px 18px;
        width: 100%;
        max-width: 100%;
        display: block;
        margin: 0 10px;
        line-height: 1.4;
        overflow-wrap: break-word;
        word-break: break-word;
        box-sizing: border-box;
    }

    /* Blog responsive styles for mobile */
    .blog-card {
        padding: 1.2rem;
        margin: 0 5px;
    }

    .blog-card h2,
    .blog-card h3 {
        font-size: 1.2rem;
        line-height: 1.2;
    }

    .blog-excerpt {
        font-size: 0.9rem;
    }

    .filter-tabs {
        gap: 6px;
        margin: 0.8rem 0 1.2rem;
    }

    .filter-tab {
        padding: 5px 10px;
        font-size: 0.8rem;
    }

    .article-content {
        padding: 1.2rem;
        margin: 0 5px;
    }

    .article-content h2 {
        font-size: 1.3rem;
    }

    .article-content p {
        font-size: 0.95rem;
    }

    /* Contact form responsive styles for mobile */
    .contact-form {
        padding: 1.5rem;
        margin: 0 5px;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 0.9rem;
    }

    .contact-form-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }

    .submit-btn {
        padding: 12px;
        font-size: 0.95rem;
    }

    .form-group label {
        font-size: 0.85rem;
    }
}

/* iPhone SE and very small screens (375px and below) */
@media (max-width: 375px) {

    /* Header optimization for small screens */
    .navbar {
        padding: 0.5rem 0;
    }

    .nav-container {
        padding: 0 10px;
    }

    .nav-logo {
        font-size: 1.2rem;
    }

    .nav-logo img,
    .nav-logo .logo-img {
        height: 28px;
    }

    /* Hero section optimization */
    .hero {
        min-height: 100vh;
        height: auto;
        padding: 80px 0 40px;
    }

    .hero-container {
        padding: 0 10px;
    }

    .astronaut-icon {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 1.2rem;
        padding: 0 5px;
    }

    .hashtag {
        font-size: 0.8rem;
        padding: 4px 8px;
        margin: 0 2px 1.2rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
        margin-top: 1.5rem;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 100%;
        padding: 12px 18px;
        font-size: 0.95rem;
        text-align: center;
        display: block;
        margin: 0 8px;
        line-height: 1.4;
        overflow-wrap: break-word;
        word-break: break-word;
        box-sizing: border-box;
    }

    /* Navigation menu for very small screens */
    .nav-menu a {
        font-size: 1.2rem;
        padding: 0.6rem;
    }

    /* General spacing adjustments */
    .container {
        padding: 0 10px;
    }

    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .section-header p {
        font-size: 0.9rem;
        padding: 0 5px;
    }

    /* Services grid for very small screens */
    .services-grid {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .service-card {
        padding: 1.2rem;
        margin: 0 5px;
    }

    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .service-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* Footer adjustments */
    .footer-content {
        padding: 2rem 10px 1rem;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    /* Blog responsive styles for very small screens */
    .blog-card {
        padding: 1rem;
        margin: 0 5px;
    }

    .blog-card h2,
    .blog-card h3 {
        font-size: 1.1rem;
        line-height: 1.2;
        margin-bottom: 0.6rem;
    }

    .blog-excerpt {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .filter-tabs {
        gap: 4px;
        margin: 0.6rem 0 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .filter-tab {
        padding: 4px 8px;
        font-size: 0.75rem;
        min-width: auto;
    }

    .article-content {
        padding: 1rem;
        margin: 0 5px;
    }

    .article-content h2 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .article-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Contact form responsive styles for very small screens */
    .contact-form {
        padding: 1.2rem;
        margin: 0 5px;
    }

    .contact-form-section h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .form-group {
        margin-bottom: 0.8rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 8px;
        font-size: 0.85rem;
    }

    .form-group label {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }

    .submit-btn {
        padding: 10px;
        font-size: 0.9rem;
    }

    .form-group textarea {
        min-height: 100px;
    }
}

/* Ultra small screens (320px and below) - iPhone 5/SE 1st gen */
@media (max-width: 320px) {

    /* Ultra compact header */
    .navbar {
        padding: 0.4rem 0;
    }

    .nav-container {
        padding: 0 8px;
    }

    .nav-logo {
        font-size: 1.1rem;
    }

    .nav-logo img,
    .nav-logo .logo-img {
        height: 24px;
    }

    /* Ultra compact hero section */
    .hero {
        padding: 70px 0 30px;
    }

    .hero-container {
        padding: 0 8px;
    }

    .astronaut-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 0.6rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        padding: 0;
    }

    .hashtag {
        font-size: 0.7rem;
        padding: 3px 6px;
        margin: 0 1px 1rem;
    }

    .hero-cta {
        gap: 0.6rem;
        margin-top: 1.2rem;
    }

    .cta-primary,
    .cta-secondary {
        max-width: 260px;
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    /* Ultra compact general elements */
    .container {
        padding: 0 8px;
    }

    .section-header h2 {
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
    }

    .section-header p {
        font-size: 0.85rem;
        padding: 0;
    }

    .service-card {
        padding: 1rem;
        margin: 0;
    }

    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .service-card p {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    /* Ultra compact blog */
    .blog-card {
        padding: 0.8rem;
        margin: 0;
    }

    .blog-card h2,
    .blog-card h3 {
        font-size: 1rem;
        line-height: 1.1;
        margin-bottom: 0.5rem;
    }

    .blog-excerpt {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .filter-tab {
        padding: 3px 6px;
        font-size: 0.7rem;
    }

    /* Ultra compact contact form */
    .contact-form {
        padding: 1rem;
        margin: 0;
    }

    .contact-form-section h2 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .form-group {
        margin-bottom: 0.6rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 6px;
        font-size: 0.8rem;
    }

    .form-group label {
        font-size: 0.75rem;
        margin-bottom: 0.2rem;
    }

    .submit-btn {
        padding: 8px;
        font-size: 0.85rem;
    }

    .form-group textarea {
        min-height: 80px;
    }

    /* Ultra compact footer */
    .footer-content {
        padding: 1.5rem 8px 0.8rem;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
}

/* Privacy Policy Styles */
.privacy-policy {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: 100vh;
}

/* About Page Styles */
.about-page {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: 100vh;
}

@media (max-width: 768px) {
    .about-page {
        padding: 4rem 0 2rem;
    }
}

.policy-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.policy-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    font-style: italic;
    margin: 0;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-section:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
}

.policy-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid #ffffff;
}

.policy-section p {
    color: #bbbbbb;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    text-align: left;
    font-size: 1.05rem;
}

.policy-section a {
    color: #ffffff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.policy-section a:hover {
    color: #cccccc;
}

.rights-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.rights-list li {
    color: #bbbbbb;
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.8;
    font-size: 1.02rem;
}

.rights-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.1rem;
}

.policy-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.policy-footer p {
    color: #bbbbbb;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

/* Readability improvements for lists within policy sections */
.policy-section ul {
    list-style: disc;
    padding-left: 1.25rem;
    color: #bbbbbb;
    line-height: 1.85;
    margin: 0 0 1.2rem;
}

.policy-section li {
    margin-bottom: 0.6rem;
    font-size: 1.02rem;
    color: #bbbbbb;
}

.back-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    color: #000000;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.back-home-btn:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.back-home-btn i {
    font-size: 1rem;
}

/* Privacy Policy Responsive Design */
@media (max-width: 768px) {
    .privacy-policy {
        padding: 4rem 0 2rem;
    }

    .policy-header h1 {
        font-size: 2.5rem;
    }

    .policy-content {
        padding: 2rem;
        margin: 0 1rem;
    }

    .policy-section h2 {
        font-size: 1.3rem;
    }

    .back-home-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .policy-header h1 {
        font-size: 2rem;
    }

    .policy-content {
        padding: 1.5rem;
    }

    .policy-section h2 {
        font-size: 1.2rem;
    }

    .policy-section p {
        font-size: 1rem;
    }

    .policy-section li {
        font-size: 0.98rem;
    }
}

/* Readability override for KVKK white-backed content */
.privacy-policy .policy-content .policy-section p,
.privacy-policy .policy-content .policy-section ul,
.privacy-policy .policy-content .policy-section li,
.privacy-policy .policy-content .rights-list li {
    color: #999999;
}

/* Darkest link color for white-backed policy content */
.privacy-policy .policy-content .policy-section a {
    color: #111111;
    text-decoration: underline;
}

.privacy-policy .policy-content .policy-section a:hover {
    color: #222222;
}

/* ===== 404 ERROR PAGE STYLES ===== */
.error-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.error-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.error-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.error-animation {
    margin-bottom: 3rem;
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Capsule Animation */
.capsule {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.capsule-body {
    width: 120px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border-radius: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.capsule-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, #4834d4, #686de0);
    border-radius: 30px 0 0 30px;
}

.capsule-shine {
    position: absolute;
    top: 10px;
    left: 15px;
    width: 20px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    animation: shine 2s ease-in-out infinite;
}

.capsule-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    filter: blur(10px);
    animation: shadowFloat 3s ease-in-out infinite;
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: particleFloat 4s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    top: 30%;
    left: 70%;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    top: 80%;
    left: 20%;
    animation-delay: 1.5s;
}

.particle:nth-child(5) {
    top: 10%;
    left: 90%;
    animation-delay: 0.5s;
}

/* Error Content */
.error-content {
    color: white;
}

.error-code {
    font-size: 8rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(45deg, #ffffff, #f1f2f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

.error-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 1rem 0;
    color: #ffffff;
}

.error-message {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 2rem 0;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #ffffff, #f1f2f6);
    color: #333333;
}

.btn-primary:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.helpful-links {
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.helpful-links h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.helpful-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.helpful-links li {
    margin: 0;
}

.helpful-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    display: block;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.helpful-links a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes shadowFloat {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.2;
    }

    50% {
        transform: translateX(-50%) scale(0.8);
        opacity: 0.1;
    }
}

@keyframes shine {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.3;
    }
}

@keyframes glow {
    0% {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    }

    100% {
        text-shadow: 0 0 50px rgba(255, 255, 255, 0.8);
    }
}

/* 404 Page Responsive Design */
@media (max-width: 768px) {
    .error-code {
        font-size: 6rem;
    }

    .error-title {
        font-size: 2rem;
    }

    .error-message {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .error-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .helpful-links ul {
        grid-template-columns: 1fr;
    }

    .capsule-body {
        width: 100px;
        height: 50px;
    }

    .error-animation {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .error-container {
        padding: 0 1rem;
    }

    .error-code {
        font-size: 4rem;
    }

    .error-title {
        font-size: 1.5rem;
    }

    .error-message {
        font-size: 1rem;
    }

    .helpful-links {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .helpful-links h3 {
        font-size: 1.1rem;
    }

    .capsule-body {
        width: 80px;
        height: 40px;
    }

    .error-animation {
        height: 120px;
        margin-bottom: 2rem;
    }
}

/* Presentations and Bulletins Page Styles */
.presentations-page {
    min-height: 100vh;
    background: radial-gradient(ellipse at center, #111111 0%, #000000 100%);
    position: relative;
    overflow-x: hidden;
}

.presentations-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(2px 2px at 20px 30px, #ffffff, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #ffffff, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(2px 2px at 160px 30px, #ffffff, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: twinkle 20s linear infinite;
    pointer-events: none;
}

.presentations-hero {
    padding: 120px 0 80px;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #cccccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.presentations-content {
    background: rgba(17, 17, 17, 0.95);
    border-radius: 30px 30px 0 0;
    margin-top: -30px;
    position: relative;
    z-index: 3;
    padding: 4rem 0;
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 1.1rem;
}

.search-box input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.search-box input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #cccccc;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.filter-btn:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.filter-btn.active {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.document-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.document-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, #cccccc);
}

.document-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.1);
}

.document-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.document-icon i {
    font-size: 1.5rem;
    color: #000000;
}

.document-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.document-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.document-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.document-date,
.document-size {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.document-date i,
.document-size i {
    color: #ffffff;
}

.document-actions {
    display: flex;
    gap: 1rem;
}

.btn-download,
.btn-view {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.btn-download {
    background: #ffffff;
    color: #000000;
}

.btn-download:hover {
    transform: translateY(-2px);
    background: #cccccc;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.btn-view {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-view:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.newsletter-section {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.newsletter-info {
    flex: 1;
    color: white;
}

.newsletter-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #ffffff;
}

.newsletter-info p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    color: #cccccc;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex: 1;
    max-width: 400px;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.2);
}

.newsletter-btn {
    padding: 1rem 2rem;
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: #cccccc;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Responsive Design for Presentations Page */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .stat-item {
        padding: 1rem;
        min-width: 120px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .filter-section {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box {
        max-width: none;
    }

    .filter-buttons {
        justify-content: center;
    }

    .documents-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .document-card {
        padding: 1.5rem;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        max-width: none;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .presentations-hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-item {
        padding: 0.8rem;
        min-width: 100px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .presentations-content {
        padding: 2rem 0;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .document-card {
        padding: 1rem;
    }

    .document-actions {
        flex-direction: column;
    }

    .newsletter-section {
        padding: 2rem 1rem;
    }

    .newsletter-info h3 {
        font-size: 1.4rem;
    }

    .newsletter-info p {
        font-size: 1rem;
    }
}

/* Reports Page Styles */
.reports-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.reports-hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.reports-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.reports-hero .hero-content {
    position: relative;
    z-index: 2;
}

.reports-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reports-hero .hero-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.reports-content {
    padding: 4rem 0;
}

/* Metrics Dashboard */
.metrics-dashboard {
    margin-bottom: 4rem;
}

.metrics-dashboard h2 {
    font-size: 2.5rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.metric-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4ecdc4 0%, #45b7d1 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.metric-icon i {
    font-size: 1.8rem;
    color: #ffffff;
}

.metric-info h3 {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    display: block;
    margin-bottom: 0.3rem;
}

.metric-change {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    display: inline-block;
}

.metric-change.positive {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
}

.metric-change.negative {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
}

/* Charts Section */
.charts-section {
    margin-bottom: 4rem;
}

.charts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.chart-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-container h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.chart-container canvas {
    max-height: 300px;
}

/* Financial Reports */
.financial-reports {
    margin-bottom: 4rem;
}

.financial-reports h2 {
    font-size: 2.5rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.report-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.report-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.report-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.report-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.report-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.report-info h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.report-period {
    font-size: 0.9rem;
    color: #cccccc;
}

.report-metrics {
    margin-bottom: 1.5rem;
}

.report-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.report-metric:last-child {
    border-bottom: none;
}

.report-metric .metric-label {
    font-size: 0.9rem;
    color: #cccccc;
}

.report-metric .metric-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.report-actions {
    display: flex;
    gap: 1rem;
}

.btn-download,
.btn-view {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-download {
    background: linear-gradient(135deg, #4ecdc4 0%, #45b7d1 100%);
    color: #ffffff;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

.btn-view {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-view:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Transparency Section */
.transparency-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.transparency-info h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.transparency-info p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.transparency-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #ffffff;
    font-weight: 500;
}

.feature-item i {
    font-size: 1.2rem;
    color: #4ecdc4;
}

/* Responsive Design for Reports */
@media (max-width: 768px) {
    .reports-hero .hero-title {
        font-size: 2.5rem;
    }

    .reports-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .charts-grid {
        grid-template-columns: 1fr;
    }

    .reports-grid {
        grid-template-columns: 1fr;
    }

    .report-actions {
        flex-direction: column;
    }

    .transparency-features {
        flex-direction: column;
        gap: 1.5rem;
    }

    .chart-container {
        padding: 1.5rem;
    }

    .transparency-section {
        padding: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-page {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: 100vh;
}

.contact-header {
    text-align: center;
    margin-bottom: 5rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.contact-icon {
    margin-bottom: 2rem;
}

.contact-icon i {
    font-size: 4rem;
    color: #ffffff;
    animation: float 6s ease-in-out infinite;
}

.contact-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: center;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

/* Contact Information Section */
.contact-info-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
}

/* Single-section layout centering for maintenance pages */
.contact-info-section {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-align: center;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.contact-info-icon {
    margin-bottom: 1rem;
}

.contact-info-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Contact Form Section */
.contact-form-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #cccccc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Checkbox Styling */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 1.25rem 0;
    padding: 0.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.7;
    cursor: pointer;
    font-weight: 500;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 3px;
    display: inline-block;
    box-sizing: border-box;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark {
    background: #ffffff;
    border-color: #ffffff;
}

.checkbox-label:hover .checkmark {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.checkbox-label input[type="checkbox"]:focus+.checkmark {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000000;
    font-weight: bold;
    font-size: 12px;
}

.checkbox-label a {
    color: #ffffff;
    text-decoration: underline;
    transition: color 0.3s ease;
    font-weight: 600;
}

.checkbox-label a:hover {
    color: #cccccc;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 4px;
    border-radius: 4px;
}

/* Responsive Checkbox Styles */
@media (max-width: 768px) {
    .checkbox-group {
        margin: 1.75rem 0;
    }

    .checkbox-label {
        font-size: 1.2rem;
        line-height: 1.8;
        gap: 1rem;
        font-weight: 500;
    }

    .checkmark {
        width: 26px;
        height: 26px;
        border-radius: 6px;
        margin-top: 4px;
        border-width: 3px;
        display: inline-block;
        box-sizing: border-box;
    }

    .checkbox-label input[type="checkbox"]:checked+.checkmark::after {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .checkbox-group {
        margin: 2rem 0;
    }

    .checkbox-label {
        font-size: 1.3rem;
        line-height: 1.9;
        gap: 1.25rem;
        font-weight: 500;
    }

    .checkmark {
        width: 28px;
        height: 28px;
        border-radius: 6px;
        margin-top: 5px;
        border-width: 3px;
        display: inline-block;
        box-sizing: border-box;
    }

    .checkbox-label input[type="checkbox"]:checked+.checkmark::after {
        font-size: 14px;
    }

    .checkbox-label {
        padding: 8px 0;
    }
}

/* Extra Large Checkboxes for Better Accessibility */
.checkbox-group.large-checkboxes {
    margin: 2.5rem 0;
}

.checkbox-group.large-checkboxes .checkbox-label {
    font-size: 1.3rem;
    gap: 1.25rem;
    font-weight: 500;
}

.checkbox-group.large-checkboxes .checkmark {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    margin-top: 4px;
    border-width: 3px;
    display: inline-block;
    box-sizing: border-box;
}

.checkbox-group.large-checkboxes .checkbox-label input[type="checkbox"]:checked+.checkmark::after {
    font-size: 14px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    color: #000000;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.submit-btn i {
    font-size: 1rem;
}

/* Contact Additional Section */
.contact-additional {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.social-section,
.quick-links-section {
    text-align: center;
}

.social-section h3,
.quick-links-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.social-section p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-link i {
    font-size: 1.2rem;
}

.quick-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.quick-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.quick-link i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

/* Active Navigation Link */
.nav-menu a.active {
    color: #ffffff;
    font-weight: 600;
}

.nav-menu a.active::after {
    width: 100%;
}

/* Contact Page Responsive Design */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-additional {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 4rem 0 2rem;
    }

    .contact-header h1 {
        font-size: 2.5rem;
    }

    .contact-subtitle {
        font-size: 1.1rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-info-card {
        padding: 1.5rem;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social-link {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-header h1 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-info-card {
        padding: 1rem;
    }

    .contact-info-icon i {
        font-size: 2rem;
    }

    .contact-info-card h3 {
        font-size: 1.1rem;
    }

    .submit-btn {
        padding: 15px;
        font-size: 1rem;
    }
}

/* ===== SERVICE PAGES STYLES ===== */

.service-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 120px 0 80px;
    position: relative;
}

.service-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.service-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.service-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.service-icon-large::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.service-icon-large i {
    font-size: 3rem;
    color: #1a1a1a;
    z-index: 1;
    position: relative;
}

.service-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.service-content {
    position: relative;
    z-index: 2;
}

.service-overview {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-overview h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-overview p {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.service-packages {
    margin-bottom: 4rem;
}

.service-packages h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 3rem;
    text-align: center;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.package-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.package-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.package-icon i {
    font-size: 2rem;
    color: #1a1a1a;
}

.package-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.package-features {
    list-style: none;
    padding: 0;
}

.package-features li {
    color: #cccccc;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.5;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.1rem;
}

.sector-focus {
    margin-bottom: 4rem;
}

.sector-focus h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 3rem;
    text-align: center;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.sector-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.sector-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.sector-card i {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    display: block;
}

.sector-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.sector-card p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-cta {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.service-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.service-cta h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.service-cta p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #1a1a1a;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* Responsive Design for Service Pages */
@media (max-width: 1200px) {
    .packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .service-page {
        padding: 100px 0 60px;
    }

    .service-header h1 {
        font-size: 2.5rem;
    }

    .service-subtitle {
        font-size: 1.1rem;
    }

    .service-icon-large {
        width: 100px;
        height: 100px;
    }

    .service-icon-large i {
        font-size: 2.5rem;
    }

    .service-overview {
        padding: 2rem;
    }

    .service-overview h2,
    .service-packages h2,
    .sector-focus h2,
    .service-cta h2 {
        font-size: 2rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .package-card {
        padding: 2rem;
    }

    .sectors-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .sector-card {
        padding: 1.5rem;
    }

    .service-cta {
        padding: 3rem 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .service-header h1 {
        font-size: 2rem;
    }

    .service-subtitle {
        font-size: 1rem;
    }

    .service-icon-large {
        width: 80px;
        height: 80px;
    }

    .service-icon-large i {
        font-size: 2rem;
    }

    .service-overview {
        padding: 1.5rem;
    }

    .service-overview h2,
    .service-packages h2,
    .sector-focus h2,
    .service-cta h2 {
        font-size: 1.8rem;
    }

    .package-card {
        padding: 1.5rem;
    }

    .package-icon {
        width: 60px;
        height: 60px;
    }

    .package-icon i {
        font-size: 1.5rem;
    }

    .sector-card i {
        font-size: 2.5rem;
    }

    .service-cta {
        padding: 2rem 1.5rem;
    }
}

/* Sector Solutions Styles */
.sector-header {
    background: radial-gradient(ellipse at center, #111111 0%, #000000 100%);
    color: #ffffff;
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sector-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.sector-header .section-header {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.sector-header .sector-icon {
    margin-bottom: 2rem;
}

.sector-header .sector-icon i {
    font-size: 4rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sector-header .section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.sector-header .section-header p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.sector-services {
    padding: 6rem 0;
    background: #000000;
}

.sector-services .section-header h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card-sector {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.service-card-sector::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, #cccccc);
}

.service-card-sector:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.service-card-sector .service-icon {
    margin-bottom: 1.5rem;
}

.service-card-sector .service-icon i {
    font-size: 2.5rem;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card-sector h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-card-sector p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card-sector ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-card-sector ul li {
    padding: 0.5rem 0;
    color: #cccccc;
    position: relative;
    padding-left: 1.5rem;
}

.service-card-sector ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: bold;
}

.service-btn {
    display: inline-block;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    color: #000000;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
    color: #000000;
    text-decoration: none;
}

.sector-insights {
    padding: 6rem 0;
    background: #111111;
}

.sector-insights .section-header h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #ffffff;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.insight-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.insight-icon {
    margin-bottom: 1.5rem;
}

.insight-icon i {
    font-size: 3rem;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.insight-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.insight-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Responsive Design for Sector Pages */
@media (max-width: 768px) {
    .sector-header {
        padding: 4rem 0 3rem;
    }

    .sector-header .section-header h2 {
        font-size: 2rem;
    }

    .sector-header .section-header p {
        font-size: 1rem;
    }

    .sector-header .sector-icon i {
        font-size: 3rem;
        padding: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card-sector {
        padding: 2rem;
    }

    .insights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .sector-services,
    .sector-insights {
        padding: 4rem 0;
    }

    .sector-services .section-header h2,
    .sector-insights .section-header h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
}

/* Notification System */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
}

.notification {
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 10px;
    backdrop-filter: blur(10px);
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification.success {
    border-left: 4px solid #4CAF50;
}

.notification.error {
    border-left: 4px solid #f44336;
}

.notification.info {
    border-left: 4px solid #2196F3;
}

.notification-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.notification-title {
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.notification-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 18px;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.notification-message {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.5;
}

.notification-icon {
    font-size: 18px;
}

.notification.success .notification-icon {
    color: #4CAF50;
}

.notification.error .notification-icon {
    color: #f44336;
}

.notification.info .notification-icon {
    color: #2196F3;
}

@media (max-width: 768px) {
    .notification-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .notification {
        padding: 16px;
    }
}

/* Admin Panel - Reports Section Styles */
.admin-reports-section {
    padding: 2rem 0;
}

.admin-reports-section h2 {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.admin-reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.admin-report-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.admin-report-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.admin-report-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.admin-report-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
}

.admin-report-info h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.admin-report-period {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.admin-report-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.admin-report-metrics {
    margin-bottom: 1rem;
}

.admin-report-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-report-metric:last-child {
    border-bottom: none;
}

.admin-report-metric-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.admin-report-metric-value {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

.admin-report-actions {
    display: flex;
    gap: 0.5rem;
}

.admin-report-actions .btn {
    flex: 1;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.admin-content .team-card {
    min-height: 220px;
}

.admin-content .team-card:hover {
    transform: none;
}

.admin-content .team-card h3 {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.admin-content .team-photo img {
    max-width: 100%;
    height: auto;
}

.admin-section .documents-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.document-card-admin {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.document-card-admin:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 24px rgba(255, 255, 255, 0.1);
}

.document-card-admin h3 {
    font-size: 1.2rem;
    color: #ffffff;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.document-card-admin .document-description {
    color: #cccccc;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.document-card-admin .document-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.document-card-admin .document-actions {
    display: flex;
    gap: 0.5rem;
}

.document-card-admin .document-meta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.8);
}

.document-card-admin .document-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.document-card-admin .document-icon i {
    color: #ffffff;
}

.messages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.message-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    min-height: 200px;
}

.message-card .message-content,
.message-card .message-header,
.message-card .message-meta {
    overflow-wrap: anywhere;
    word-break: break-word;
}

@media (max-width: 768px) {
    .admin-content .team-card {
        min-height: 180px;
    }

    .document-card-admin {
        min-height: 160px;
    }
}


/* Report Form Styles */
#reportForm {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

#reportForm .form-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

#reportForm .form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

#reportForm .form-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

#reportForm .close-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#reportForm .close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.metrics-section {
    margin: 1.5rem 0;
}

.metrics-section h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

#metricsContainer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.metric-item {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 0.5rem;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-item input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 0.5rem;
    color: #ffffff;
    font-size: 0.9rem;
}

.metric-item input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.metric-item input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.add-metric-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.add-metric-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.no-reports {
    text-align: center;
    padding: 3rem 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.no-reports i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.5);
}

.no-reports p {
    font-size: 1.1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .admin-reports-grid {
        grid-template-columns: 1fr;
    }

    .metric-item {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    #reportForm .form-container {
        width: 95%;
        padding: 1.5rem;
    }
}

/* ===== KVKK PAGE STYLES ===== */
.legal-header {
    text-align: center;
    padding: 4rem 0;
    background: #111111;
    color: #ffffff;
    margin-bottom: 3rem;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.legal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.legal-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.legal-header h1::before {
    content: "🛡️";
    font-size: 2.5rem;
    animation: float 6s ease-in-out infinite;
}

.legal-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 1;
}

.legal-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.update-date {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Inter', sans-serif;
}

.legal-intro {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border-left: 5px solid #ffffff;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

/* Table of Contents */
.toc {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.toc h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.toc h2::before {
    content: "🚀";
    font-size: 1.2rem;
    animation: float 6s ease-in-out infinite;
}

.toc ol {
    list-style: none;
    counter-reset: toc-counter;
    padding: 0;
}

.toc li {
    counter-increment: toc-counter;
    margin-bottom: 0.8rem;
}

.toc li a {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
    text-decoration: none;
    color: #ffffff;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    font-family: 'Inter', sans-serif;
}

.toc li a::before {
    content: counter(toc-counter);
    background: #ffffff;
    color: #111111;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.toc li a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

/* Legal Sections */
.legal-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    scroll-margin-top: 100px;
    backdrop-filter: blur(10px);
}

.legal-section h2 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.legal-section h2::before {
    content: "🛰️";
    font-size: 1.2rem;
    animation: float 6s ease-in-out infinite;
}

.legal-section h3 {
    color: #cccccc;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem 0;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.legal-section p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.legal-section ul,
.legal-section ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

/* Info Box */
.info-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #ffffff;
    margin: 1.5rem 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-box p {
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.info-box strong {
    color: #ffffff;
    font-weight: 600;
}

.info-box a {
    color: #cccccc;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
}

.info-box a:hover {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.7);
}

/* Purpose List */
.purpose-list {
    background: #f8f9ff;
    padding: 1.5rem;
    border-radius: 12px;
    list-style: none;
    margin: 1.5rem 0;
}

.purpose-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
}

.purpose-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Data Categories Grid */
.data-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.category-item {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e1e8ff;
    transition: all 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
}

.category-item h3 {
    color: #667eea;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-item h3::before {
    content: "🔒";
    font-size: 1rem;
}

.category-item p {
    color: #4a5568;
    font-size: 0.95rem;
    margin: 0;
}

/* Method Section */
.method-section h3 {
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 0.5rem;
    margin-top: 2rem;
    font-family: 'Inter', sans-serif;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.right-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.right-item h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.right-item h3::before {
    content: "⚖️";
    font-size: 1rem;
}

.right-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* Consent Styles */
.consent-warning {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #ffffff;
    margin: 1.5rem 0;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.consent-list {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    list-style: none;
    margin: 1.5rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.consent-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
}

.consent-list li::before {
    content: "⚠️";
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.consent-note {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #ffffff;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 1.5rem 0;
}

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-method {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e1e8ff;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
}

.contact-method h3 {
    color: #667eea;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-method:nth-child(1) h3::before {
    content: "✉️";
}

.contact-method:nth-child(2) h3::before {
    content: "📧";
}

.contact-method:nth-child(3) h3::before {
    content: "📨";
}

.response-time {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #ffffff;
    margin: 2rem 0;
    text-align: center;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.response-time strong {
    color: #ffffff;
    font-weight: 600;
}

/* Legal Footer */
.legal-footer {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.legal-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.company-commitment h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.company-commitment h2::before {
    content: "🌌";
    font-size: 1.5rem;
    animation: float 6s ease-in-out infinite;
}

.company-commitment p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 1;
}

/* Responsive Design for KVKK */
@media (max-width: 768px) {
    .legal-header {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }

    .legal-header h1 {
        font-size: 2rem;
    }

    .legal-subtitle {
        font-size: 1rem;
    }

    .legal-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .legal-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }

    .toc {
        padding: 1.5rem;
    }

    .data-categories,
    .rights-grid,
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .category-item,
    .right-item,
    .contact-method {
        padding: 1rem;
    }

    .legal-footer {
        padding: 2rem 1rem;
    }

    .company-commitment h2 {
        font-size: 1.5rem;
    }

    .company-commitment p {
        font-size: 1rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-item:hover::before {
    transform: scaleX(1);
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.faq-item h3::before {
    content: '?';
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
    padding-left: 3rem;
}

/* Responsive FAQ Styles */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }

    .faq-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .faq-item h3 {
        font-size: 1.1rem;
        gap: 0.75rem;
    }

    .faq-item h3::before {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }

    .faq-item p {
        font-size: 0.95rem;
        padding-left: 2.5rem;
    }
}

@media (max-width: 480px) {
    .faq-item {
        padding: 1.25rem;
    }

    .faq-item h3 {
        font-size: 1rem;
        gap: 0.5rem;
    }

    .faq-item h3::before {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }

    .faq-item p {
        font-size: 0.9rem;
        padding-left: 2rem;
    }
}

/* Lazy Loading Styles */
img.lazy {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

img.loaded {
    opacity: 1;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Team images specific lazy loading */
.team-photo img.lazy {
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    background-size: 200% 100%;
    border-radius: 50%;
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-logo {
        font-size: 1.3rem;
    }

    .footer-slogan {
        font-size: 1rem;
    }

    .footer-social a {
        width: 35px;
        height: 35px;
    }
}

/* Brands List Styling */
.brands-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.4rem;
}

.brands-list li a {
    font-size: 0.85rem !important;
}

@media (min-width: 1200px) {
    .brands-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem 1rem;
    }
}

/* Blog author avatar lazy loading */
.author-avatar.lazy {
    background: linear-gradient(90deg, #f8f9fa 25%, #e9ecef 50%, #f8f9fa 75%);
    background-size: 200% 100%;
    border-radius: 50%;
}

.js .animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.js .in-view {
    opacity: 1;
    transform: translateY(0);
}

.captcha-error {
    color: #e33;
}

.cta-primary,
.cta-secondary {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

#cookieConsentBanner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 480px;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: saturate(180%) blur(8px);
}

#cookieConsentBanner .consent-content {
    padding: 16px 18px;
    display: flex;
    gap: 12px;
    align-items: center;
}

#cookieConsentBanner .consent-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

#cookieConsentBanner .consent-actions {
    display: flex;
    gap: 8px;
}

.btn-consent {
    padding: 10px 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.btn-consent.accept {
    background: #4CAF50;
    color: #fff;
}

.btn-consent.decline {
    background: #f44336;
    color: #fff;
}

.btn-consent:focus {
    outline: 2px solid #ffffff66;
    outline-offset: 2px;
}

@media (max-width: 560px) {
    #cookieConsentBanner {
        left: 20px;
        right: 20px;
    }

    #cookieConsentBanner .consent-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

.brand-card::before {
    animation: none;
}

.brand-logo {
    animation: none;
    will-change: auto;
}

.brand-card:nth-child(2n) .brand-logo {
    animation-delay: 0.6s;
}

.brand-card:nth-child(3n) .brand-logo {
    animation-delay: 1.2s;
}

.brand-card:nth-child(5n) .brand-logo {
    animation-delay: 1.8s;
}

@keyframes brand-pulse {
    0% {
        opacity: 0.08;
        transform: scale(0.98);
    }

    50% {
        opacity: 0.18;
        transform: scale(1.02);
    }

    100% {
        opacity: 0.08;
        transform: scale(0.98);
    }
}

@keyframes logo-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@media (max-width: 480px) {
    .brand-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .brand-card {
        padding: 16px;
        min-height: 160px;
    }

    .brand-logo {
        width: 72px;
        height: 72px;
    }
}

@media (max-width: 1024px) {
    .brand-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.brands .container {
    max-width: 1500px;
}

.brands {
    padding-top: 40px;
    padding-bottom: 56px;
}

.brands .section-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    background: linear-gradient(90deg, #ffffff, #9adcff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brands .section-header p {
    color: #cccccc;
    font-size: 1.05rem;
}

.brand-grid {
    gap: 1.75rem;
}

@media (max-width: 1024px) {
    .brand-grid {
        gap: 1.5rem;
    }
}

.brand-card {
    padding: 24px;
    border-radius: 16px;
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
    min-height: 200px;
}

.brand-logo {
    width: clamp(88px, 18vw, 120px);
    height: clamp(88px, 18vw, 120px);
}

/* Public Page Centering System */
.public-page {
    text-align: center;
}

.public-page .container,
.public-page .home-universe,
.public-page .service-universe,
.public-page .faq-universe {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.public-page .section-title,
.public-page .hero-title,
.public-page .hero-description {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.public-page .glass-card {
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.public-page .legal-content {
    text-align: left;
    display: inline-block;
    max-width: 800px;
}

.public-page .bento-ecosystem-grid {
    justify-content: center;
}

.public-page .hero-launchpad,
.public-page .trending-header,
.public-page .section-header-blog,
.public-page .blog-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}