/* =============================================
   HAKKIMIZDA SAYFASI (AI Dark Theme & Glow)
   ============================================= */

/* Sayfa geneli - Nav ve Footer Gizleme (Layout'tan gelen) */
.hakkimizda-page .navbar2,
.hakkimizda-page .footer {
    display: none !important;
}

.hakkimizda-page .container-fluid {
    padding: 0 !important;
}

/* Değişkenler (sayfaya özel ekstra renkler) */
:root {
    --about-bg: #030712;
    /* Çok koyu lacivert/siyah */
    --about-accent: #00d2ff;
    /* Elektrik mavisi */
    --about-accent-hover: #3a86ff;
    --about-text: #e2e8f0;
    --about-text-muted: #94a3b8;
    --about-card-bg: rgba(15, 23, 42, 0.6);
    --about-card-border: rgba(0, 210, 255, 0.15);
    --glow-cyan: 0 0 20px rgba(0, 210, 255, 0.4);
}

/* Sayfa Arka Planı ve Temel */
.about-wrapper {
    background-color: var(--about-bg);
    color: var(--about-text);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    position: relative;
    /* İsteğe bağlı AI network efekti için grid bg */
    background-image:
        radial-gradient(circle at 15% 50%, rgba(0, 210, 255, 0.05), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(58, 134, 255, 0.05), transparent 25%);
}

/* Global Glow Text */
.glow-text {
    color: var(--about-accent);
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.5);
}

/* Hero Section */
.about-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 60px;
    position: relative;
    z-index: 1;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/Anasayfa.jpg') center/cover no-repeat;
    /* Opsiyonel bg */
    opacity: 0.1;
    z-index: -1;
    filter: grayscale(100%) contrast(150%);
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-super-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--about-accent);
    display: block;
    margin-bottom: 20px;
}

.about-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #fff;
}

.about-hero-desc {
    font-size: 1.25rem;
    color: var(--about-text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 700px;
    margin-inline: auto;
}

.about-hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-glow,
.btn-outline-glow {
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-glow {
    background: var(--about-accent);
    color: #000;
    box-shadow: var(--glow-cyan);
}

.btn-glow:hover {
    background: #fff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
    color: #000;
    transform: translateY(-3px);
}

.btn-outline-glow {
    background: transparent;
    color: var(--about-text);
    border: 1px solid var(--about-accent);
}

.btn-outline-glow:hover {
    background: rgba(0, 210, 255, 0.1);
    box-shadow: inset 0 0 10px rgba(0, 210, 255, 0.2);
    color: var(--about-accent);
    transform: translateY(-3px);
}

/* Sections Common */
.about-section {
    padding: 100px 20px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.section-head {
    text-align: center;
    margin-bottom: 60px;
}

.section-head h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.section-head p {
    color: var(--about-text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Kurumsal Metin */
.corporate-text {
    background: var(--about-card-bg);
    border: 1px solid var(--about-card-border);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    margin-bottom: 40px;
}

.corporate-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--about-text);
    margin-bottom: 20px;
}

.corporate-text p:last-child {
    margin-bottom: 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
}

/* Neler Yapıyoruz Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--about-accent), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-box:hover {
    background: rgba(15, 23, 42, 0.8);
    border-color: var(--about-card-border);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--about-accent);
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 0 8px rgba(0, 210, 255, 0.6));
}

.feature-box h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-box p {
    color: var(--about-text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Yatırım & Analiz Platformları (Özel Blok) */
.vision-platform {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}

.vision-platform-text {
    flex: 1;
}

.vision-platform-text ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.vision-platform-text li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--about-text);
}

.vision-platform-text li::before {
    content: '\f058';
    /* Check circle icon font awesome */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--about-accent);
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px rgba(0, 210, 255, 0.4));
}

.vision-platform-visual {
    flex: 1;
    position: relative;
}

.mockup-glow {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 1) 0%, rgba(3, 7, 18, 1) 100%);
    border: 1px solid var(--about-card-border);
    border-radius: 20px;
    box-shadow: inset 0 0 50px rgba(0, 210, 255, 0.05), var(--glow-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.mockup-glow::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent 0%, rgba(0, 210, 255, 0.2) 25%, transparent 50%);
    animation: rotateGlow 10s linear infinite;
}

.mockup-glow .inner-graph {
    font-size: 5rem;
    color: var(--about-accent);
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 0 15px rgba(0, 210, 255, 0.8));
    animation: pulseIcon 2s infinite alternate;
}

@keyframes rotateGlow {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulseIcon {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.5));
    }

    100% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 25px rgba(0, 210, 255, 1));
    }
}

/* Neden Biz List */
.why-us-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
}

.reason-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.reason-tag i {
    color: var(--about-accent);
}

.reason-tag:hover {
    background: rgba(0, 210, 255, 0.1);
    border-color: var(--about-accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.2);
}

/* Vizyon & Misyon Cards */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.8), rgba(3, 7, 18, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.mv-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 210, 255, 0.3);
}

.mv-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.mv-card h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.mv-card p {
    color: var(--about-text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Footer / CTA Section */
.about-cta {
    text-align: center;
    padding: 120px 20px;
    background: linear-gradient(to top, rgba(0, 210, 255, 0.05), transparent);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.about-cta h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 40px;
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .vision-platform {
        flex-direction: column;
        gap: 40px;
    }

    .about-hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .corporate-text {
        padding: 30px 20px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .about-cta h2 {
        font-size: 2rem;
    }
}