/**
 * İlkserver - Hakkımızda Sayfası Özel Stilleri
 */

/* --------------------------------
   Genel Stiller
-------------------------------- */
.about-page {
    overflow-x: hidden;
}

.button-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--primary-gradient);
    color: white;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(122, 115, 255, 0.25);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

.button-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(122, 115, 255, 0.4);
    color: white;
}

.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background-color: white;
    color: var(--text-dark);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

.button-secondary:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-light);
    color: var(--primary);
}

.button-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background-color: transparent;
    color: white;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    box-shadow: none;
    border: 2px solid white;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

.button-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    color: white;
}

.text-highlight {
    color: var(--primary-light);
    position: relative;
    display: inline-block;
}

/* Typed.js Titreme Sorununu Düzeltmek İçin */
.typed-element-container {
    min-height: 56px;
    line-height: 1.2;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.typed-element {
    display: inline;
    position: relative;
    white-space: nowrap;
}

.typed-cursor {
    position: relative;
    display: inline-block;
}

/* --------------------------------
   Bölüm Başlıkları 
-------------------------------- */
.about-section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    width: 100%;
}

.about-section-subtitle {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    position: relative;
}

.about-section-subtitle:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.about-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-top: 1.5rem;
    position: relative;
}

/* --------------------------------
   Ana Düzen Yapısı
-------------------------------- */
.about-main-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem 0;
}

.about-sidebar-wrapper {
    width: 280px;
    flex-shrink: 0;
}

.about-content-wrapper {
    flex: 1;
    min-width: 0;
    /* Taşmaları önlemek için */
    width: 100%;
}

/* --------------------------------
   Hero Bölümü 
-------------------------------- */
.about-hero {
    position: relative;
    padding: 6rem 0 5rem;
    background-color: var(--background-alt);
    overflow: hidden;
    background-image: linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%),
        url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%237a73ff" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

.about-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
}

.about-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-hero-badge {
    display: inline-flex;
    padding: 0.5rem 1rem;
    background-color: var(--primary-soft);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 560px;
}

.about-hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.about-hero-buttons {
    display: flex;
    gap: 1rem;
}

.about-hero-image {
    position: relative;
}

.about-hero-card {
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: all 0.5s ease;
    max-width: 480px;
    position: relative;
}

.about-hero-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    box-shadow: var(--shadow-xl);
}

.about-hero-card-image {
    height: 280px;
    overflow: hidden;
}

.about-hero-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-hero-card:hover .about-hero-card-image img {
    transform: scale(1.05);
}

.about-hero-card-content {
    padding: 1.5rem;
    background-color: white;
}

.about-hero-card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.about-hero-card-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.scroll-down-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-down-indicator a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: white;
    box-shadow: var(--shadow-md);
    color: var(--primary);
    transition: all 0.3s ease;
}

.scroll-down-indicator a:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-5px);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

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

    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* --------------------------------
   Sidebar Menü Stilleri
-------------------------------- */
.about-sidebar {
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
    position: sticky;
    top: calc(var(--header-height) + 20px);
    height: auto;
    max-height: calc(100vh - var(--header-height) - 40px);
    overflow-y: auto;
}

.sidebar-toggle-container {
    display: none;
}

.about-sidebar-toggle {
    display: none;
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 1rem;
    text-align: left;
    align-items: center;
    justify-content: space-between;
}

.about-sidebar-toggle .toggle-icon {
    transition: transform 0.3s ease;
}

.about-sidebar-toggle.active .toggle-icon {
    transform: rotate(180deg);
}

.about-sidebar-header {
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.75rem;
}

.about-sidebar-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.about-sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-item {
    margin-bottom: 0.25rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.sidebar-link:hover {
    background-color: var(--primary-soft);
    color: var(--primary);
}

.sidebar-item.active .sidebar-link {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 2px 8px rgba(122, 115, 255, 0.4);
}

.dropdown-toggle {
    position: relative;
    justify-content: space-between;
}

.dropdown-icon {
    transition: transform 0.3s ease;
    color: var(--gray-400);
    font-size: 1.125rem;
}

.has-dropdown.active .dropdown-icon {
    transform: rotate(180deg);
    color: inherit;
}

.sidebar-dropdown {
    max-height: 0;
    overflow: hidden;
    padding-left: 1.5rem;
    transition: max-height 0.3s ease;
    list-style: none;
    margin: 0;
    padding: 0 0 0 1.5rem;
}

.has-dropdown.active .sidebar-dropdown {
    max-height: 500px;
    margin-top: 0.5rem;
}

.dropdown-item {
    margin-top: 0.5rem;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    color: var(--text);
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.dropdown-link:hover {
    background-color: var(--gray-100);
    color: var(--primary);
}

.dropdown-item.active .dropdown-link {
    background-color: var(--primary-soft);
    color: var(--primary);
    font-weight: 500;
}

.about-sidebar-cta {
    margin-top: 2rem;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    color: white;
}

.cta-content {
    text-align: center;
}

.cta-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.cta-content p {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-content .button-primary {
    background-color: white;
    color: var(--primary);
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    width: 100%;
}

.cta-content .button-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary);
}

/* --------------------------------
   Hikaye Bölümü
-------------------------------- */
.about-story {
    padding: 1rem 0 3rem;
}

.about-story-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.about-story-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-story-image:hover img {
    transform: scale(1.05);
}

.about-story-experience {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--primary);
    color: white;
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.experience-years {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.experience-text {
    font-size: 0.875rem;
    font-weight: 500;
}

.about-story-text {
    flex: 1;
    min-width: 300px;
}

.about-story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.story-highlight {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.story-features {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 0;
    list-style: none;
}

.story-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.story-features li i {
    color: var(--success);
}

/* --------------------------------
   Misyon & Vizyon Bölümü
-------------------------------- */
.about-mission-vision {
    padding: 2rem 0 4rem;
    width: 100%;
}

.mission-vision-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
    width: 100%;
}

.mission-card,
.vision-card {
    flex: 1 1 calc(50% - 1rem);
    /* Masaüstünde yan yana, mobilde alt alta */
    min-width: 280px;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background-color: white;
    box-shadow: var(--shadow-md);
    position: relative;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.mission-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--primary-gradient);
}

.vision-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--accent-gradient);
}

.mission-icon,
.vision-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.mission-icon {
    background-color: var(--primary-soft);
    color: var(--primary);
}

.vision-icon {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--accent);
}

.mission-card:hover .mission-icon {
    transform: rotateY(180deg);
    background-color: var(--primary);
    color: white;
}

.vision-card:hover .vision-icon {
    transform: rotateY(180deg);
    background-color: var(--accent);
    color: white;
}

.mission-title,
.vision-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.mission-description,
.vision-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
}

/* --------------------------------
   Zaman Çizelgesi
-------------------------------- */
.about-timeline {
    padding: 2rem 0 5rem;
    width: 100%;
}

.timeline-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
    width: 100%;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
}

.timeline-item {
    margin-bottom: 6rem;
    position: relative;
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    width: 100%;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item.right {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-indicator {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.timeline-year {
    background-color: var(--primary);
    color: white;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 1rem;
    box-shadow: var(--shadow-md);
}

.timeline-content {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    width: calc(100% - 60px);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
}

.timeline-item:not(.right) .timeline-content {
    margin-right: 60px;
}

.timeline-item.right .timeline-content {
    margin-left: 60px;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.timeline-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 0;
}

/* --------------------------------
   Değerler Bölümü
-------------------------------- */
.about-values {
    padding: 3rem 0 5rem;
    background-color: var(--background-alt);
    width: 100%;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    width: 100%;
}

.value-card {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-md);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background-color: var(--primary);
    color: white;
    transform: scale(1.1);
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 0;
}

/* --------------------------------
   İş Ortakları Bölümü
-------------------------------- */
.about-partners {
    padding: 3rem 0 5rem;
    background-color: white;
    width: 100%;
}

.partners-slider {
    max-width: 100%;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.partners-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: slidePartners 25s linear infinite;
    padding: 2rem 0;
}

.partner-item {
    flex: 0 0 auto;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: var(--radius-md);
    padding: 1rem 2rem;
    min-width: 200px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.partner-item img {
    max-width: 100%;
    max-height: 50px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes slidePartners {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* --------------------------------
   Sertifika & Ödül Bölümü
-------------------------------- */
.about-certificates {
    padding: 3rem 0 5rem;
    background-color: var(--background-alt);
    width: 100%;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    width: 100%;
}

.certificate-card {
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--border-light);
}

.certificate-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.certificate-image {
    height: 180px;
    background-color: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.certificate-image img {
    max-width: 100%;
    max-height: 120px;
    transition: transform 0.3s ease;
}

.certificate-card:hover .certificate-image img {
    transform: scale(1.1);
}

.certificate-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.certificate-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.certificate-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.certificate-issuer,
.certificate-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.certificate-issuer i,
.certificate-date i {
    color: var(--primary);
}

/* --------------------------------
   CTA Bölümü
-------------------------------- */
.about-cta {
    margin: 2rem 0 4rem;
    position: relative;
    width: 100%;
}

.about-cta .cta-content {
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    padding: 3rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-cta .cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: 1;
}

.about-cta .cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    z-index: 2;
}

.about-cta .cta-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.about-cta .cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

/* --------------------------------
   Animasyonlar
-------------------------------- */
@keyframes typedjsBlink {
    50% {
        opacity: 0.0;
    }
}

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

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

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

/* AOS Animasyonları için stillerin tamamı */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-down"] {
    transform: translateY(-50px);
}

[data-aos="fade-down"].aos-animate {
    transform: translateY(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

[data-aos="flip-left"] {
    transform: perspective(2500px) rotateY(90deg);
}

[data-aos="flip-left"].aos-animate {
    transform: perspective(2500px) rotateY(0);
}

/* Sayaç Animasyonu */
.counter {
    display: inline-block;
    transition: all 0.3s ease;
}

/* Işıltı Efekti */
.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    animation: shine 6s infinite;
}

@keyframes shine {
    0% {
        transform: rotate(30deg) translateX(-300%);
    }

    100% {
        transform: rotate(30deg) translateX(300%);
    }
}

/* --------------------------------
   Mobil Uyumluluk
-------------------------------- */
@media (max-width: 1200px) {
    .about-hero-title {
        font-size: 3rem;
    }

    .about-section-title {
        font-size: 2.25rem;
    }

    .hero-stat-value {
        font-size: 2.25rem;
    }

    .about-hero-stats {
        gap: 1.5rem;
    }

    .about-cta .cta-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 992px) {
    .about-main-container {
        flex-direction: column;
    }

    .about-sidebar-wrapper {
        width: 100%;
    }

    .about-sidebar {
        position: relative;
        top: 0;
        max-height: none;
    }

    .about-hero .container {
        grid-template-columns: 1fr;
    }

    .about-hero-content {
        align-items: center;
        text-align: center;
        order: 2;
    }

    .about-hero-image {
        order: 1;
        display: flex;
        justify-content: center;
    }

    .about-hero-description {
        text-align: center;
    }

    .sidebar-toggle-container {
        display: block;
    }

    .about-sidebar-toggle {
        display: flex;
    }

    .about-sidebar-menu {
        display: none;
    }

    .about-sidebar-menu.active {
        display: flex;
    }

    .about-sidebar-header {
        margin-top: 1rem;
    }

    .mission-card,
    .vision-card {
        flex: 1 1 100%;
        /* Mobilde tam genişlik */
    }

    .timeline-line {
        left: 30px;
    }

    .timeline-indicator {
        left: 30px;
        transform: translateX(0);
    }

    .timeline-item,
    .timeline-item.right {
        padding-right: 0;
        padding-left: 60px;
        justify-content: flex-start;
    }

    .timeline-item:not(.right) .timeline-content,
    .timeline-item.right .timeline-content {
        margin-left: 15px;
        margin-right: 0;
        width: calc(100% - 40px);
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-section-title {
        font-size: 2rem;
    }

    .about-hero-badge,
    .about-section-subtitle {
        font-size: 0.75rem;
    }

    .about-hero-description,
    .about-cta .cta-description {
        font-size: 1rem;
    }

    .hero-stat-value {
        font-size: 1.75rem;
    }

    .about-hero-stats {
        gap: 1rem;
    }

    .story-features {
        grid-template-columns: 1fr;
    }

    .about-cta .cta-content {
        padding: 2rem;
    }

    .about-cta .cta-title {
        font-size: 1.75rem;
    }

    .about-cta .cta-actions {
        flex-direction: column;
    }

    .about-cta .cta-actions a {
        width: 100%;
        margin-bottom: 1rem;
        justify-content: center;
    }

    .about-sidebar {
        padding: 1rem;
    }

    .sidebar-link {
        padding: 0.5rem 0.75rem;
    }

    .mission-icon,
    .vision-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .about-hero {
        padding: 4rem 0 3rem;
    }

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

    .about-hero-stats {
        justify-content: center;
    }

    .hero-stat {
        flex: 0 0 45%;
        margin-bottom: 1rem;
    }

    .about-hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .about-hero-buttons a {
        width: 100%;
        margin-bottom: 1rem;
        justify-content: center;
    }

    .partner-item {
        min-width: 150px;
    }

    .mission-card,
    .vision-card,
    .value-card {
        padding: 2rem;
    }

    .about-section-header {
        margin-bottom: 2.5rem;
    }

    .typed-element-container {
        height: 56px;
    }
}

/* Safari browser fix */
@media not all and (min-resolution:.001dpcm) {
    @supports (-webkit-appearance:none) {
        .about-hero-card {
            -webkit-transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
            transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
        }

        .partners-wrapper {
            -webkit-animation: slidePartners 25s linear infinite;
            animation: slidePartners 25s linear infinite;
        }
    }
}

/* IE Fix */
@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    .about-hero-card {
        transform: none;
    }

    .partners-wrapper {
        animation: none;
    }

    .about-main-container {
        display: flex;
        flex-wrap: wrap;
    }

    .about-sidebar-wrapper {
        width: 280px;
        float: left;
    }

    .about-content-wrapper {
        width: calc(100% - 300px);
        float: right;
    }

    @media (max-width: 992px) {

        .about-sidebar-wrapper,
        .about-content-wrapper {
            width: 100%;
            float: none;
        }
    }
}

/* Dark mode tarayıcı uyumluluğu */
@media (prefers-color-scheme: dark) {
    .partner-item img {
        filter: brightness(1.2) grayscale(100%);
    }

    .partner-item:hover img {
        filter: brightness(1.2) grayscale(0%);
    }
}

< !-- Sidebar için CSS eklentisi - hakkimizda.css dosyasına ekleyin -->
/* 
 * Sidebar Menü Stilleri
 * hakkimizda.css dosyasına ekleyin
 */

.about-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.about-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 20px);
    height: calc(100vh - var(--header-height) - 40px);
    overflow-y: auto;
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.about-sidebar-header {
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 1rem;
}

.about-sidebar-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.about-sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.sidebar-item {
    margin-bottom: 0.25rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.sidebar-link:hover {
    background-color: var(--primary-soft);
    color: var(--primary);
}

.sidebar-item.active .sidebar-link {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 2px 8px rgba(122, 115, 255, 0.4);
}

.dropdown-toggle {
    position: relative;
    justify-content: space-between;
}

.dropdown-icon {
    transition: transform 0.3s ease;
    color: var(--gray-400);
    font-size: 1.125rem;
}

.has-dropdown.active .dropdown-icon {
    transform: rotate(180deg);
    color: inherit;
}

.sidebar-dropdown {
    max-height: 0;
    overflow: hidden;
    padding-left: 1.5rem;
    transition: max-height 0.3s ease;
}

.has-dropdown.active .sidebar-dropdown {
    max-height: 500px;
}

.dropdown-item {
    margin-top: 0.5rem;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    color: var(--text);
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.dropdown-link:hover {
    background-color: var(--gray-100);
    color: var(--primary);
}

.dropdown-item.active .dropdown-link {
    background-color: var(--primary-soft);
    color: var(--primary);
    font-weight: 500;
}

.about-sidebar-cta {
    margin-top: 2rem;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    color: white;
}

.cta-content {
    text-align: center;
}

.cta-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.cta-content p {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-content .button-primary {
    background-color: white;
    color: var(--primary);
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    width: 100%;
}

.cta-content .button-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary);
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .about-sidebar {
        position: relative;
        top: 0;
        height: auto;
        grid-row: 1;
    }

    .about-content {
        grid-row: 2;
    }

    .about-sidebar-cta {
        display: none;
    }
}

@media (max-width: 768px) {
    .about-sidebar {
        padding: 1rem;
    }

    .sidebar-link {
        padding: 0.5rem 0.75rem;
    }
}

/* Mobil cihazlarda toggle işlevi */
@media (max-width: 768px) {
    .about-sidebar-menu {
        display: none;
    }

    .about-sidebar-menu.active {
        display: flex;
    }

    .about-sidebar-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.75rem 1rem;
        background-color: var(--primary);
        color: white;
        border-radius: var(--radius-md);
        font-weight: 600;
        margin-bottom: 1rem;
        cursor: pointer;
    }

    .toggle-icon {
        transition: transform 0.3s ease;
    }

    .about-sidebar-toggle.active .toggle-icon {
        transform: rotate(180deg);
    }
}

<style>

/* Sidebar'daki "Destek Alın" butonunun düzeltmesi */
.about-sidebar-cta .cta-content .button.button-secondary {
    background-color: white;
    color: var(--primary);
    border: none;
    font-weight: 600;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
}

.about-sidebar-cta .cta-content .button.button-secondary:hover {
    background-color: var(--gray-100);
    transform: translateY(-2px);
    color: var(--primary);
    /* Hover durumunda rengin değişmemesini sağlar */
}

/* CTA bölümündeki buton düzeltmeleri */
.about-cta .cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-cta .cta-actions .button {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    width: 220px;
    /* Sabit genişlik vererek eşit boyutta olmalarını sağlar */
    text-align: center;
    font-weight: 600;
    height: 56px;
    /* Sabit yükseklik */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.about-cta .cta-actions .button.button-primary {
    background-color: white;
    color: var(--primary);
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.3);
    /* Belirginliği artırmak için gölge */
}

.about-cta .cta-actions .button.button-primary:hover {
    background-color: #f8f9fa;
    transform: translateY(-4px);
    box-shadow: 0 8px 15px rgba(255, 255, 255, 0.4);
}

.about-cta .cta-actions .button.button-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.about-cta .cta-actions .button.button-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

</style>< !-- CTA Section HTML'inde butonları güncelle -->
<section class="about-cta"data-aos="fade-up"><div class="container"><div class="cta-content"><h2 class="cta-title">Projelerinizi Birlikte Büyütelim</h2><p class="cta-description">18 yıllık deneyimimiz ve müşteri odaklı yaklaşımımızla,
işinizi dijital dünyada büyütmenize yardımcı olmak için buradayız. İhtiyaçlarınıza özel çözümler için hemen bizimle iletişime geçin. </p><div class="cta-actions"><a href="contact.php"class="button button-primary">İletişime Geçin</a><a href="tel:0850 302 35 45"class="button button-secondary"><i data-feather="phone"></i><span>0850 302 35 45</span></a></div></div></div></section>