 /* Genel Stillere */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--bg-dark);
    color: var(--text-primary);
}

/* Dark Theme Ana Renkler - Güncelleme */
:root {
    --primary-color: #c0a080;
    --primary-dark: #a88c6a;
    --primary-light: #d4b89c;
    --bg-dark: #121212;
    --bg-darker: #0a0a0a;
    --bg-light: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-muted: #b0b0b0;
    --border-color: #2a2a2a;
    --card-bg: #1e1e1e;
    --card-bg-hover: #252525;
    --gradient-dark: linear-gradient(45deg, rgba(12,12,12,0.9), rgba(18,18,18,0.7));
}

/* Navbar Güncellemesi */
.navbar {
    position: fixed;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    box-shadow: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Scroll durumunda navbar stili */
.navbar.scrolled {
    background-color: rgba(18, 18, 18, 0.95);
    padding: 1rem 5%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    border-bottom: 1px solid var(--border-color);
}

.logo a {
    text-decoration: none;
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.logo span {
    color: var(--primary-color);
}

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

.nav-links li a {
    color: #fff;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    position: relative;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.nav-links li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links li a:hover::before {
    width: 100%;
}

/* Hero Section Güncellemesi */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #000;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, var(--primary-color) 0%, transparent 70%),
        radial-gradient(circle at 80% 70%, var(--accent-color) 0%, transparent 70%);
    opacity: 0.1;
}

.slide-inner {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.swiper-slide-active .slide-inner {
    transform: scale(1);
    filter: grayscale(0%);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: opacity 1s ease;
}

.swiper-slide-active .overlay {
    opacity: 1;
}

.hero-content {
    margin-top: 60px;
    padding: 0 2rem;
}

.hero-content .subtitle {
    display: block;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    position: relative;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(192,160,128,0.4);
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-down span {
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.scroll-down i {
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Slider Navigation Güncellemesi */
.swiper-button-next,
.swiper-button-prev {
    width: 60px !important;
    height: 60px !important;
    background: rgba(192,160,128,0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: #fff !important;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.5rem !important;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(192,160,128,0.8);
    transform: scale(1.2);
}

/* Slide Geçiş Animasyonları */
.swiper-slide {
    transition: transform 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.swiper-slide-active {
    z-index: 2;
}

.swiper-slide-next,
.swiper-slide-prev {
    opacity: 0.5;
}

/* Hover Efektleri */
.hero:hover .swiper-button-next {
    transform: translateX(-20px);
    opacity: 1;
}

.hero:hover .swiper-button-prev {
    transform: translateX(20px);
    opacity: 1;
}

/* Scroll Animasyonları için Genel Stiller */
[data-aos] {
    visibility: hidden;
}

.aos-animate {
    visibility: visible;
}

/* Diğer Bölümler için Scroll Efektleri */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-title p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

/* Burger Menu Güncellemesi */
.burger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.burger div {
    width: 25px;
    height: 2px;
    background-color: #fff;
    margin: 5px;
    transition: all 0.3s ease;
}

/* Burger animasyonu */
.burger.active div:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.active div:nth-child(2) {
    opacity: 0;
}

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

.about {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.about-content {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Projects Section - New Style */
.projects {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.project-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: var(--card-bg);
}

.project-link {
    text-decoration: none;
    color: var(--text-primary);
    display: block;
}

.project-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-details {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.project-details h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.project-details span {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Hover Effects */
.project-item:hover .project-image img {
    transform: scale(1.1);
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-item:hover .project-details {
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .projects-container {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .project-details h3 {
        font-size: 1.2rem;
    }

    .project-details span {
        font-size: 0.9rem;
    }
}

/* Services Section Güncellemesi */
.services {
    background: var(--bg-darker);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, transparent 100%);
    opacity: 0.05;
    pointer-events: none;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    background: var(--card-bg-hover);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.service-card i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-card:hover i {
    transform: scale(1.1) rotate(5deg);
    color: var(--primary-light);
}

.service-card h3 {
    color: var(--text-primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--primary-color);
    opacity: 0.5;
}

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

.service-card .learn-more {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.service-card:hover .learn-more {
    opacity: 1;
    transform: translateY(0);
}

.service-card .learn-more i {
    font-size: 1.2rem;
    margin-left: 5px;
    color: var(--primary-light);
}

/* Responsive düzenlemeler için */
@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .service-card {
        padding: 2rem;
    }

    .service-card h3 {
        font-size: 1.5rem;
    }
}

/* Footer Styles */
.footer {
    background: var(--bg-darker);
    color: white;
    padding: 4rem 0 0 0;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer-section span {
    color: #c0a080;
}

.footer-section p {
    margin-bottom: 1rem;
}

.social-links {
    margin-top: 1.5rem;
}

.social-links a {
    color: white;
    margin-right: 1rem;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #c0a080;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #c0a080;
}

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

/* Scroll Efektleri için Ek Stiller */
[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Geometric Background */
.geometric-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.05;
    pointer-events: none;
}

.shape {
    position: absolute;
    border: 2px solid #c0a080;
}

.shape1 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    top: 20%;
    left: 10%;
    animation: float 8s infinite;
}

.shape2 {
    width: 200px;
    height: 200px;
    transform: rotate(45deg);
    top: 60%;
    right: 15%;
    animation: float 6s infinite reverse;
}

.shape3 {
    width: 150px;
    height: 150px;
    border-radius: 30%;
    bottom: 10%;
    left: 20%;
    animation: float 7s infinite;
}

.shape4 {
    width: 250px;
    height: 250px;
    border-radius: 40%;
    top: 30%;
    right: 25%;
    animation: float 9s infinite reverse;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, 20px) rotate(10deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

/* Stats Section */
.stats-section {
    background: var(--bg-darker);
    padding: 6rem 0;
    color: var(--text-primary) !important;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color) 0%, transparent 100%);
    opacity: 0.05;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.stat-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-light);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

/* Process Section - Yeni Tasarım */
.process-section {
    padding: 6rem 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.process-timeline {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.3;
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 6rem;
    position: relative;
}

.timeline-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.timeline-content.reverse {
    flex-direction: row-reverse;
}

.timeline-image {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.timeline-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-image img {
    transform: scale(1.1);
}

.step-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 1;
}

.timeline-info {
    flex: 1;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-info {
    transform: translateY(-5px);
}

.timeline-info h3 {
    color: var(--text-primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.timeline-info p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.timeline-features {
    list-style: none;
}

.timeline-features li {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.timeline-features li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .process-timeline::before {
        left: 20px;
    }

    .timeline-content,
    .timeline-content.reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .timeline-image {
        width: 100%;
    }

    .timeline-info {
        width: 100%;
    }

    .timeline-item {
        margin-bottom: 4rem;
    }
}

@media (max-width: 768px) {
    .timeline-image {
        height: 250px;
    }

    .timeline-info h3 {
        font-size: 1.5rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Contact Section */
.contact {
    padding: 6rem 0;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-info .info-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 10px;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.contact-info .info-item:hover {
    transform: translateY(-5px);
}

.contact-info i {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.contact-info h3 {
    color: var(--text-primary);
}

.contact-info p {
    color: var(--text-secondary);
}

.contact-form {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 10px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-dark);
    color: var(--text-primary);
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: var(--primary-dark);
}

/* Slider Pagination Güncellemesi */
.swiper-pagination {
    position: absolute;
    bottom: 30px !important;
    left: 30px !important;
    width: auto !important;
    right: auto !important;
    text-align: left;
}

.swiper-pagination-bullet {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 12px;
    color: var(--text-secondary);
    opacity: 0.7;
    background: transparent;
    border: 1px solid var(--primary-color);
    position: relative;
    margin: 0 10px !important;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet .bullet-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Arial', sans-serif;
    font-weight: 500;
}

.swiper-pagination-bullet-active {
    color: #fff;
    background: var(--primary-color);
    opacity: 1;
}

@media (max-width: 768px) {
    .swiper-pagination {
        bottom: 20px !important;
        left: 20px !important;
    }

    .swiper-pagination-bullet {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 10px;
        margin: 0 5px !important;
    }
}

/* Before After Section */
.before-after-section {
    padding: 6rem 0;
    background: var(--bg-dark);
    overflow: hidden;
}

.before-after-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.before-after-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    cursor: col-resize;
    user-select: none;
}

.before-image,
.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: none;
}

.before-image img,
.after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.after-image {
    width: 50%;
    overflow: hidden;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
    z-index: 10;
    cursor: col-resize;
}

/* Sürükleme sırasındaki stil */
.before-after-slider.resizing {
    cursor: col-resize;
}

.before-after-slider.resizing .slider-handle {
    background-color: var(--primary-color);
}

.handle-line {
    position: absolute;
    width: 2px;
    height: 100%;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    transition: none;
}

.before-after-slider:hover .handle-circle {
    transform: translate(-50%, -50%);
}

/* Hover efekti için ek stil */
.before-after-slider::after {
    content: 'Fare ile hareket ettirin';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(0,0,0,0.5);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.before-after-slider:hover::after {
    opacity: 1;
}

/* Yeni Feature Section */
.features-section {
    padding: 6rem 0;
    background: var(--bg-darker);
}

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

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    background: var(--card-bg-hover);
}

.feature-card h3 {
    color: var(--text-primary);
    margin: 1rem 0;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

/* Scroll Bar Özelleştirme */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* Yeni Animasyonlu Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.05;
}

.animated-bg span {
    position: absolute;
    display: block;
    pointer-events: none;
    animation: float 15s linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* Testimonials Güncelleme */
.testimonial-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.testimonial-content p {
    color: var(--text-secondary);
    font-style: italic;
    margin: 1rem 0;
    line-height: 1.6;
}

.testimonial-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.testimonial-content span {
    color: var(--primary-color);
}

/* Hover Efektleri */
.service-card:hover i,
.feature-card:hover .feature-icon,
.contact-info .info-item:hover i {
    color: var(--primary-light);
}

.nav-links li a:hover {
    color: var(--primary-light);
}

/* Responsive Navbar */
@media screen and (max-width: 768px) {
    .navbar {
        background-color: rgba(18, 18, 18, 0.95);
        padding: 1rem 5%;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 70%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: var(--bg-darker);
        transition: right 0.3s ease;
        gap: 3rem;
    }

    .nav-links li {
        opacity: 0;
        margin: 1rem 0;
    }

    .nav-links li a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links.active li {
        opacity: 1;
    }

    .burger {
        display: block;
    }

    .nav-links li a {
        font-size: 1.2rem;
    }
}

/* Link hover efekti için animasyon */
@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 3D Model Preview Styles */
.model-preview {
    position: relative;
    width: 100%;
    height: 300px;
    background: var(--card-bg);
    overflow: hidden;
}

.model-preview iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.model-preview .drawing-overlay {
    background: rgba(0,0,0,0.5);
}

.model-preview:hover .drawing-overlay {
    opacity: 1;
}

/* 3D Model Card özel stilleri */
.model-preview .drawing-actions button {
    background: var(--primary-color);
    color: white;
}

.model-preview .drawing-actions button:hover {
    background: var(--primary-light);
    transform: scale(1.1);
}

/* Modal için 3D görünüm düzenlemesi */
.drawing-modal.model-modal {
    background: rgba(0,0,0,0.95);
}

.drawing-modal.model-modal .modal-content {
    width: 90%;
    height: 80vh;
}

/* 3D Model Viewer Styles */
.model-viewer-section {
    background: var(--bg-darker);
    padding: 6rem 0;
    position: relative;
}

.model-viewer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.model-viewer {
    position: relative;
    width: 100%;
    height: 80vh;
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.model-viewer iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.model-info-panel {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(0,0,0,0.8);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    width: 300px;
    z-index: 10;
}

.model-info-panel h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.model-details {
    list-style: none;
    margin-bottom: 1.5rem;
}

.model-details li {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.model-details li i {
    color: var(--primary-color);
    width: 20px;
}

.view-details-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-details-btn:hover {
    background: var(--primary-light);
}

@media (max-width: 768px) {
    .model-viewer {
        height: 60vh;
    }

    .model-info-panel {
        width: calc(100% - 40px);
        top: auto;
        bottom: 30px;
        right: 20px;
        left: 20px;
    }
}

/* Projects Page Styles */
.projects-hero {
    height: 50vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-primary);
}

.projects-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.projects-hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* Projects Filter */
.projects-filter {
    padding: 2rem 0;
    background: var(--bg-dark);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* Projects Grid */
.projects-grid-section {
    padding: 4rem 0;
    background: var(--bg-darker);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.project-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-item:hover .project-image img {
    transform: scale(1.1);
}

.project-info {
    text-align: center;
    color: white;
    padding: 2rem;
}

.project-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.project-info p {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.project-details {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.project-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.view-project-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.view-project-btn:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .projects-hero-content h1 {
        font-size: 2.5rem;
    }

    .filter-buttons {
        gap: 0.5rem;
    }

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

    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        padding: 0 1rem;
    }
}

/* Featured Project Styles */
.featured-project {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.featured-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 0 2rem;
}

.featured-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-category {
    color: var(--primary-color);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.featured-info h2 {
    color: var(--text-primary);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.featured-info p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.project-specs {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.spec-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Project Process Styles */
.project-process {
    padding: 6rem 0;
    background: var(--bg-darker);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 2rem;
    color: white;
}

.step h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-secondary);
}

/* Contact CTA Styles */
.contact-cta {
    padding: 6rem 0;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), 
                url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content h2 {
    color: var(--text-primary);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .featured-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .featured-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .featured-info h2 {
        font-size: 2rem;
    }

    .project-specs {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Yeni Glass-morphism kartlar */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Modern buton tasarımı */
.modern-button {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.modern-button:hover::before {
    left: 100%;
}

/* Animasyonlu kartlar */
.animated-card {
    transform-style: preserve-3d;
    transition: all 0.5s ease;
}

.animated-card:hover {
    transform: translateY(-10px) rotateX(5deg);
}

/* Modern form tasarımı */
.modern-form input,
.modern-form textarea {
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.modern-form input:focus,
.modern-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(42, 157, 143, 0.2);
}

/* Modern loader animasyonu */
.loader {
    width: 50px;
    height: 50px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Hover efektleri */
.hover-card {
    transition: all 0.3s ease;
}

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

/* Modern form tasarımı */
.modern-form input,
.modern-form textarea {
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.modern-form input:focus,
.modern-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(42, 157, 143, 0.2);
}

/* Animasyonlu background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.05;
}

.animated-bg span {
    position: absolute;
    display: block;
    pointer-events: none;
    animation: float 15s linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* Modern grid layout */
.modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

/* Modern loader animasyonu */
.loader {
    width: 50px;
    height: 50px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Hover efektleri */
.hover-card {
    transition: all 0.3s ease;
}

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

/* Modern form tasarımı */
.modern-form input,
.modern-form textarea {
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.modern-form input:focus,
.modern-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(42, 157, 143, 0.2);
}

/* Animasyonlu background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.05;
}

.animated-bg span {
    position: absolute;
    display: block;
    pointer-events: none;
    animation: float 15s linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* Proje Detay Sayfası Stilleri */
.project-detail-hero {
    height: 70vh;
    position: relative;
    overflow: hidden;
    background: var(--bg-darker);
}

.project-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.project-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4rem 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.project-hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.project-meta {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    color: var(--text-secondary);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-item i {
    color: var(--primary-color);
}

/* Proje Detay İçerik */
.project-detail-content {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.project-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Sol Kolon - Ana İçerik */
.project-main-content {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.content-section {
    margin-bottom: 3rem;
}

.content-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Sağ Kolon - Proje Detayları */
.project-sidebar {
    position: sticky;
    top: 100px;
}

.project-info-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.info-list {
    list-style: none;
}

.info-list li {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-label {
    color: var(--text-muted);
}

.project-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-button {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.primary-action {
    background: var(--primary-color);
    color: white;
}

.primary-action:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.secondary-action {
    background: var(--card-bg-hover);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.secondary-action:hover {
    background: var(--bg-darker);
}

/* Teknoloji Stack'i */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tech-tag {
    padding: 0.5rem 1rem;
    background: var(--bg-darker);
    border-radius: 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Proje Timeline */
.project-timeline {
    margin-top: 2rem;
}

.timeline-item {
    position: relative;
    padding-left: 2rem;
    padding-bottom: 2rem;
    border-left: 2px solid var(--border-color);
}

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

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary-color);
}

.timeline-date {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.timeline-title {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.timeline-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .project-detail-grid {
        grid-template-columns: 1fr;
    }

    .project-sidebar {
        position: static;
    }

    .project-gallery {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .project-hero-content {
        padding: 2rem 1rem;
    }

    .project-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .project-detail-content {
        padding: 3rem 0;
    }
}

/* Hero Section için Mobil Uyumluluk */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem; /* Daha küçük başlık */
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-content .subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
    }
    
    /* Slider navigasyon butonları için düzenleme */
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px !important;
        height: 40px !important;
    }
}

/* Hakkımızda Bölümü için Mobil Uyumluluk */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Genel Mobil Uyumluluk İyileştirmeleri */
@media (max-width: 576px) {
    .section-title h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
}