/* Hakkımızda (About Us) Sayfası Stilleri */

/* Ana Değişkenler - Site teması ile uyumlu */
:root {
    --about-primary: var(--primary-color);
    --about-secondary: var(--secondary-color);
    --about-accent: var(--primary-color, #ff6600);
    --about-light: #ecf0f1;
    --about-dark: var(--dark-bg, #121212);
    --about-gradient-start: var(--primary-color, #ff6600);
    --about-gradient-end: var(--primary-hover, #ff8c00);
    --about-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --about-transition: all 0.3s ease;
    --about-gradient: var(--gradient-primary, linear-gradient(to right, var(--primary-color), #ff8833));
    --about-dark-bg: var(--dark-bg-color);
    --about-light-bg: var(--light-bg-color);
    --about-text: var(--text-color);
    --about-border-radius: 8px;
    --about-border-color: rgba(255, 255, 255, 0.1);
    --about-overlay: rgba(22, 28, 45, 0.8);
    --about-shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.2);
    --about-section-padding: 80px 0;
    --about-dark-overlay: rgba(22, 28, 45, 0.75);
}

/* Genel Stiller */
.about-page {
    font-family: 'Poppins', 'Open Sans', Arial, sans-serif;
    color: var(--text-color, #f3f4f6);
    line-height: 1.6;
    overflow-x: hidden;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color, #f3f4f6);
    position: relative;
}

.section-subtitle {
    display: inline-block;
    background: rgba(var(--primary-color-rgb, 255, 102, 0), 0.1);
    color: var(--about-primary);
    padding: 4px 15px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted, #9ca3af);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

/* Footer Stiller */
footer {
    position: relative;
    background-color: var(--about-dark);
    color: #fff;
    padding: 80px 0 30px;
    margin-top: 60px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--about-primary);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--about-transition);
    position: relative;
    padding-left: 20px;
    display: block;
}

.footer-links a:before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--about-primary);
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact li {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.7);
    padding-left: 30px;
    position: relative;
}

.footer-contact li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--about-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    text-align: center;
    width: 100%;
}

.footer-social .social-title {
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

.footer-social .social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--about-transition);
}

.footer-social a:hover {
    background-color: var(--about-primary);
    transform: translateY(-5px);
}

/* Footer logo */
.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

/* Table styling for the footer quick links */
.footer-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.footer-table td {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-table td:first-child {
    font-weight: 600;
    width: 40%;
}

.footer-table td a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--about-transition);
}

.footer-table td a:hover {
    color: white;
}

/* Footer decorative element */
.footer-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-decoration svg {
    position: relative;
    display: block;
    width: 100%;
    height: 80px;
}

.footer-decoration .shape-fill {
    fill: #FFFFFF;
}

/* Neden Biz section styles */
.why-us-section {
    padding: 100px 0;
    background-color: var(--darker-bg, #0a0a0a);
    position: relative;
    overflow: hidden;
}

.section-bg-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(var(--primary-color-rgb, 255, 102, 0), 0.1) 2px, transparent 2px);
    background-size: 30px 30px;
    z-index: -1;
    opacity: 0.4;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.why-us-item {
    display: flex;
    background: var(--card-bg, rgba(26, 28, 40, 0.8));
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--about-transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.why-us-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.why-us-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--about-gradient, linear-gradient(to bottom, var(--primary-color), #ff8833));
    transition: var(--about-transition);
    border-radius: 0 0 4px 0;
}

.why-us-item:hover:before {
    height: 100%;
}

.why-us-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 10px;
    background: rgba(var(--primary-color-rgb, 255, 102, 0), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: var(--about-transition);
}

.why-us-item:hover .why-us-icon {
    background: var(--about-primary);
    color: white;
}

.why-us-icon i {
    font-size: 2rem;
    color: var(--about-primary);
    transition: var(--about-transition);
}

.why-us-item:hover .why-us-icon i {
    transform: rotateY(360deg);
}

.why-us-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color, #f3f4f6);
}

.why-us-content p {
    font-size: 1rem;
    color: var(--text-muted, #9ca3af);
    margin: 0;
}

/* About us - rakamlarla biz section improvements */
.rakamlarla-biz {
    position: relative;
    padding: 120px 0;
    background: var(--gradient-dark, linear-gradient(135deg, rgba(20, 25, 40, 0.98), rgba(10, 15, 30, 0.98)));
    color: var(--text-color, #f3f4f6);
    text-align: center;
    margin: 0;
    z-index: 1;
}

.rakamlarla-biz .container {
    position: relative;
    z-index: 2;
}

.rakamlarla-biz h2 {
    color: var(--text-color, #f3f4f6);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.stat-box {
    position: relative;
    background: rgba(var(--primary-color-rgb, 255, 102, 0), 0.1);
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    transition: var(--about-transition);
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(var(--primary-color-rgb, 255, 102, 0), 0.2);
}

.stat-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--about-gradient, linear-gradient(135deg, var(--primary-color), #ff8833));
    z-index: -1;
    opacity: 0;
    transition: var(--about-transition);
    transform: skewY(-5deg) scaleX(0.8) translateY(50px);
}

.stat-box:hover::before {
    opacity: 1;
    transform: skewY(0) scaleX(1) translateY(0);
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--about-shadow);
    border-color: transparent;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--about-primary);
    margin-bottom: 1rem;
    transition: var(--about-transition);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color, #f3f4f6);
    margin-bottom: 0.5rem;
    line-height: 1.1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--about-transition);
}

.stat-number .prefix,
.stat-number .suffix {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 2px;
    opacity: 0.9;
}

.stat-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted, #9ca3af);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--about-transition);
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .footer-decoration svg {
        height: 40px;
    }
}

/* Hero Bölümü */
.about-hero {
    position: relative;
    min-height: 600px;
    padding: 120px 0 100px;
    display: flex;
    align-items: center;
    background: var(--gradient-dark, linear-gradient(135deg, rgba(22, 28, 45, 0.98), rgba(20, 25, 40, 0.95)));
    overflow: hidden;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-color, #f3f4f6);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.about-hero .subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-muted, #9ca3af);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn {
    display: inline-block;
    background: var(--about-gradient, linear-gradient(to right, var(--primary-color), #ff8833));
    color: #fff;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--about-shadow);
    position: relative;
    overflow: hidden;
    transition: var(--about-transition);
    border: none;
    cursor: pointer;
    z-index: 1;
    margin-top: 1rem;
}

.hero-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-hover, #ff8c00);
    transition: var(--about-transition);
    z-index: -1;
    border-radius: 30px;
    opacity: 0.8;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(var(--primary-color-rgb, 255, 102, 0), 0.4);
    color: #fff;
}

.hero-btn:hover:before {
    width: 100%;
}

.hero-btn i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.hero-badge {
    display: flex;
    align-items: center;
    background: rgba(var(--primary-color-rgb, 255, 102, 0), 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--text-color, #f3f4f6);
    transition: var(--about-transition);
    box-shadow: var(--about-shadow);
}

.hero-badge:hover {
    background: rgba(var(--primary-color-rgb, 255, 102, 0), 0.2);
    transform: translateY(-3px);
}

.hero-badge i {
    color: var(--about-primary);
    margin-right: 10px;
}

.hero-badge span {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Ana İçerik Bölümü */
.about-main {
    position: relative;
    padding: 100px 0;
    background-color: var(--dark-bg, #121212);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content .content-wrapper {
    max-width: 90%;
    padding-right: 2rem;
}

.about-content h2 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color, #f3f4f6);
}

.about-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--about-gradient, linear-gradient(to right, var(--primary-color), #ff8833));
    border-radius: 4px;
    transition: var(--about-transition);
}

.about-content:hover h2:after {
    width: 120px;
}

.about-text {
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-muted, #9ca3af);
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-content ul {
    list-style: none;
    margin: 0 0 30px 0;
    padding: 0;
}

.about-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.about-content ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--about-primary);
    font-size: 1rem;
}

.about-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--about-shadow);
    transition: var(--about-transition);
    transform: perspective(1000px) rotateY(-5deg);
}

.about-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0);
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

.about-image-wrapper:hover .main-image {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--about-primary);
    color: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
    transform: rotate(10deg);
    z-index: 1;
    transition: var(--about-transition);
}

.about-image-wrapper:hover .experience-badge {
    transform: rotate(0);
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.2;
}

.ceo-signature {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.signature-img {
    max-width: 120px;
    margin-right: 20px;
}

.signature-info {
    display: flex;
    flex-direction: column;
}

.signature-info strong {
    font-size: 1.2rem;
    margin-bottom: 4px;
    color: var(--about-dark);
}

.signature-info span {
    color: #777;
    font-size: 0.95rem;
}

/* Misyon & Vizyon Bölümü */
.mission-vision {
    position: relative;
    padding: 100px 0;
    background-color: var(--dark-bg, #121212);
    overflow: hidden;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px;
    margin-top: 3rem;
}

.mission-card, .vision-card {
    position: relative;
    background: var(--card-bg, rgba(26, 28, 40, 0.8));
    border-radius: var(--border-radius-md, 8px);
    padding: 40px 30px;
    box-shadow: var(--about-shadow);
    transition: var(--about-transition);
    overflow: hidden;
    z-index: 1;
    border: 1px solid var(--border-color, #2a324a);
}

.card-shape {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: rgba(var(--primary-color-rgb, 255, 102, 0), 0.1);
    border-radius: 50%;
    z-index: -1;
    transition: var(--about-transition);
}

.vision-card .card-shape {
    top: auto;
    right: auto;
    bottom: -50px;
    left: -50px;
}

.mission-card:hover .card-shape, .vision-card:hover .card-shape {
    transform: scale(6);
}

.mission-card::before, .vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--about-gradient, linear-gradient(135deg, var(--primary-color), #ff8833));
    opacity: 0.05;
    transition: var(--about-transition);
    z-index: -1;
}

.mission-card::before {
    top: auto;
    bottom: 0;
}

.vision-card::before {
    bottom: auto;
    top: 0;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    border-color: var(--about-primary);
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(var(--primary-color-rgb, 255, 102, 0), 0.1);
    color: var(--about-primary);
    border-radius: 50%;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    transition: var(--about-transition);
}

.vision-card .card-icon {
    background: rgba(var(--primary-color-rgb, 255, 102, 0), 0.15);
    color: var(--about-primary);
}

.mission-card:hover .card-icon {
    background: var(--about-primary);
    color: white;
}

.vision-card:hover .card-icon {
    background: var(--about-primary);
    color: white;
}

.mission-card h3, .vision-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    color: var(--text-color, #f3f4f6);
}

.card-content {
    font-size: 1.05rem;
    color: var(--text-muted, #9ca3af);
    margin-bottom: 30px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.card-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.card-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-color, #f3f4f6);
}

.card-list li i {
    color: var(--about-primary);
    margin-right: 10px;
    font-size: 1rem;
}

.vision-card .card-list li i {
    color: var(--about-primary);
}

.section-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 2;
}

.section-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

/* Özelliklerimiz Bölümü */
.about-features {
    position: relative;
    padding: 100px 0;
    background-color: var(--darker-bg, #0a0a0a);
    overflow: hidden;
    z-index: 1;
}

.about-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(var(--primary-color-rgb, 255, 102, 0), 0.05) 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.4;
    z-index: -1;
}

.about-features::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark, linear-gradient(135deg, rgba(var(--primary-color-rgb, 255, 102, 0), 0.03), rgba(var(--primary-color-rgb, 255, 102, 0), 0.01)));
    opacity: 0.5;
    z-index: -1;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 25px;
    margin-top: 3rem;
}

.feature-card {
    position: relative;
    background: var(--card-bg, rgba(26, 28, 40, 0.8));
    border-radius: var(--border-radius-md, 8px);
    padding: 35px 20px;
    text-align: center;
    transition: var(--about-transition);
    overflow: hidden;
    z-index: 1;
    border: 1px solid var(--border-color, #2a324a);
}

.feature-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--about-gradient, linear-gradient(135deg, var(--primary-color), #ff8833));
    opacity: 0;
    transition: var(--about-transition);
    z-index: -1;
    transform: translateY(100%);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: transparent;
    box-shadow: var(--about-shadow);
}

.feature-card:hover .feature-hover {
    opacity: 0.05;
    transform: translateY(0);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(var(--primary-color-rgb, 255, 102, 0), 0.1);
    color: var(--about-primary);
    border-radius: 50%;
    font-size: 1.8rem;
    transition: var(--about-transition);
    position: relative;
    z-index: 2;
}

.feature-card:hover .feature-icon {
    background: var(--about-primary);
    color: #fff;
    transform: rotateY(360deg);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color, #f3f4f6);
    position: relative;
    z-index: 2;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted, #9ca3af);
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.feature-card:hover h3,
.feature-card:hover p {
    color: var(--text-color, #f3f4f6);
}

/* Çağrı Bölümü */
.about-cta {
    position: relative;
    padding: 100px 0;
    background: var(--gradient-dark, linear-gradient(135deg, rgba(22, 28, 45, 0.95), rgba(20, 25, 40, 0.95)));
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color, #f3f4f6);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-muted, #9ca3af);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--about-transition);
}

.btn-primary {
    background: var(--about-gradient, linear-gradient(to right, var(--primary-color), #ff8833));
    color: #fff;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(var(--primary-color-rgb, 255, 102, 0), 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-color, #f3f4f6);
    border: 1px solid var(--border-color, #2a324a);
}

.btn-secondary:hover {
    background: rgba(var(--primary-color-rgb, 255, 102, 0), 0.1);
    border-color: var(--about-primary);
    transform: translateY(-3px);
}

.cta-btn i {
    margin-right: 8px;
}

/* Animasyonlar */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .stats-container,
    .feature-grid,
    .why-us-grid,
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .about-section {
        padding: 70px 0;
    }
    
    .stats-container,
    .feature-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-badges {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .stats-container,
    .feature-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-badges {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero .subtitle {
        font-size: 1.1rem;
    }
    
    .experience-badge {
        width: 80px;
        height: 80px;
    }
    
    .experience-badge .years {
        font-size: 1.5rem;
    }
    
    .experience-badge .text {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .main-content img {
        margin-bottom: 20px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content .content-wrapper {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-hero .subtitle {
        font-size: 1rem;
    }
    
    .hero-btn {
        display: block;
        margin: 0 auto;
        max-width: 200px;
    }
}

/* Ekip Bölümü */
.about-team {
    position: relative;
    padding: 100px 0;
    background-color: var(--darker-bg, #0a0a0a);
    overflow: hidden;
    z-index: 1;
}

.about-team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(var(--primary-color-rgb, 255, 102, 0), 0.05) 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: -1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    margin-top: 3rem;
}

.team-member {
    position: relative;
    background: var(--card-bg, rgba(26, 28, 40, 0.8));
    border-radius: var(--border-radius-md, 8px);
    overflow: hidden;
    transition: var(--about-transition);
    box-shadow: var(--about-shadow);
    border: 1px solid var(--border-color, #2a324a);
    z-index: 1;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: var(--about-primary);
}

.member-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--about-transition);
}

.no-image {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--about-gradient, linear-gradient(135deg, var(--primary-color), #ff8833));
    opacity: 0.8;
}

.no-image i {
    font-size: 3rem;
    color: white;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 25px;
    text-align: center;
}

.member-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-color, #f3f4f6);
}

.member-info .position {
    color: var(--about-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-info .description {
    font-size: 0.95rem;
    color: var(--text-muted, #9ca3af);
    line-height: 1.7;
    margin-bottom: 20px;
}

.team-member .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-member .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(var(--primary-color-rgb, 255, 102, 0), 0.1);
    color: var(--about-primary);
    transition: var(--about-transition);
}

.team-member .social-links a:hover {
    background: var(--about-primary);
    color: white;
    transform: translateY(-3px);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--about-transition);
    z-index: 2;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.overlay-content {
    padding: 30px;
    text-align: center;
}

.overlay-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.overlay-content .position {
    color: var(--about-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.overlay-content .description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 20px;
}

.overlay-content .social-links {
    justify-content: center;
}