/* Genel CSS Reset ve Değişkenler */
:root {
    --primary-color: #0066cc;
    --secondary-color: #2c3e50;
    --accent-color: #e67e22;
    --light-color: #ecf0f1;
    --dark-color: #1a1a1a;
    --text-color: #333;
    --text-light: #f8f9fa;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 5px;
    --container-width: 1200px;
    --heading-dark: #f8f9fa;
    --heading-light: #333;
}

/* Dark Mode */
[data-theme="dark"] {
    --primary-color: #4a90e2;
    --secondary-color: #34495e;
    --accent-color: #f39c12;
    --light-color: #2c3e50;
    --dark-color: #f8f9fa;
    --text-color: #f8f9fa;
    --text-light: #1a1a1a;
    --box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
    --heading-dark: #ffffff;
    --heading-light: #f0f0f0;
    --text-secondary: rgba(255, 255, 255, 0.85);
}

body[data-theme="dark"] h2,
body[data-theme="dark"] h3,
body[data-theme="dark"] h4 {
    color: var(--heading-dark);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

body[data-theme="dark"] p {
    color: var(--text-secondary);
}

/* Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Header Stili */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--box-shadow);
    padding: 15px 0;
    transition: var(--transition);
}

body[data-theme="dark"] header {
    background-color: rgba(26, 26, 26, 0.95);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1,
.logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

nav {
    display: flex;
    align-items: center;
}

.menu {
    display: flex;
}

.menu li {
    margin-left: 30px;
}

.menu a {
    position: relative;
    font-weight: 500;
    padding: 5px 0;
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 2px 0;
    transition: var(--transition);
}

/* Dark/Light Mode Switch */
.theme-switch-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 15px;
    z-index: 1001;
}

.theme-switch {
    display: inline-block;
    height: 26px;
    position: relative;
    width: 50px;
}

.theme-switch input {
    display: none;
}

.slider {
    background-color: #ccc;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
}

.slider .fa-sun {
    color: #f39c12;
    font-size: 14px;
    margin-left: 2px;
}

.slider .fa-moon {
    color: #f8f9fa;
    font-size: 14px;
    margin-right: 2px;
}

.slider:before {
    background-color: #fff;
    bottom: 3px;
    content: "";
    height: 20px;
    left: 3px;
    position: absolute;
    transition: .4s;
    width: 20px;
    z-index: 2;
}

input:checked + .slider {
    background-color: var(--secondary-color);
}

input:checked + .slider:before {
    transform: translateX(24px);
}

.slider.round {
    border-radius: 24px;
}

.slider.round:before {
    border-radius: 50%;
}

.theme-switch-wrapper em {
    margin-left: 10px;
    font-size: 1rem;
    color: var(--text-color);
}

/* Hero Bölümü */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

/* İzmir Hizmet Bölgeleri Stili */
.service-areas {
    background-color: var(--light-color);
    padding: 80px 0;
}

.areas-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.area-column {
    background-color: #fff;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

body[data-theme="dark"] .area-column {
    background-color: rgba(42, 52, 65, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.area-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.area-column h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

body[data-theme="dark"] .area-column h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

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

.area-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.area-column ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.area-column ul li i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

body[data-theme="dark"] .area-column ul li i {
    color: var(--primary-color);
}

body[data-theme="dark"] .area-column ul li {
    color: var(--text-secondary);
}

/* Aşağı doğru check ikonları renk düzeltmesi */
body[data-theme="dark"] .fa-check-circle {
    color: var(--primary-color);
}

/* Butonlar */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.primary-btn {
    background-color: var(--primary-color);
    color: #fff;
}

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

.secondary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.hero .secondary-btn {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

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

.hero .secondary-btn:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.small-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
}

/* Section Stili */
section {
    padding: 80px 0;
    width: 100%;
    box-sizing: border-box;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    color: var(--heading-light);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

body[data-theme="dark"] .section-title h2 {
    color: var(--heading-dark);
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

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

.section-title p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Özellikler Bölümü */
.features {
    background-color: var(--light-color);
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

body[data-theme="dark"] .feature-box {
    background-color: var(--secondary-color);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-box .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
}

.feature-box .icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.feature-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

body[data-theme="dark"] .feature-box h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-box p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

body[data-theme="dark"] .feature-box p {
    color: var(--text-secondary);
}

/* Hizmetler Bölümü - Yeni Detaylı Hizmet Kartları */
.services {
    background-color: #f9f9f9;
}

body[data-theme="dark"] .services {
    background-color: #2a2a2a;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card-detailed {
    display: grid;
    grid-template-columns: 1fr 2fr;
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

body[data-theme="dark"] .service-card-detailed {
    background-color: var(--secondary-color);
}

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

.service-card-image {
    height: 100%;
    overflow: hidden;
}

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

.service-card-detailed:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.service-card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

body[data-theme="dark"] .service-card-content h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-feature i {
    color: var(--primary-color);
    font-size: 1rem;
}

.service-card-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
    background-color: rgba(0, 102, 204, 0.05);
    padding: 15px;
    border-radius: var(--border-radius);
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.service-card-content .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* Eski Hizmet Kartları Stili - Hizmetler Bölümündeki Kartlar için */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

body[data-theme="dark"] .service-card {
    background-color: var(--secondary-color);
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

body[data-theme="dark"] .service-content h3 {
    color: var(--text-light);
}

.service-content p {
    margin-bottom: 15px;
}

/* Ürünler Slider */
.products {
    position: relative;
    overflow: hidden;
}

.products-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin: 40px 0;
    width: 100%;
    overflow: visible;
}

.product-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    padding: 20px 15px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
}

body[data-theme="dark"] .product-card {
    background-color: var(--secondary-color);
    border: 1px solid rgba(255,255,255,0.1);
}

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

.product-card-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    margin-bottom: 15px;
    transition: var(--transition);
}

body[data-theme="dark"] .product-card-icon {
    background-color: rgba(74, 144, 226, 0.2);
}

.product-card-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

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

.product-card:hover .product-card-icon i {
    color: #fff;
}

.product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

body[data-theme="dark"] .product-card h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.product-card p {
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
    flex-grow: 1;
}

body[data-theme="dark"] .product-card p {
    color: rgba(255,255,255,0.8);
}

.product-card .btn {
    margin-top: auto;
    width: 100%;
    padding: 10px 15px;
    font-size: 0.9rem;
}

/* Projeler Galerisi */
.projects {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

body[data-theme="dark"] .projects {
    background-color: #212529;
}

.projects-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.project-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 300px;
    position: relative;
}

body[data-theme="dark"] .project-item {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.project-image {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

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

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

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0) 100%);
    padding: 30px 20px 20px;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

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

.project-info {
    width: 100%;
    text-align: center;
}

.project-info h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: all 0.4s ease;
    opacity: 0;
}

.project-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
    opacity: 0;
}

.project-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
    opacity: 0;
}

.project-btn:hover {
    background-color: #0055b3;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.project-item:hover .project-info h3,
.project-item:hover .project-info p,
.project-item:hover .project-info .project-btn {
    transform: translateY(0);
    opacity: 1;
}

.projects-cta {
    text-align: center;
    margin-top: 40px;
}

/* Responsive tasarım - Projelerimiz */
@media (max-width: 992px) {
    .projects-gallery {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .projects-gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .project-item {
        height: 250px;
    }
    
    .project-info h3 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .projects-gallery {
        grid-template-columns: 1fr;
    }
}

/* Müşteri Yorumları */
.testimonials {
    background-color: #fff;
}

body[data-theme="dark"] .testimonials {
    background-color: #1f1f1f;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

body[data-theme="dark"] .testimonial {
    background-color: rgba(42, 52, 65, 0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.quote {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
}

body[data-theme="dark"] .quote i {
    color: rgba(255, 255, 255, 0.1);
}

.testimonial p {
    margin-bottom: 20px;
    margin-top: 10px;
    position: relative;
    z-index: 2;
}

body[data-theme="dark"] .testimonial-text {
    color: var(--text-secondary);
}

.client {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.client-info h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

body[data-theme="dark"] .client-info h4 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.client-info p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

body[data-theme="dark"] .client-name {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

body[data-theme="dark"] .client-location {
    color: rgba(255, 255, 255, 0.7);
}

.rating {
    color: #f39c12;
}

body[data-theme="dark"] .rating i {
    color: #f39c12;
}

/* İletişim Bölümü */
.contact {
    background-color: #f9f9f9;
}

body[data-theme="dark"] .contact {
    background-color: #2a2a2a;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

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

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

body[data-theme="dark"] .info-item h3 {
    color: var(--heading-dark);
}

.contact-form {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

body[data-theme="dark"] .contact-form {
    background-color: var(--secondary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    background-color: #f9f9f9;
    transition: var(--transition);
}

body[data-theme="dark"] .form-group input,
body[data-theme="dark"] .form-group select,
body[data-theme="dark"] .form-group textarea {
    background-color: #333;
    border-color: #444;
    color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
}

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

/* CTA Bölümü */
.cta {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 0.9rem;
}

.footer-links h3,
.footer-services h3,
.footer-social h3,
.footer-locations h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-social h3::after,
.footer-locations h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-services a {
    color: #ddd;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-locations p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #ddd;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
}

.footer-bottom a {
    color: #ddd;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* Floating Buttons */
.floating-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.floating-button a:hover {
    transform: scale(1.1);
}

.floating-button i {
    font-size: 2rem;
}

.whatsapp-button {
    background-color: #25d366;
}

.call-button {
    background-color: #3498db;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
}

/* Mobil için uyumluluk */
@media (max-width: 768px) {
    .floating-button {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-button a {
        width: 50px;
        height: 50px;
    }
    
    .floating-button i {
        font-size: 1.5rem;
    }
}

/* Animasyonlar */
.animate-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Tasarım */
@media (max-width: 991px) {
    .container {
        padding: 0 15px;
    }

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

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

    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .service-card-detailed {
        grid-template-columns: 1fr;
    }
    
    .service-card-image {
        height: 300px;
    }

    .products-slider {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        margin: 0 auto;
    }
    
    section {
        width: 100%;
        box-sizing: border-box;
        padding-left: 0;
        padding-right: 0;
        overflow-x: hidden;
    }
    
    .hero .container {
        width: 100%;
        box-sizing: border-box;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .hero {
        width: 100%;
        overflow-x: hidden;
    }
    
    header {
        padding: 10px 0;
    }
    
    header .container {
        flex-wrap: wrap;
    }
    
    .logo {
        margin-bottom: 0;
        flex: 1;
    }
    
    .logo h1 {
        font-size: 1.4rem;
    }
    
    nav {
        justify-content: flex-end;
        width: auto;
        display: flex;
        align-items: center;
    }
    
    .menu {
        position: fixed;
        top: 60px;
        left: 0;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    body[data-theme="dark"] .menu {
        background-color: #1a1a1a;
    }
    
    .menu.active {
        transform: translateY(0);
    }
    
    .menu li {
        margin: 15px 0;
        text-align: center;
    }
    
    .hamburger {
        display: flex;
        z-index: 1000;
        margin-left: 15px;
    }
    
    .hamburger span {
        transition: all 0.3s ease;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .theme-switch-wrapper {
        position: relative;
        top: 0;
        right: 0;
        margin-right: 10px;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
        width: 100%;
    }
    
    .service-card-detailed {
        grid-template-columns: 1fr;
    }
    
    .service-card-image {
        height: 200px;
    }
    
    .features-container,
    .services-container,
    .testimonials-container {
        grid-template-columns: 1fr;
    }

    .products-slider {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
    }

    .product-card {
        flex: 0 0 85%;
    }
    
    .service-features,
    .service-benefits {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links h3::after,
    .footer-services h3::after,
    .footer-social h3::after,
    .footer-locations h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

@media (max-width: 480px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        width: 100%;
        overflow-x: hidden;
    }
    
    .hero .container {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }
    
    .popup-overlay {
        left: 0;
        right: 0;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    .popup-container {
        width: 95%;
        max-width: 350px;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    /* Düğmeler için düzeltmeler */
    .cta-buttons {
        width: 100%;
        box-sizing: border-box;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
}

/* Sayfa Yükleme Animasyonu */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

body[data-theme="dark"] .loader-wrapper {
    background-color: #1a1a1a;
}

.loader {
    width: 60px;
    height: 60px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Popup Stili */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    backdrop-filter: blur(5px);
}

/* Active sınıfı eklendiğinde görünürlük ayarları */
.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    width: 90%;
    max-width: 500px;
    transform: translateY(20px);
    transition: all 0.3s ease-out;
    overflow: hidden;
    box-sizing: border-box;
}

/* Active sınıfı eklendiğinde animasyon */
.popup-overlay.active .popup-container {
    transform: translateY(0);
}

/* Popup içerik stilleri */
.popup-content {
    padding: 25px;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.2s ease;
}

.popup-close:hover {
    background-color: #e74c3c;
    color: white;
    transform: rotate(90deg);
}

.popup-header {
    margin-bottom: 15px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.popup-title {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 8px;
    line-height: 1.3;
}

.popup-subtitle {
    font-size: 16px;
    color: #444;
    font-weight: 500;
}

.popup-body {
    padding: 5px 0 15px;
}

.popup-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.popup-text strong {
    color: #e74c3c;
    font-weight: 700;
}

/* Discount badge */
.discount-badge-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #e74c3c;
    color: white;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    vertical-align: middle;
}

/* Countdown container */
.countdown-container {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    gap: 10px;
}

.countdown-item {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 12px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.countdown-number {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
}

/* CTA Butonu stilini güncelle */
.popup-cta {
    margin-top: 20px;
}

.popup-cta .btn {
    width: 100%;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    background-color: #0066cc;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 102, 204, 0.2);
    text-transform: uppercase;
    border: none;
}

.popup-cta .btn:hover {
    background-color: #0055aa;
    box-shadow: 0 6px 15px rgba(0, 102, 204, 0.3);
}

/* Popup kapatma animasyonu */
.popup-overlay.closing {
    opacity: 0;
}

.popup-overlay.closing .popup-container {
    transform: translateY(20px);
}

/* Dark mode uyarlamaları */
body[data-theme="dark"] .popup-container {
    background-color: #222;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-theme="dark"] .popup-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-theme="dark"] .popup-title {
    color: #4a90e2;
}

body[data-theme="dark"] .popup-subtitle {
    color: #ddd;
}

body[data-theme="dark"] .popup-text {
    color: #ccc;
}

body[data-theme="dark"] .countdown-item {
    background-color: #333;
    border-color: #444;
}

body[data-theme="dark"] .countdown-number {
    color: #4a90e2;
}

body[data-theme="dark"] .countdown-label {
    color: #bbb;
}

body[data-theme="dark"] .popup-close {
    background-color: #333;
    color: #ddd;
}

/* Responsive ayarlar */
@media (max-width: 480px) {
    .popup-container {
        width: 95%;
        max-width: 380px;
    }
    
    .popup-content {
        padding: 20px 15px;
    }
    
    .popup-title {
        font-size: 20px;
    }
    
    .popup-subtitle {
        font-size: 14px;
    }
    
    .countdown-item {
        padding: 10px 5px;
    }
    
    .countdown-number {
        font-size: 20px;
    }
    
    .countdown-label {
        font-size: 10px;
    }
    
    .popup-text {
        font-size: 14px;
        margin-bottom: 15px;
    }
}

/* Torbalı Özel Bölümü Stili */
.torbali-special {
    padding: 70px 0;
    background-color: rgba(230, 126, 34, 0.05);
}

body[data-theme="dark"] .torbali-special {
    background-color: rgba(243, 156, 18, 0.05);
}

.torbali-neighborhoods {
    margin-top: 40px;
    text-align: center;
}

.torbali-neighborhoods h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.torbali-neighborhoods h3::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.neighborhoods-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.neighborhood {
    background-color: #fff;
    color: var(--text-color);
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

body[data-theme="dark"] .neighborhood {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.neighborhood:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    background-color: var(--accent-color);
    color: white;
}

@media (max-width: 768px) {
    .neighborhoods-container {
        gap: 10px;
    }
    
    .neighborhood {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/* Service Card CTA Buttons Stili */
.service-card-content .cta-buttons {
    margin-top: auto;
    display: flex;
    gap: 15px;
}

/* Neden Bizi Tercih Etmelisiniz Bölümü */
.why-choose-us {
    background-color: #f9f9f9;
    position: relative;
    overflow: visible;
    z-index: 1;
}

body[data-theme="dark"] .why-choose-us {
    background-color: #1f2937;
}

.why-choose-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 102, 204, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

body[data-theme="dark"] .why-choose-us::before {
    background: radial-gradient(circle at center, rgba(74, 144, 226, 0.05) 0%, rgba(31, 41, 55, 0) 70%);
}

.why-choose-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.why-choose-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

body[data-theme="dark"] .feature-item {
    background-color: #2d3748;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

body[data-theme="dark"] .feature-item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.feature-item:hover::after {
    width: 100%;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    background-color: var(--accent-color);
}

.feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 600;
}

body[data-theme="dark"] .feature-content h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

body[data-theme="dark"] .feature-content p {
    color: var(--text-secondary);
}

.cta-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    position: relative;
    z-index: 50;
}

.cta-container .btn {
    position: relative;
    z-index: 50;
    cursor: pointer;
    pointer-events: auto;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-title {
        font-size: 2rem;
    }
    
    .why-choose-subtitle {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 20px;
    }
}

@keyframes popupFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
}

/* Daha küçük mobil ekranlar için ek düzeltmeler */
@media (max-width: 360px) {
    .popup-container {
        width: 95%;
        max-width: 300px;
    }
    
    .popup-title {
        font-size: 1.1rem;
    }
    
    .popup-subtitle {
        font-size: 0.8rem;
    }
    
    .countdown-number {
        font-size: 1rem;
    }
    
    .countdown-label {
        font-size: 0.55rem;
    }
    
    .discount-badge-inline {
        font-size: 0.75rem;
        padding: 2px 5px;
    }
}

/* Hizmetler Sidebar Stili */
.services-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(to right, rgba(0, 102, 204, 0.95), rgba(0, 102, 204, 0.85));
    padding: 15px;
    border-radius: 0 15px 15px 0;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 220px;
    max-width: 80%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateY(-50%) translateX(-100%);
}

.services-sidebar.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.sidebar-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: center;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-link {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.sidebar-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 0 2px 2px 0;
    transition: all 0.3s ease;
    opacity: 0;
}

.sidebar-link:hover, .sidebar-link.active {
    background-color: rgba(255, 255, 255, 0.15);
}

.sidebar-link:hover::before, .sidebar-link.active::before {
    opacity: 1;
}

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

.sidebar-link.active {
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.sidebar-toggle {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 102, 204, 0.9);
    width: 30px;
    height: 40px;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sidebar-toggle:hover {
    background-color: rgba(0, 102, 204, 1);
}

.sidebar-toggle i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.services-sidebar.collapsed {
    transform: translateY(-50%) translateX(-100%);
}

.services-sidebar.collapsed .sidebar-toggle i {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .services-sidebar {
        width: 180px;
        padding: 12px;
    }
    
    .sidebar-title {
        font-size: 1rem;
    }
    
    .sidebar-link {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .services-sidebar {
        display: none;
    }
}

/* Ürün kartı hover class'ı */
.product-card.hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-card.hover .product-card-icon {
    background-color: var(--primary-color);
}

.product-card.hover .product-card-icon i {
    color: #fff;
}

body[data-theme="dark"] .primary-btn {
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

body[data-theme="dark"] .primary-btn:hover {
    background-color: #3a84d9;
    box-shadow: 0 6px 16px rgba(74, 144, 226, 0.4);
}

/* Footer başlıkları düzeltme */
body[data-theme="dark"] .footer-logo h2,
body[data-theme="dark"] .footer-links h3,
body[data-theme="dark"] .footer-services h3,
body[data-theme="dark"] .footer-locations h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Service kart içindeki başlıklar */
body[data-theme="dark"] .service-feature span,
body[data-theme="dark"] .benefit span {
    color: var(--text-secondary);
}

/* Feature kartları başlık ve metinleri */
body[data-theme="dark"] .feature-box h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

body[data-theme="dark"] .feature-box p {
    color: var(--text-secondary);
}

/* İletişim bilgisi ikonlarının dark mode düzenlemesi */
body[data-theme="dark"] .info-item i {
    color: rgba(255, 255, 255, 0.9);
}

body[data-theme="dark"] .info-item h3 {
    color: var(--heading-dark);
}

body[data-theme="dark"] .info-item p,
body[data-theme="dark"] .info-item a {
    color: var(--text-secondary);
}

/* Footer linkleri iyileştirme */
body[data-theme="dark"] .footer-links a,
body[data-theme="dark"] .footer-services a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

body[data-theme="dark"] .footer-links a:hover,
body[data-theme="dark"] .footer-services a:hover {
    color: var(--primary-color);
}

/* Tüm mobil görünüm düzeltmeleri */
html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        margin: 0 auto;
    }
    
    section {
        width: 100%;
        box-sizing: border-box;
        padding-left: 0;
        padding-right: 0;
    }
    
    .hero .container {
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .hero .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .popup-overlay {
        left: 0;
        right: 0;
        width: 100%;
    }
    
    .popup-container {
        width: 92%;
        max-width: 330px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
    
    /* Düğmeler için düzeltmeler */
    .cta-buttons {
        width: 100%;
        box-sizing: border-box;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
}

/* Torbalı Showcase Bölümü Stilleri */
.torbali-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-bg, #f8f9fa) 0%, var(--secondary-light-bg, #e9ecef) 100%);
    position: relative;
    overflow: hidden;
}

body[data-theme="dark"] .torbali-showcase {
    background: linear-gradient(135deg, var(--dark-bg, #212529) 0%, var(--secondary-dark-bg, #343a40) 100%);
}

.torbali-showcase::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(52, 152, 219, 0.1);
    top: -150px;
    left: -150px;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.torbali-showcase::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.1);
    bottom: -200px;
    right: -200px;
    z-index: 1;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.torbali-showcase .container {
    position: relative;
    z-index: 2;
}

.torbali-showcase-content {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--card-bg, #fff);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

body[data-theme="dark"] .torbali-showcase-content {
    background: var(--card-dark-bg, #2a3441);
}

.torbali-showcase-image {
    flex: 1;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.showcase-badge {
    position: absolute;
    top: 20px;
    right: 0;
    background-color: #25d366;
    color: white;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px 0 0 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
}

.torbali-showcase-content:hover .showcase-image {
    transform: scale(1.05);
}

.torbali-showcase-info {
    flex: 1;
    padding: 40px;
}

.torbali-showcase-info h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--heading-color, #333);
    position: relative;
    padding-bottom: 15px;
}

body[data-theme="dark"] .torbali-showcase-info h2 {
    color: var(--heading-color-dark, #fff);
}

.torbali-showcase-info h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-color, #3498db);
    border-radius: 3px;
}

.torbali-showcase-info p {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color, #666);
}

body[data-theme="dark"] .torbali-showcase-info p {
    color: var(--text-color-dark, #b3b3b3);
}

.torbali-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-item i {
    color: var(--accent-color, #2ecc71);
    font-size: 16px;
    width: 25px;
    height: 25px;
    background: rgba(46, 204, 113, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

body[data-theme="dark"] .benefit-item i {
    background: rgba(46, 204, 113, 0.2);
}

.benefit-item span {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color, #666);
}

body[data-theme="dark"] .benefit-item span {
    color: var(--text-color-dark, #b3b3b3);
}

.torbali-cta {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.torbali-cta .btn {
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.torbali-cta .primary-btn {
    background: var(--primary-color, #3498db);
    color: white;
    border: none;
}

.torbali-cta .primary-btn:hover {
    background: var(--primary-color-hover, #2980b9);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.torbali-cta .secondary-btn {
    background: transparent;
    color: var(--primary-color, #3498db);
    border: 1px solid var(--primary-color, #3498db);
}

.torbali-cta .secondary-btn:hover {
    background: rgba(52, 152, 219, 0.1);
    transform: translateY(-3px);
}

/* Responsive Design for Torbalı Showcase */
@media (max-width: 992px) {
    .torbali-showcase-content {
        flex-direction: column;
    }
    
    .torbali-showcase-image {
        width: 100%;
        min-height: 300px;
    }
    
    .torbali-showcase-info {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .torbali-benefits {
        grid-template-columns: 1fr;
    }
    
    .torbali-showcase-info h2 {
        font-size: 24px;
    }
    
    .torbali-showcase-info p {
        font-size: 15px;
    }
    
    .torbali-cta {
        flex-direction: column;
    }
}

/* Torbalı Kartları Stilleri */
.torbali-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.torbali-card {
    background: var(--card-bg, #fff);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-top: 4px solid var(--primary-color, #3498db);
}

body[data-theme="dark"] .torbali-card {
    background: var(--card-dark-bg, #2a3441);
    border-top: 4px solid var(--primary-color, #3498db);
}

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

.torbali-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.torbali-card:hover .torbali-card-img {
    transform: scale(1.05);
}

.torbali-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.torbali-card-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--heading-color, #333);
}

body[data-theme="dark"] .torbali-card-content h3 {
    color: var(--heading-color-dark, #fff);
}

.torbali-card-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color, #666);
}

body[data-theme="dark"] .torbali-card-content p {
    color: var(--text-color-dark, #b3b3b3);
}

@media (max-width: 992px) {
    .torbali-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .torbali-cards {
        grid-template-columns: 1fr;
    }
}

/* Ürünler Sayfası Stil Tanımlamaları */
.products-page {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-color-light) 0%, var(--bg-color-light-2) 100%);
}

body[data-theme="dark"] .products-page {
    background: linear-gradient(135deg, var(--bg-color-dark) 0%, var(--bg-color-dark-2) 100%);
}

.product-category-nav {
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    padding: 15px;
    position: sticky;
    top: 80px;
    z-index: 10;
    transition: all 0.3s ease;
}

body[data-theme="dark"] .product-category-nav {
    background: var(--card-bg-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.product-category-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.product-category-nav li a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

body[data-theme="dark"] .product-category-nav li a {
    color: var(--text-color-dark);
}

.product-category-nav li a:hover,
.product-category-nav li a.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.product-category-nav li a i {
    font-size: 12px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.product-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

body[data-theme="dark"] .product-item {
    background: #2f3b4d;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.product-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    z-index: 5;
}

.product-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background-color: #ffffff;
    border-radius: 0 0 12px 12px;
}

body[data-theme="dark"] .product-content {
    background-color: #2a3441;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 10px;
}

body[data-theme="dark"] .product-title {
    color: var(--heading-color-dark);
}

.product-description {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.5;
    flex: 1;
}

body[data-theme="dark"] .product-description {
    color: var(--text-color-dark);
}

.product-features {
    margin-bottom: 15px;
}

.product-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    font-size: 13px;
}

.product-feature i {
    color: var(--primary-color);
    font-size: 12px;
}

.product-feature span {
    color: var(--text-color);
}

body[data-theme="dark"] .product-feature span {
    color: var(--text-color-dark);
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.btn-product-detail {
    flex: 1;
    padding: 10px 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-product-detail:hover {
    background: var(--primary-color-dark);
    transform: translateY(-3px);
}

.btn-product-whatsapp {
    padding: 10px 15px;
    background: #25d366;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-product-whatsapp:hover {
    background: #1da851;
    transform: translateY(-3px);
}

/* Ürün Detay Sayfası */
.product-detail-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-color-light) 0%, var(--bg-color-light-2) 100%);
}

body[data-theme="dark"] .product-detail-section {
    background: linear-gradient(135deg, var(--bg-color-dark) 0%, var(--bg-color-dark-2) 100%);
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.product-gallery {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

body[data-theme="dark"] .product-gallery {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-main-image {
    height: 400px;
    overflow: hidden;
}

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

.product-thumbnails {
    display: flex;
    gap: 10px;
    padding: 15px;
    background: var(--white-color);
}

body[data-theme="dark"] .product-thumbnails {
    background: var(--card-bg-dark);
}

.product-thumb {
    height: 80px;
    width: 80px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.product-thumb.active,
.product-thumb:hover {
    opacity: 1;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 20px;
    background: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body[data-theme="dark"] .product-info {
    background: var(--card-bg-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-info-title {
    font-size: 26px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

body[data-theme="dark"] .product-info-title {
    color: var(--heading-color-dark);
    border-bottom: 1px solid var(--border-color-dark);
}

.product-info-description {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

body[data-theme="dark"] .product-info-description {
    color: var(--text-color-dark);
}

.product-info-features {
    margin-bottom: 20px;
}

.product-info-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.product-info-feature i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
}

.product-info-feature span {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.5;
}

body[data-theme="dark"] .product-info-feature span {
    color: var(--text-color-dark);
}

.product-cta {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.btn-request-quote {
    flex: 1;
    padding: 12px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-request-quote:hover {
    background: var(--primary-color-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.btn-call-now {
    padding: 12px 20px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-call-now:hover {
    background: rgba(52, 152, 219, 0.1);
    transform: translateY(-3px);
}

.product-tabs {
    margin-top: 40px;
}

.tab-buttons {
    display: flex;
    gap: 5px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

body[data-theme="dark"] .tab-buttons {
    border-bottom: 1px solid var(--border-color-dark);
}

.tab-button {
    padding: 12px 25px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

body[data-theme="dark"] .tab-button {
    color: var(--text-color-dark);
}

.tab-button.active,
.tab-button:hover {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.tab-content {
    display: none;
    padding: 20px;
    background: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

body[data-theme="dark"] .tab-content {
    background: var(--card-bg-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: 20px;
    color: var(--heading-color);
    margin-bottom: 15px;
}

body[data-theme="dark"] .tab-content h3 {
    color: var(--heading-color-dark);
}

.tab-content p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 15px;
}

body[data-theme="dark"] .tab-content p {
    color: var(--text-color-dark);
}

.tab-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.tab-content ul li {
    margin-bottom: 8px;
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.5;
}

body[data-theme="dark"] .tab-content ul li {
    color: var(--text-color-dark);
}

.faq-item {
    margin-bottom: 15px;
    background: var(--bg-color-light);
    border-radius: 8px;
    overflow: hidden;
}

body[data-theme="dark"] .faq-item {
    background: var(--bg-color-dark);
}

.faq-question {
    position: relative;
    padding: 15px 20px;
    margin-bottom: 1px;
    background-color: #f8f9fa;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

body[data-theme="dark"] .faq-question {
    background-color: #2c3e50;
    color: #ecf0f1;
}

.faq-question:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    transition: all 0.3s ease;
    font-size: 18px;
    color: #3498db;
}

.faq-question.active {
    background-color: #e9f5ff;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

body[data-theme="dark"] .faq-question.active {
    background-color: #34495e;
}

.faq-question.active:after {
    transform: rotate(180deg);
}

.faq-answer { background-color: #fff; padding: 0; max-height: 0; overflow: hidden; transition: all 0.5s ease; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; margin-top: 0; margin-bottom: 0; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); opacity: 0; }

body[data-theme="dark"] .faq-answer { background-color: #fff; padding: 0; max-height: 0; overflow: hidden; transition: all 0.5s ease; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; margin-top: 0; margin-bottom: 0; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); opacity: 0; }

.faq-answer.active { padding: 20px; max-height: 300px; opacity: 1; margin-bottom: 10px; }

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

body[data-theme="dark"] .faq-answer p {
    color: #b3b3b3;
}

.related-products-section {
    padding: 60px 0;
    background: var(--bg-color-light-2);
}

body[data-theme="dark"] .related-products-section {
    background: var(--bg-color-dark-2);
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* Responsive tasarım için media queries */
@media (max-width: 992px) {
    .product-detail-container {
        grid-template-columns: 1fr;
    }
    
    .product-main-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .product-category-nav {
        padding: 10px;
        overflow-x: auto;
        white-space: nowrap;
        justify-content: flex-start;
    }
    
    .product-category-nav ul {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .product-main-image {
        height: 300px;
    }
    
    .product-thumbnails {
        overflow-x: auto;
    }
    
    .product-cta {
        flex-direction: column;
    }
    
    .tab-buttons {
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .tab-button {
        padding: 10px 15px;
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .product-main-image {
        height: 250px;
    }
    
    .product-thumb {
        height: 60px;
        width: 60px;
    }
    
    .product-info-title {
        font-size: 22px;
    }
}

/* Proje resimleri için ek düzenleme */
.projects.clear-images .gallery-item img {
    filter: none !important;
    opacity: 1 !important;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
} 

/* Proje Detay Modalı */
.project-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.project-modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 900px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.4s ease-out;
}

body[data-theme="dark"] .project-modal-content {
    background-color: #2a3441;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.project-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #333;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

body[data-theme="dark"] .project-modal-close {
    color: white;
    background: rgba(0, 0, 0, 0.3);
}

.project-modal-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

#projectModalTitle {
    margin-top: 5px;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

body[data-theme="dark"] #projectModalTitle {
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#projectModalImage {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

body[data-theme="dark"] #projectModalImage {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .project-modal {
        padding-top: 20px;
    }
    
    .project-modal-content {
        width: 95%;
        padding: 15px;
    }
    
    #projectModalTitle {
        font-size: 18px;
        margin-bottom: 15px;
    }
}

/* Müşteri Yorumları */
.testimonials {
    background-color: #fff;
}

body[data-theme="dark"] .testimonials {
    background-color: #1f1f1f;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

body[data-theme="dark"] .testimonial {
    background-color: rgba(42, 52, 65, 0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.quote {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
}

body[data-theme="dark"] .quote i {
    color: rgba(255, 255, 255, 0.1);
}

.testimonial p {
    margin-bottom: 20px;
    margin-top: 10px;
    position: relative;
    z-index: 2;
}

body[data-theme="dark"] .testimonial-text {
    color: var(--text-secondary);
}

.client {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.client-info h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

body[data-theme="dark"] .client-info h4 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.client-info p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

body[data-theme="dark"] .client-name {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

body[data-theme="dark"] .client-location {
    color: rgba(255, 255, 255, 0.7);
}

.rating {
    color: #f39c12;
}

body[data-theme="dark"] .rating i {
    color: #f39c12;
}

/* İletişim Bölümü */
.contact {
    background-color: #f9f9f9;
}

body[data-theme="dark"] .contact {
    background-color: #2a2a2a;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

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

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

body[data-theme="dark"] .info-item h3 {
    color: var(--heading-dark);
}

.contact-form {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

body[data-theme="dark"] .contact-form {
    background-color: var(--secondary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    background-color: #f9f9f9;
    transition: var(--transition);
}

body[data-theme="dark"] .form-group input,
body[data-theme="dark"] .form-group select,
body[data-theme="dark"] .form-group textarea {
    background-color: #333;
    border-color: #444;
    color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
}

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

/* CTA Bölümü */
.cta {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 0.9rem;
}

.footer-links h3,
.footer-services h3,
.footer-social h3,
.footer-locations h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-social h3::after,
.footer-locations h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-services a {
    color: #ddd;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-locations p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #ddd;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
}

.footer-bottom a {
    color: #ddd;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* Floating Buttons */
.floating-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.floating-button a:hover {
    transform: scale(1.1);
}

.floating-button i {
    font-size: 2rem;
}

.whatsapp-button {
    background-color: #25d366;
}

.call-button {
    background-color: #3498db;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
}

/* Mobil için uyumluluk */
@media (max-width: 768px) {
    .floating-button {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-button a {
        width: 50px;
        height: 50px;
    }
    
    .floating-button i {
        font-size: 1.5rem;
    }
}

/* Animasyonlar */
.animate-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Tasarım */
@media (max-width: 991px) {
    .container {
        padding: 0 15px;
    }

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

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

    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .service-card-detailed {
        grid-template-columns: 1fr;
    }
    
    .service-card-image {
        height: 300px;
    }

    .products-slider {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        margin: 0 auto;
    }
    
    section {
        width: 100%;
        box-sizing: border-box;
        padding-left: 0;
        padding-right: 0;
        overflow-x: hidden;
    }
    
    .hero .container {
        width: 100%;
        box-sizing: border-box;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .hero {
        width: 100%;
        overflow-x: hidden;
    }
    
    header {
        padding: 10px 0;
    }
    
    header .container {
        flex-wrap: wrap;
    }
    
    .logo {
        margin-bottom: 0;
        flex: 1;
    }
    
    .logo h1 {
        font-size: 1.4rem;
    }
    
    nav {
        justify-content: flex-end;
        width: auto;
        display: flex;
        align-items: center;
    }
    
    .menu {
        position: fixed;
        top: 60px;
        left: 0;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    body[data-theme="dark"] .menu {
        background-color: #1a1a1a;
    }
    
    .menu.active {
        transform: translateY(0);
    }
    
    .menu li {
        margin: 15px 0;
        text-align: center;
    }
    
    .hamburger {
        display: flex;
        z-index: 1000;
        margin-left: 15px;
    }
    
    .hamburger span {
        transition: all 0.3s ease;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .theme-switch-wrapper {
        position: relative;
        top: 0;
        right: 0;
        margin-right: 10px;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
        width: 100%;
    }
    
    .service-card-detailed {
        grid-template-columns: 1fr;
    }
    
    .service-card-image {
        height: 200px;
    }
    
    .features-container,
    .services-container,
    .testimonials-container {
        grid-template-columns: 1fr;
    }

    .products-slider {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
    }

    .product-card {
        flex: 0 0 85%;
    }
    
    .service-features,
    .service-benefits {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links h3::after,
    .footer-services h3::after,
    .footer-social h3::after,
    .footer-locations h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

@media (max-width: 480px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        width: 100%;
        overflow-x: hidden;
    }
    
    .hero .container {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }
    
    .popup-overlay {
        left: 0;
        right: 0;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    .popup-container {
        width: 95%;
        max-width: 350px;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    /* Düğmeler için düzeltmeler */
    .cta-buttons {
        width: 100%;
        box-sizing: border-box;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
}

/* Sayfa Yükleme Animasyonu */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

body[data-theme="dark"] .loader-wrapper {
    background-color: #1a1a1a;
}

.loader {
    width: 60px;
    height: 60px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Popup Stili */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    backdrop-filter: blur(5px);
}

/* Active sınıfı eklendiğinde görünürlük ayarları */
.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    width: 90%;
    max-width: 500px;
    transform: translateY(20px);
    transition: all 0.3s ease-out;
    overflow: hidden;
    box-sizing: border-box;
}

/* Active sınıfı eklendiğinde animasyon */
.popup-overlay.active .popup-container {
    transform: translateY(0);
}

/* Popup içerik stilleri */
.popup-content {
    padding: 25px;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.2s ease;
}

.popup-close:hover {
    background-color: #e74c3c;
    color: white;
    transform: rotate(90deg);
}

.popup-header {
    margin-bottom: 15px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.popup-title {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 8px;
    line-height: 1.3;
}

.popup-subtitle {
    font-size: 16px;
    color: #444;
    font-weight: 500;
}

.popup-body {
    padding: 5px 0 15px;
}

.popup-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.popup-text strong {
    color: #e74c3c;
    font-weight: 700;
}

/* Discount badge */
.discount-badge-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #e74c3c;
    color: white;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    vertical-align: middle;
}

/* Countdown container */
.countdown-container {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    gap: 10px;
}

.countdown-item {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 12px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.countdown-number {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
}

/* CTA Butonu stilini güncelle */
.popup-cta {
    margin-top: 20px;
}

.popup-cta .btn {
    width: 100%;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    background-color: #0066cc;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 102, 204, 0.2);
    text-transform: uppercase;
    border: none;
}

.popup-cta .btn:hover {
    background-color: #0055aa;
    box-shadow: 0 6px 15px rgba(0, 102, 204, 0.3);
}

/* Popup kapatma animasyonu */
.popup-overlay.closing {
    opacity: 0;
}

.popup-overlay.closing .popup-container {
    transform: translateY(20px);
}

/* Dark mode uyarlamaları */
body[data-theme="dark"] .popup-container {
    background-color: #222;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-theme="dark"] .popup-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-theme="dark"] .popup-title {
    color: #4a90e2;
}

body[data-theme="dark"] .popup-subtitle {
    color: #ddd;
}

body[data-theme="dark"] .popup-text {
    color: #ccc;
}

body[data-theme="dark"] .countdown-item {
    background-color: #333;
    border-color: #444;
}

body[data-theme="dark"] .countdown-number {
    color: #4a90e2;
}

body[data-theme="dark"] .countdown-label {
    color: #bbb;
}

body[data-theme="dark"] .popup-close {
    background-color: #333;
    color: #ddd;
}

/* Responsive ayarlar */
@media (max-width: 480px) {
    .popup-container {
        width: 95%;
        max-width: 380px;
    }
    
    .popup-content {
        padding: 20px 15px;
    }
    
    .popup-title {
        font-size: 20px;
    }
    
    .popup-subtitle {
        font-size: 14px;
    }
    
    .countdown-item {
        padding: 10px 5px;
    }
    
    .countdown-number {
        font-size: 20px;
    }
    
    .countdown-label {
        font-size: 10px;
    }
    
    .popup-text {
        font-size: 14px;
        margin-bottom: 15px;
    }
}

/* Torbalı Özel Bölümü Stili */
.torbali-special {
    padding: 70px 0;
    background-color: rgba(230, 126, 34, 0.05);
}

body[data-theme="dark"] .torbali-special {
    background-color: rgba(243, 156, 18, 0.05);
}

.torbali-neighborhoods {
    margin-top: 40px;
    text-align: center;
}

.torbali-neighborhoods h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.torbali-neighborhoods h3::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.neighborhoods-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.neighborhood {
    background-color: #fff;
    color: var(--text-color);
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

body[data-theme="dark"] .neighborhood {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.neighborhood:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    background-color: var(--accent-color);
    color: white;
}

@media (max-width: 768px) {
    .neighborhoods-container {
        gap: 10px;
    }
    
    .neighborhood {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/* Service Card CTA Buttons Stili */
.service-card-content .cta-buttons {
    margin-top: auto;
    display: flex;
    gap: 15px;
}

/* Neden Bizi Tercih Etmelisiniz Bölümü */
.why-choose-us {
    background-color: #f9f9f9;
    position: relative;
    overflow: visible;
    z-index: 1;
}

body[data-theme="dark"] .why-choose-us {
    background-color: #1f2937;
}

.why-choose-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 102, 204, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

body[data-theme="dark"] .why-choose-us::before {
    background: radial-gradient(circle at center, rgba(74, 144, 226, 0.05) 0%, rgba(31, 41, 55, 0) 70%);
}

.why-choose-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.why-choose-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

body[data-theme="dark"] .feature-item {
    background-color: #2d3748;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

body[data-theme="dark"] .feature-item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.feature-item:hover::after {
    width: 100%;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    background-color: var(--accent-color);
}

.feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 600;
}

body[data-theme="dark"] .feature-content h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

body[data-theme="dark"] .feature-content p {
    color: var(--text-secondary);
}

.cta-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    position: relative;
    z-index: 50;
}

.cta-container .btn {
    position: relative;
    z-index: 50;
    cursor: pointer;
    pointer-events: auto;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-title {
        font-size: 2rem;
    }
    
    .why-choose-subtitle {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 20px;
    }
}

@keyframes popupFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
}

/* Daha küçük mobil ekranlar için ek düzeltmeler */
@media (max-width: 360px) {
    .popup-container {
        width: 95%;
        max-width: 300px;
    }
    
    .popup-title {
        font-size: 1.1rem;
    }
    
    .popup-subtitle {
        font-size: 0.8rem;
    }
    
    .countdown-number {
        font-size: 1rem;
    }
    
    .countdown-label {
        font-size: 0.55rem;
    }
    
    .discount-badge-inline {
        font-size: 0.75rem;
        padding: 2px 5px;
    }
}

/* Hizmetler Sidebar Stili */
.services-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(to right, rgba(0, 102, 204, 0.95), rgba(0, 102, 204, 0.85));
    padding: 15px;
    border-radius: 0 15px 15px 0;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 220px;
    max-width: 80%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateY(-50%) translateX(-100%);
}

.services-sidebar.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.sidebar-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: center;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-link {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.sidebar-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 0 2px 2px 0;
    transition: all 0.3s ease;
    opacity: 0;
}

.sidebar-link:hover, .sidebar-link.active {
    background-color: rgba(255, 255, 255, 0.15);
}

.sidebar-link:hover::before, .sidebar-link.active::before {
    opacity: 1;
}

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

.sidebar-link.active {
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.sidebar-toggle {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 102, 204, 0.9);
    width: 30px;
    height: 40px;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sidebar-toggle:hover {
    background-color: rgba(0, 102, 204, 1);
}

.sidebar-toggle i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.services-sidebar.collapsed {
    transform: translateY(-50%) translateX(-100%);
}

.services-sidebar.collapsed .sidebar-toggle i {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .services-sidebar {
        width: 180px;
        padding: 12px;
    }
    
    .sidebar-title {
        font-size: 1rem;
    }
    
    .sidebar-link {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .services-sidebar {
        display: none;
    }
}

/* Ürün kartı hover class'ı */
.product-card.hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-card.hover .product-card-icon {
    background-color: var(--primary-color);
}

.product-card.hover .product-card-icon i {
    color: #fff;
}

body[data-theme="dark"] .primary-btn {
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

body[data-theme="dark"] .primary-btn:hover {
    background-color: #3a84d9;
    box-shadow: 0 6px 16px rgba(74, 144, 226, 0.4);
}

/* Footer başlıkları düzeltme */
body[data-theme="dark"] .footer-logo h2,
body[data-theme="dark"] .footer-links h3,
body[data-theme="dark"] .footer-services h3,
body[data-theme="dark"] .footer-locations h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Service kart içindeki başlıklar */
body[data-theme="dark"] .service-feature span,
body[data-theme="dark"] .benefit span {
    color: var(--text-secondary);
}

/* Feature kartları başlık ve metinleri */
body[data-theme="dark"] .feature-box h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

body[data-theme="dark"] .feature-box p {
    color: var(--text-secondary);
}

/* İletişim bilgisi ikonlarının dark mode düzenlemesi */
body[data-theme="dark"] .info-item i {
    color: rgba(255, 255, 255, 0.9);
}

body[data-theme="dark"] .info-item h3 {
    color: var(--heading-dark);
}

body[data-theme="dark"] .info-item p,
body[data-theme="dark"] .info-item a {
    color: var(--text-secondary);
}

/* Footer linkleri iyileştirme */
body[data-theme="dark"] .footer-links a,
body[data-theme="dark"] .footer-services a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

body[data-theme="dark"] .footer-links a:hover,
body[data-theme="dark"] .footer-services a:hover {
    color: var(--primary-color);
}

/* Tüm mobil görünüm düzeltmeleri */
html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        margin: 0 auto;
    }
    
    section {
        width: 100%;
        box-sizing: border-box;
        padding-left: 0;
        padding-right: 0;
    }
    
    .hero .container {
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .hero .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .popup-overlay {
        left: 0;
        right: 0;
        width: 100%;
    }
    
    .popup-container {
        width: 92%;
        max-width: 330px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
    
    /* Düğmeler için düzeltmeler */
    .cta-buttons {
        width: 100%;
        box-sizing: border-box;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
}

/* Torbalı Showcase Bölümü Stilleri */
.torbali-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-bg, #f8f9fa) 0%, var(--secondary-light-bg, #e9ecef) 100%);
    position: relative;
    overflow: hidden;
}

body[data-theme="dark"] .torbali-showcase {
    background: linear-gradient(135deg, var(--dark-bg, #212529) 0%, var(--secondary-dark-bg, #343a40) 100%);
}

.torbali-showcase::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(52, 152, 219, 0.1);
    top: -150px;
    left: -150px;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.torbali-showcase::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.1);
    bottom: -200px;
    right: -200px;
    z-index: 1;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.torbali-showcase .container {
    position: relative;
    z-index: 2;
}

.torbali-showcase-content {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--card-bg, #fff);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

body[data-theme="dark"] .torbali-showcase-content {
    background: var(--card-dark-bg, #2a3441);
}

.torbali-showcase-image {
    flex: 1;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.showcase-badge {
    position: absolute;
    top: 20px;
    right: 0;
    background-color: #25d366;
    color: white;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px 0 0 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
}

.torbali-showcase-content:hover .showcase-image {
    transform: scale(1.05);
}

.torbali-showcase-info {
    flex: 1;
    padding: 40px;
}

.torbali-showcase-info h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--heading-color, #333);
    position: relative;
    padding-bottom: 15px;
}

body[data-theme="dark"] .torbali-showcase-info h2 {
    color: var(--heading-color-dark, #fff);
}

.torbali-showcase-info h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-color, #3498db);
    border-radius: 3px;
}

.torbali-showcase-info p {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color, #666);
}

body[data-theme="dark"] .torbali-showcase-info p {
    color: var(--text-color-dark, #b3b3b3);
}

.torbali-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-item i {
    color: var(--accent-color, #2ecc71);
    font-size: 16px;
    width: 25px;
    height: 25px;
    background: rgba(46, 204, 113, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

body[data-theme="dark"] .benefit-item i {
    background: rgba(46, 204, 113, 0.2);
}

.benefit-item span {
    font-size: 15px;
}

/* Genel CSS Reset ve Değişkenler */
:root {
    --primary-color: #0066cc;
    --secondary-color: #2c3e50;
    --accent-color: #e67e22;
    --light-color: #ecf0f1;
    --dark-color: #1a1a1a;
    --text-color: #333;
    --text-light: #f8f9fa;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 5px;
    --container-width: 1200px;
    --heading-dark: #f8f9fa;
    --heading-light: #333;
}

/* Dark Mode */
[data-theme="dark"] {
    --primary-color: #4a90e2;
    --secondary-color: #34495e;
    --accent-color: #f39c12;
    --light-color: #2c3e50;
    --dark-color: #f8f9fa;
    --text-color: #f8f9fa;
    --text-light: #1a1a1a;
    --box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
    --heading-dark: #ffffff;
    --heading-light: #f0f0f0;
    --text-secondary: rgba(255, 255, 255, 0.85);
}

body[data-theme="dark"] h2,
body[data-theme="dark"] h3,
body[data-theme="dark"] h4 {
    color: var(--heading-dark);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

body[data-theme="dark"] p {
    color: var(--text-secondary);
}

/* Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Header Stili */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--box-shadow);
    padding: 15px 0;
    transition: var(--transition);
}

body[data-theme="dark"] header {
    background-color: rgba(26, 26, 26, 0.95);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

nav {
    display: flex;
    align-items: center;
}

.menu {
    display: flex;
}

.menu li {
    margin-left: 30px;
}

.menu a {
    position: relative;
    font-weight: 500;
    padding: 5px 0;
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 2px 0;
    transition: var(--transition);
}

/* Dark/Light Mode Switch */
.theme-switch-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 15px;
    z-index: 1001;
}

.theme-switch {
    display: inline-block;
    height: 26px;
    position: relative;
    width: 50px;
}

.theme-switch input {
    display: none;
}

.slider {
    background-color: #ccc;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
}

.slider .fa-sun {
    color: #f39c12;
    font-size: 14px;
    margin-left: 2px;
}

.slider .fa-moon {
    color: #f8f9fa;
    font-size: 14px;
    margin-right: 2px;
}

.slider:before {
    background-color: #fff;
    bottom: 3px;
    content: "";
    height: 20px;
    left: 3px;
    position: absolute;
    transition: .4s;
    width: 20px;
    z-index: 2;
}

input:checked + .slider {
    background-color: var(--secondary-color);
}

input:checked + .slider:before {
    transform: translateX(24px);
}

.slider.round {
    border-radius: 24px;
}

.slider.round:before {
    border-radius: 50%;
}

.theme-switch-wrapper em {
    margin-left: 10px;
    font-size: 1rem;
    color: var(--text-color);
}

/* Hero Bölümü */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

/* İzmir Hizmet Bölgeleri Stili */
.service-areas {
    background-color: var(--light-color);
    padding: 80px 0;
}

.areas-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.area-column {
    background-color: #fff;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

body[data-theme="dark"] .area-column {
    background-color: rgba(42, 52, 65, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.area-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.area-column h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

body[data-theme="dark"] .area-column h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

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

.area-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.area-column ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.area-column ul li i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

body[data-theme="dark"] .area-column ul li i {
    color: var(--primary-color);
}

body[data-theme="dark"] .area-column ul li {
    color: var(--text-secondary);
}

/* Aşağı doğru check ikonları renk düzeltmesi */
body[data-theme="dark"] .fa-check-circle {
    color: var(--primary-color);
}

/* Butonlar */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.primary-btn {
    background-color: var(--primary-color);
    color: #fff;
}

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

.secondary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.hero .secondary-btn {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

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

.hero .secondary-btn:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.small-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
}

/* Section Stili */
section {
    padding: 80px 0;
    width: 100%;
    box-sizing: border-box;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    color: var(--heading-light);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

body[data-theme="dark"] .section-title h2 {
    color: var(--heading-dark);
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

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

.section-title p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Özellikler Bölümü */
.features {
    background-color: var(--light-color);
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

body[data-theme="dark"] .feature-box {
    background-color: var(--secondary-color);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-box .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
}

.feature-box .icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.feature-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

body[data-theme="dark"] .feature-box h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-box p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

body[data-theme="dark"] .feature-box p {
    color: var(--text-secondary);
}

/* Hizmetler Bölümü - Yeni Detaylı Hizmet Kartları */
.services {
    background-color: #f9f9f9;
}

body[data-theme="dark"] .services {
    background-color: #2a2a2a;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card-detailed {
    display: grid;
    grid-template-columns: 1fr 2fr;
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

body[data-theme="dark"] .service-card-detailed {
    background-color: var(--secondary-color);
}

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

.service-card-image {
    height: 100%;
    overflow: hidden;
}

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

.service-card-detailed:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.service-card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

body[data-theme="dark"] .service-card-content h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-feature i {
    color: var(--primary-color);
    font-size: 1rem;
}

.service-card-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
    background-color: rgba(0, 102, 204, 0.05);
    padding: 15px;
    border-radius: var(--border-radius);
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.service-card-content .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* Eski Hizmet Kartları Stili - Hizmetler Bölümündeki Kartlar için */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

body[data-theme="dark"] .service-card {
    background-color: var(--secondary-color);
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

body[data-theme="dark"] .service-content h3 {
    color: var(--text-light);
}

.service-content p {
    margin-bottom: 15px;
}

/* Ürünler Slider */
.products {
    position: relative;
    overflow: hidden;
}

.products-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin: 40px 0;
    width: 100%;
    overflow: visible;
}

.product-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    padding: 20px 15px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
}

body[data-theme="dark"] .product-card {
    background-color: #2a3441;
    border: 1px solid rgba(255,255,255,0.1);
}

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

.product-card-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    margin-bottom: 15px;
    transition: var(--transition);
}

body[data-theme="dark"] .product-card-icon {
    background-color: rgba(74, 144, 226, 0.2);
}

.product-card-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

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

.product-card:hover .product-card-icon i {
    color: #fff;
}

.product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

body[data-theme="dark"] .product-card h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.product-card p {
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
    flex-grow: 1;
}

body[data-theme="dark"] .product-card p {
    color: rgba(255,255,255,0.8);
}

.product-card .btn {
    margin-top: auto;
    width: 100%;
    padding: 10px 15px;
    font-size: 0.9rem;
}

/* Projeler Galerisi */
.projects {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

body[data-theme="dark"] .projects {
    background-color: #212529;
}

.projects-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.project-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 300px;
    position: relative;
}

body[data-theme="dark"] .project-item {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.project-image {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

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

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

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0) 100%);
    padding: 30px 20px 20px;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

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

.project-info {
    width: 100%;
    text-align: center;
}

.project-info h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: all 0.4s ease;
    opacity: 0;
}

.project-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
    opacity: 0;
}

.project-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
    opacity: 0;
}

.project-btn:hover {
    background-color: #0055b3;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.project-item:hover .project-info h3,
.project-item:hover .project-info p,
.project-item:hover .project-info .project-btn {
    transform: translateY(0);
    opacity: 1;
}

.projects-cta {
    text-align: center;
    margin-top: 40px;
}

/* Responsive tasarım - Projelerimiz */
@media (max-width: 992px) {
    .projects-gallery {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .projects-gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .project-item {
        height: 250px;
    }
    
    .project-info h3 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .projects-gallery {
        grid-template-columns: 1fr;
    }
}

/* Müşteri Yorumları */
.testimonials {
    background-color: #fff;
}

body[data-theme="dark"] .testimonials {
    background-color: #1f1f1f;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

body[data-theme="dark"] .testimonial {
    background-color: rgba(42, 52, 65, 0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.quote {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
}

body[data-theme="dark"] .quote i {
    color: rgba(255, 255, 255, 0.1);
}

.testimonial p {
    margin-bottom: 20px;
    margin-top: 10px;
    position: relative;
    z-index: 2;
}

body[data-theme="dark"] .testimonial-text {
    color: var(--text-secondary);
}

.client {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.client-info h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

body[data-theme="dark"] .client-info h4 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.client-info p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

body[data-theme="dark"] .client-name {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

body[data-theme="dark"] .client-location {
    color: rgba(255, 255, 255, 0.7);
}

.rating {
    color: #f39c12;
}

body[data-theme="dark"] .rating i {
    color: #f39c12;
}

/* İletişim Bölümü */
.contact {
    background-color: #f9f9f9;
}

body[data-theme="dark"] .contact {
    background-color: #2a2a2a;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

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

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

body[data-theme="dark"] .info-item h3 {
    color: var(--heading-dark);
}

.contact-form {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

body[data-theme="dark"] .contact-form {
    background-color: var(--secondary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    background-color: #f9f9f9;
    transition: var(--transition);
}

body[data-theme="dark"] .form-group input,
body[data-theme="dark"] .form-group select,
body[data-theme="dark"] .form-group textarea {
    background-color: #333;
    border-color: #444;
    color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
}

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

/* CTA Bölümü */
.cta {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 0.9rem;
}

.footer-links h3,
.footer-services h3,
.footer-social h3,
.footer-locations h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-social h3::after,
.footer-locations h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-services a {
    color: #ddd;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-locations p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #ddd;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
}

.footer-bottom a {
    color: #ddd;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* Floating Buttons */
.floating-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.floating-button a:hover {
    transform: scale(1.1);
}

.floating-button i {
    font-size: 2rem;
}

.whatsapp-button {
    background-color: #25d366;
}

.call-button {
    background-color: #3498db;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
}

/* Mobil için uyumluluk */
@media (max-width: 768px) {
    .floating-button {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-button a {
        width: 50px;
        height: 50px;
    }
    
    .floating-button i {
        font-size: 1.5rem;
    }
}

/* Animasyonlar */
.animate-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Tasarım */
@media (max-width: 991px) {
    .container {
        padding: 0 15px;
    }

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

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

    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .service-card-detailed {
        grid-template-columns: 1fr;
    }
    
    .service-card-image {
        height: 300px;
    }

    .products-slider {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        margin: 0 auto;
    }
    
    section {
        width: 100%;
        box-sizing: border-box;
        padding-left: 0;
        padding-right: 0;
        overflow-x: hidden;
    }
    
    .hero .container {
        width: 100%;
        box-sizing: border-box;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .hero {
        width: 100%;
        overflow-x: hidden;
    }
    
    header {
        padding: 10px 0;
    }
    
    header .container {
        flex-wrap: wrap;
    }
    
    .logo {
        margin-bottom: 0;
        flex: 1;
    }
    
    .logo h1 {
        font-size: 1.4rem;
    }
    
    nav {
        justify-content: flex-end;
        width: auto;
        display: flex;
        align-items: center;
    }
    
    .menu {
        position: fixed;
        top: 60px;
        left: 0;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    body[data-theme="dark"] .menu {
        background-color: #1a1a1a;
    }
    
    .menu.active {
        transform: translateY(0);
    }
    
    .menu li {
        margin: 15px 0;
        text-align: center;
    }
    
    .hamburger {
        display: flex;
        z-index: 1000;
        margin-left: 15px;
    }
    
    .hamburger span {
        transition: all 0.3s ease;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .theme-switch-wrapper {
        position: relative;
        top: 0;
        right: 0;
        margin-right: 10px;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
        width: 100%;
    }
    
    .service-card-detailed {
        grid-template-columns: 1fr;
    }
    
    .service-card-image {
        height: 200px;
    }
    
    .features-container,
    .services-container,
    .testimonials-container {
        grid-template-columns: 1fr;
    }

    .products-slider {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
    }

    .product-card {
        flex: 0 0 85%;
    }
    
    .service-features,
    .service-benefits {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links h3::after,
    .footer-services h3::after,
    .footer-social h3::after,
    .footer-locations h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

@media (max-width: 480px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        width: 100%;
        overflow-x: hidden;
    }
    
    .hero .container {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }
    
    .popup-overlay {
        left: 0;
        right: 0;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    .popup-container {
        width: 95%;
        max-width: 350px;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    /* Düğmeler için düzeltmeler */
    .cta-buttons {
        width: 100%;
        box-sizing: border-box;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
}

/* Sayfa Yükleme Animasyonu */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

body[data-theme="dark"] .loader-wrapper {
    background-color: #1a1a1a;
}

.loader {
    width: 60px;
    height: 60px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Popup Stili */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    backdrop-filter: blur(5px);
}

/* Active sınıfı eklendiğinde görünürlük ayarları */
.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    width: 90%;
    max-width: 500px;
    transform: translateY(20px);
    transition: all 0.3s ease-out;
    overflow: hidden;
    box-sizing: border-box;
}

/* Active sınıfı eklendiğinde animasyon */
.popup-overlay.active .popup-container {
    transform: translateY(0);
}

/* Popup içerik stilleri */
.popup-content {
    padding: 25px;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.2s ease;
}

.popup-close:hover {
    background-color: #e74c3c;
    color: white;
    transform: rotate(90deg);
}

.popup-header {
    margin-bottom: 15px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.popup-title {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 8px;
    line-height: 1.3;
}

.popup-subtitle {
    font-size: 16px;
    color: #444;
    font-weight: 500;
}

.popup-body {
    padding: 5px 0 15px;
}

.popup-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.popup-text strong {
    color: #e74c3c;
    font-weight: 700;
}

/* Discount badge */
.discount-badge-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #e74c3c;
    color: white;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    vertical-align: middle;
}

/* Countdown container */
.countdown-container {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    gap: 10px;
}

.countdown-item {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 12px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.countdown-number {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
}

/* CTA Butonu stilini güncelle */
.popup-cta {
    margin-top: 20px;
}

.popup-cta .btn {
    width: 100%;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    background-color: #0066cc;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 102, 204, 0.2);
    text-transform: uppercase;
    border: none;
}

.popup-cta .btn:hover {
    background-color: #0055aa;
    box-shadow: 0 6px 15px rgba(0, 102, 204, 0.3);
}

/* Popup kapatma animasyonu */
.popup-overlay.closing {
    opacity: 0;
}

.popup-overlay.closing .popup-container {
    transform: translateY(20px);
}

/* Dark mode uyarlamaları */
body[data-theme="dark"] .popup-container {
    background-color: #222;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-theme="dark"] .popup-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-theme="dark"] .popup-title {
    color: #4a90e2;
}

body[data-theme="dark"] .popup-subtitle {
    color: #ddd;
}

body[data-theme="dark"] .popup-text {
    color: #ccc;
}

body[data-theme="dark"] .countdown-item {
    background-color: #333;
    border-color: #444;
}

body[data-theme="dark"] .countdown-number {
    color: #4a90e2;
}

body[data-theme="dark"] .countdown-label {
    color: #bbb;
}

body[data-theme="dark"] .popup-close {
    background-color: #333;
    color: #ddd;
}

/* Responsive ayarlar */
@media (max-width: 480px) {
    .popup-container {
        width: 95%;
        max-width: 380px;
    }
    
    .popup-content {
        padding: 20px 15px;
    }
    
    .popup-title {
        font-size: 20px;
    }
    
    .popup-subtitle {
        font-size: 14px;
    }
    
    .countdown-item {
        padding: 10px 5px;
    }
    
    .countdown-number {
        font-size: 20px;
    }
    
    .countdown-label {
        font-size: 10px;
    }
    
    .popup-text {
        font-size: 14px;
        margin-bottom: 15px;
    }
}

/* Torbalı Özel Bölümü Stili */
.torbali-special {
    padding: 70px 0;
    background-color: rgba(230, 126, 34, 0.05);
}

body[data-theme="dark"] .torbali-special {
    background-color: rgba(243, 156, 18, 0.05);
}

.torbali-neighborhoods {
    margin-top: 40px;
    text-align: center;
}

.torbali-neighborhoods h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.torbali-neighborhoods h3::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.neighborhoods-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.neighborhood {
    background-color: #fff;
    color: var(--text-color);
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

body[data-theme="dark"] .neighborhood {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.neighborhood:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    background-color: var(--accent-color);
    color: white;
}

@media (max-width: 768px) {
    .neighborhoods-container {
        gap: 10px;
    }
    
    .neighborhood {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/* Service Card CTA Buttons Stili */
.service-card-content .cta-buttons {
    margin-top: auto;
    display: flex;
    gap: 15px;
}

/* Neden Bizi Tercih Etmelisiniz Bölümü */
.why-choose-us {
    background-color: #f9f9f9;
    position: relative;
    overflow: visible;
    z-index: 1;
}

body[data-theme="dark"] .why-choose-us {
    background-color: #1f2937;
}

.why-choose-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 102, 204, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

body[data-theme="dark"] .why-choose-us::before {
    background: radial-gradient(circle at center, rgba(74, 144, 226, 0.05) 0%, rgba(31, 41, 55, 0) 70%);
}

.why-choose-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.why-choose-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

body[data-theme="dark"] .feature-item {
    background-color: #2d3748;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

body[data-theme="dark"] .feature-item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.feature-item:hover::after {
    width: 100%;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    background-color: var(--accent-color);
}

.feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 600;
}

body[data-theme="dark"] .feature-content h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

body[data-theme="dark"] .feature-content p {
    color: var(--text-secondary);
}

.cta-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    position: relative;
    z-index: 50;
}

.cta-container .btn {
    position: relative;
    z-index: 50;
    cursor: pointer;
    pointer-events: auto;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-title {
        font-size: 2rem;
    }
    
    .why-choose-subtitle {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 20px;
    }
}

@keyframes popupFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
}

/* Daha küçük mobil ekranlar için ek düzeltmeler */
@media (max-width: 360px) {
    .popup-container {
        width: 95%;
        max-width: 300px;
    }
    
    .popup-title {
        font-size: 1.1rem;
    }
    
    .popup-subtitle {
        font-size: 0.8rem;
    }
    
    .countdown-number {
        font-size: 1rem;
    }
    
    .countdown-label {
        font-size: 0.55rem;
    }
    
    .discount-badge-inline {
        font-size: 0.75rem;
        padding: 2px 5px;
    }
}

/* Hizmetler Sidebar Stili */
.services-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(to right, rgba(0, 102, 204, 0.95), rgba(0, 102, 204, 0.85));
    padding: 15px;
    border-radius: 0 15px 15px 0;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 220px;
    max-width: 80%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateY(-50%) translateX(-100%);
}

.services-sidebar.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.sidebar-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: center;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-link {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.sidebar-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 0 2px 2px 0;
    transition: all 0.3s ease;
    opacity: 0;
}

.sidebar-link:hover, .sidebar-link.active {
    background-color: rgba(255, 255, 255, 0.15);
}

.sidebar-link:hover::before, .sidebar-link.active::before {
    opacity: 1;
}

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

.sidebar-link.active {
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.sidebar-toggle {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 102, 204, 0.9);
    width: 30px;
    height: 40px;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sidebar-toggle:hover {
    background-color: rgba(0, 102, 204, 1);
}

.sidebar-toggle i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.services-sidebar.collapsed {
    transform: translateY(-50%) translateX(-100%);
}

.services-sidebar.collapsed .sidebar-toggle i {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .services-sidebar {
        width: 180px;
        padding: 12px;
    }
    
    .sidebar-title {
        font-size: 1rem;
    }
    
    .sidebar-link {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .services-sidebar {
        display: none;
    }
}

/* Ürün kartı hover class'ı */
.product-card.hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-card.hover .product-card-icon {
    background-color: var(--primary-color);
}

.product-card.hover .product-card-icon i {
    color: #fff;
}

body[data-theme="dark"] .primary-btn {
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

body[data-theme="dark"] .primary-btn:hover {
    background-color: #3a84d9;
    box-shadow: 0 6px 16px rgba(74, 144, 226, 0.4);
}

/* Footer başlıkları düzeltme */
body[data-theme="dark"] .footer-logo h2,
body[data-theme="dark"] .footer-links h3,
body[data-theme="dark"] .footer-services h3,
body[data-theme="dark"] .footer-locations h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Service kart içindeki başlıklar */
body[data-theme="dark"] .service-feature span,
body[data-theme="dark"] .benefit span {
    color: var(--text-secondary);
}

/* Feature kartları başlık ve metinleri */
body[data-theme="dark"] .feature-box h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

body[data-theme="dark"] .feature-box p {
    color: var(--text-secondary);
}

/* İletişim bilgisi ikonlarının dark mode düzenlemesi */
body[data-theme="dark"] .info-item i {
    color: rgba(255, 255, 255, 0.9);
}

body[data-theme="dark"] .info-item h3 {
    color: var(--heading-dark);
}

body[data-theme="dark"] .info-item p,
body[data-theme="dark"] .info-item a {
    color: var(--text-secondary);
}

/* Footer linkleri iyileştirme */
body[data-theme="dark"] .footer-links a,
body[data-theme="dark"] .footer-services a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

body[data-theme="dark"] .footer-links a:hover,
body[data-theme="dark"] .footer-services a:hover {
    color: var(--primary-color);
}

/* Tüm mobil görünüm düzeltmeleri */
html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        margin: 0 auto;
    }
    
    section {
        width: 100%;
        box-sizing: border-box;
        padding-left: 0;
        padding-right: 0;
    }
    
    .hero .container {
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .hero .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .popup-overlay {
        left: 0;
        right: 0;
        width: 100%;
    }
    
    .popup-container {
        width: 92%;
        max-width: 330px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
    
    /* Düğmeler için düzeltmeler */
    .cta-buttons {
        width: 100%;
        box-sizing: border-box;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
}

/* Torbalı Showcase Bölümü Stilleri */
.torbali-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-bg, #f8f9fa) 0%, var(--secondary-light-bg, #e9ecef) 100%);
    position: relative;
    overflow: hidden;
}

body[data-theme="dark"] .torbali-showcase {
    background: linear-gradient(135deg, var(--dark-bg, #212529) 0%, var(--secondary-dark-bg, #343a40) 100%);
}

.torbali-showcase::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(52, 152, 219, 0.1);
    top: -150px;
    left: -150px;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.torbali-showcase::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.1);
    bottom: -200px;
    right: -200px;
    z-index: 1;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.torbali-showcase .container {
    position: relative;
    z-index: 2;
}

.torbali-showcase-content {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--card-bg, #fff);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

body[data-theme="dark"] .torbali-showcase-content {
    background: var(--card-dark-bg, #2a3441);
}

.torbali-showcase-image {
    flex: 1;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.showcase-badge {
    position: absolute;
    top: 20px;
    right: 0;
    background-color: #25d366;
    color: white;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px 0 0 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
}

.torbali-showcase-content:hover .showcase-image {
    transform: scale(1.05);
}

.torbali-showcase-info {
    flex: 1;
    padding: 40px;
}

.torbali-showcase-info h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--heading-color, #333);
    position: relative;
    padding-bottom: 15px;
}

body[data-theme="dark"] .torbali-showcase-info h2 {
    color: var(--heading-color-dark, #fff);
}

.torbali-showcase-info h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-color, #3498db);
    border-radius: 3px;
}

.torbali-showcase-info p {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color, #666);
}

body[data-theme="dark"] .torbali-showcase-info p {
    color: var(--text-color-dark, #b3b3b3);
}

.torbali-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-item i {
    color: var(--accent-color, #2ecc71);
    font-size: 16px;
    width: 25px;
    height: 25px;
    background: rgba(46, 204, 113, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

body[data-theme="dark"] .benefit-item i {
    background: rgba(46, 204, 113, 0.2);
}

.benefit-item span {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color, #666);
}

body[data-theme="dark"] .benefit-item span {
    color: var(--text-color-dark, #b3b3b3);
}

.torbali-cta {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.torbali-cta .btn {
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.torbali-cta .primary-btn {
    background: var(--primary-color, #3498db);
    color: white;
    border: none;
}

.torbali-cta .primary-btn:hover {
    background: var(--primary-color-hover, #2980b9);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.torbali-cta .secondary-btn {
    background: transparent;
    color: var(--primary-color, #3498db);
    border: 1px solid var(--primary-color, #3498db);
}

.torbali-cta .secondary-btn:hover {
    background: rgba(52, 152, 219, 0.1);
    transform: translateY(-3px);
}

/* Responsive Design for Torbalı Showcase */
@media (max-width: 992px) {
    .torbali-showcase-content {
        flex-direction: column;
    }
    
    .torbali-showcase-image {
        width: 100%;
        min-height: 300px;
    }
    
    .torbali-showcase-info {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .torbali-benefits {
        grid-template-columns: 1fr;
    }
    
    .torbali-showcase-info h2 {
        font-size: 24px;
    }
    
    .torbali-showcase-info p {
        font-size: 15px;
    }
    
    .torbali-cta {
        flex-direction: column;
    }
}

/* Torbalı Kartları Stilleri */
.torbali-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.torbali-card {
    background: var(--card-bg, #fff);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-top: 4px solid var(--primary-color, #3498db);
}

body[data-theme="dark"] .torbali-card {
    background: var(--card-dark-bg, #2a3441);
    border-top: 4px solid var(--primary-color, #3498db);
}

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

.torbali-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.torbali-card:hover .torbali-card-img {
    transform: scale(1.05);
}

.torbali-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.torbali-card-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--heading-color, #333);
}

body[data-theme="dark"] .torbali-card-content h3 {
    color: var(--heading-color-dark, #fff);
}

.torbali-card-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color, #666);
}

body[data-theme="dark"] .torbali-card-content p {
    color: var(--text-color-dark, #b3b3b3);
}

@media (max-width: 992px) {
    .torbali-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .torbali-cards {
        grid-template-columns: 1fr;
    }
}

/* Ürünler Sayfası Stil Tanımlamaları */
.products-page {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-color-light) 0%, var(--bg-color-light-2) 100%);
}

body[data-theme="dark"] .products-page {
    background: linear-gradient(135deg, var(--bg-color-dark) 0%, var(--bg-color-dark-2) 100%);
}

.product-category-nav {
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    padding: 15px;
    position: sticky;
    top: 80px;
    z-index: 10;
    transition: all 0.3s ease;
}

body[data-theme="dark"] .product-category-nav {
    background: var(--card-bg-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.product-category-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.product-category-nav li a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

body[data-theme="dark"] .product-category-nav li a {
    color: var(--text-color-dark);
}

.product-category-nav li a:hover,
.product-category-nav li a.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.product-category-nav li a i {
    font-size: 12px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.product-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

body[data-theme="dark"] .product-item {
    background: #2f3b4d;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.product-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    z-index: 5;
}

.product-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background-color: #ffffff;
    border-radius: 0 0 12px 12px;
}

body[data-theme="dark"] .product-content {
    background-color: #2a3441;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 10px;
}

body[data-theme="dark"] .product-title {
    color: var(--heading-color-dark);
}

.product-description {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.5;
    flex: 1;
}

body[data-theme="dark"] .product-description {
    color: var(--text-color-dark);
}

.product-features {
    margin-bottom: 15px;
}

.product-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    font-size: 13px;
}

.product-feature i {
    color: var(--primary-color);
    font-size: 12px;
}

.product-feature span {
    color: var(--text-color);
}

body[data-theme="dark"] .product-feature span {
    color: var(--text-color-dark);
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.btn-product-detail {
    flex: 1;
    padding: 10px 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-product-detail:hover {
    background: var(--primary-color-dark);
    transform: translateY(-3px);
}

.btn-product-whatsapp {
    padding: 10px 15px;
    background: #25d366;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-product-whatsapp:hover {
    background: #1da851;
    transform: translateY(-3px);
}

/* Ürün Detay Sayfası */
.product-detail-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-color-light) 0%, var(--bg-color-light-2) 100%);
}

body[data-theme="dark"] .product-detail-section {
    background: linear-gradient(135deg, var(--bg-color-dark) 0%, var(--bg-color-dark-2) 100%);
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.product-gallery {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

body[data-theme="dark"] .product-gallery {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-main-image {
    height: 400px;
    overflow: hidden;
}

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

.product-thumbnails {
    display: flex;
    gap: 10px;
    padding: 15px;
    background: var(--white-color);
}

body[data-theme="dark"] .product-thumbnails {
    background: var(--card-bg-dark);
}

.product-thumb {
    height: 80px;
    width: 80px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.product-thumb.active,
.product-thumb:hover {
    opacity: 1;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 20px;
    background: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body[data-theme="dark"] .product-info {
    background: var(--card-bg-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-info-title {
    font-size: 26px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

body[data-theme="dark"] .product-info-title {
    color: var(--heading-color-dark);
    border-bottom: 1px solid var(--border-color-dark);
}

.product-info-description {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

body[data-theme="dark"] .product-info-description {
    color: var(--text-color-dark);
}

.product-info-features {
    margin-bottom: 20px;
}

.product-info-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.product-info-feature i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
}

.product-info-feature span {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.5;
}

body[data-theme="dark"] .product-info-feature span {
    color: var(--text-color-dark);
}

.product-cta {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.btn-request-quote {
    flex: 1;
    padding: 12px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-request-quote:hover {
    background: var(--primary-color-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.btn-call-now {
    padding: 12px 20px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-call-now:hover {
    background: rgba(52, 152, 219, 0.1);
    transform: translateY(-3px);
}

.product-tabs {
    margin-top: 40px;
}

.tab-buttons {
    display: flex;
    gap: 5px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

body[data-theme="dark"] .tab-buttons {
    border-bottom: 1px solid var(--border-color-dark);
}

.tab-button {
    padding: 12px 25px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

body[data-theme="dark"] .tab-button {
    color: var(--text-color-dark);
}

.tab-button.active,
.tab-button:hover {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.tab-content {
    display: none;
    padding: 20px;
    background: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

body[data-theme="dark"] .tab-content {
    background: var(--card-bg-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: 20px;
    color: var(--heading-color);
    margin-bottom: 15px;
}

body[data-theme="dark"] .tab-content h3 {
    color: var(--heading-color-dark);
}

.tab-content p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 15px;
}

body[data-theme="dark"] .tab-content p {
    color: var(--text-color-dark);
}

.tab-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.tab-content ul li {
    margin-bottom: 8px;
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.5;
}

body[data-theme="dark"] .tab-content ul li {
    color: var(--text-color-dark);
}

/* Genel CSS Reset ve Değişkenler */
:root {
    --primary-color: #0066cc;
    --secondary-color: #2c3e50;
    --accent-color: #e67e22;
    --light-color: #ecf0f1;
    --dark-color: #1a1a1a;
    --text-color: #333;
    --text-light: #f8f9fa;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 5px;
    --container-width: 1200px;
    --heading-dark: #f8f9fa;
    --heading-light: #333;
}

/* Dark Mode */
[data-theme="dark"] {
    --primary-color: #4a90e2;
    --secondary-color: #34495e;
    --accent-color: #f39c12;
    --light-color: #2c3e50;
    --dark-color: #f8f9fa;
    --text-color: #f8f9fa;
    --text-light: #1a1a1a;
    --box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
    --heading-dark: #ffffff;
    --heading-light: #f0f0f0;
    --text-secondary: rgba(255, 255, 255, 0.85);
}

body[data-theme="dark"] h2,
body[data-theme="dark"] h3,
body[data-theme="dark"] h4 {
    color: var(--heading-dark);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

body[data-theme="dark"] p {
    color: var(--text-secondary);
}

/* Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Header Stili */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--box-shadow);
    padding: 15px 0;
    transition: var(--transition);
}

body[data-theme="dark"] header {
    background-color: rgba(26, 26, 26, 0.95);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

nav {
    display: flex;
    align-items: center;
}

.menu {
    display: flex;
}

.menu li {
    margin-left: 30px;
}

.menu a {
    position: relative;
    font-weight: 500;
    padding: 5px 0;
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 2px 0;
    transition: var(--transition);
}

/* Dark/Light Mode Switch */
.theme-switch-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 15px;
    z-index: 1001;
}

.theme-switch {
    display: inline-block;
    height: 26px;
    position: relative;
    width: 50px;
}

.theme-switch input {
    display: none;
}

.slider {
    background-color: #ccc;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
}

.slider .fa-sun {
    color: #f39c12;
    font-size: 14px;
    margin-left: 2px;
}

.slider .fa-moon {
    color: #f8f9fa;
    font-size: 14px;
    margin-right: 2px;
}

.slider:before {
    background-color: #fff;
    bottom: 3px;
    content: "";
    height: 20px;
    left: 3px;
    position: absolute;
    transition: .4s;
    width: 20px;
    z-index: 2;
}

input:checked + .slider {
    background-color: var(--secondary-color);
}

input:checked + .slider:before {
    transform: translateX(24px);
}

.slider.round {
    border-radius: 24px;
}

.slider.round:before {
    border-radius: 50%;
}

.theme-switch-wrapper em {
    margin-left: 10px;
    font-size: 1rem;
    color: var(--text-color);
}

/* Hero Bölümü */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

/* İzmir Hizmet Bölgeleri Stili */
.service-areas {
    background-color: var(--light-color);
    padding: 80px 0;
}

.areas-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.area-column {
    background-color: #fff;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

body[data-theme="dark"] .area-column {
    background-color: rgba(42, 52, 65, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.area-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.area-column h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

body[data-theme="dark"] .area-column h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

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

.area-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.area-column ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.area-column ul li i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

body[data-theme="dark"] .area-column ul li i {
    color: var(--primary-color);
}

body[data-theme="dark"] .area-column ul li {
    color: var(--text-secondary);
}

/* Aşağı doğru check ikonları renk düzeltmesi */
body[data-theme="dark"] .fa-check-circle {
    color: var(--primary-color);
}

/* Butonlar */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.primary-btn {
    background-color: var(--primary-color);
    color: #fff;
}

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

.secondary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.hero .secondary-btn {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

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

.hero .secondary-btn:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.small-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
}

/* Section Stili */
section {
    padding: 80px 0;
    width: 100%;
    box-sizing: border-box;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    color: var(--heading-light);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

body[data-theme="dark"] .section-title h2 {
    color: var(--heading-dark);
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

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

.section-title p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Özellikler Bölümü */
.features {
    background-color: var(--light-color);
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

body[data-theme="dark"] .feature-box {
    background-color: var(--secondary-color);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-box .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
}

.feature-box .icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.feature-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

body[data-theme="dark"] .feature-box h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-box p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

body[data-theme="dark"] .feature-box p {
    color: var(--text-secondary);
}

/* Hizmetler Bölümü - Yeni Detaylı Hizmet Kartları */
.services {
    background-color: #f9f9f9;
}

body[data-theme="dark"] .services {
    background-color: #2a2a2a;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card-detailed {
    display: grid;
    grid-template-columns: 1fr 2fr;
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

body[data-theme="dark"] .service-card-detailed {
    background-color: var(--secondary-color);
}

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

.service-card-image {
    height: 100%;
    overflow: hidden;
}

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

.service-card-detailed:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.service-card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

body[data-theme="dark"] .service-card-content h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-feature i {
    color: var(--primary-color);
    font-size: 1rem;
}

.service-card-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
    background-color: rgba(0, 102, 204, 0.05);
    padding: 15px;
    border-radius: var(--border-radius);
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.service-card-content .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* Eski Hizmet Kartları Stili - Hizmetler Bölümündeki Kartlar için */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

body[data-theme="dark"] .service-card {
    background-color: var(--secondary-color);
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

body[data-theme="dark"] .service-content h3 {
    color: var(--text-light);
}

.service-content p {
    margin-bottom: 15px;
}

/* Ürünler Slider */
.products {
    position: relative;
    overflow: hidden;
}

.products-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin: 40px 0;
    width: 100%;
    overflow: visible;
}

.product-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    padding: 20px 15px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
}

body[data-theme="dark"] .product-card {
    background-color: var(--secondary-color);
    border: 1px solid rgba(255,255,255,0.1);
}

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

.product-card-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    margin-bottom: 15px;
    transition: var(--transition);
}

body[data-theme="dark"] .product-card-icon {
    background-color: rgba(74, 144, 226, 0.2);
}

.product-card-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

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

.product-card:hover .product-card-icon i {
    color: #fff;
}

.product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

body[data-theme="dark"] .product-card h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.product-card p {
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
    flex-grow: 1;
}

body[data-theme="dark"] .product-card p {
    color: rgba(255,255,255,0.8);
}

.product-card .btn {
    margin-top: auto;
    width: 100%;
    padding: 10px 15px;
    font-size: 0.9rem;
}

/* Projeler Galerisi */
.projects {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

body[data-theme="dark"] .projects {
    background-color: #212529;
}

.projects-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.project-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 300px;
    position: relative;
}

body[data-theme="dark"] .project-item {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.project-image {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

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

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

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0) 100%);
    padding: 30px 20px 20px;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

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

.project-info {
    width: 100%;
    text-align: center;
}

.project-info h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: all 0.4s ease;
    opacity: 0;
}

.project-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
    opacity: 0;
}

.project-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
    opacity: 0;
}

.project-btn:hover {
    background-color: #0055b3;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.project-item:hover .project-info h3,
.project-item:hover .project-info p,
.project-item:hover .project-info .project-btn {
    transform: translateY(0);
    opacity: 1;
}

.projects-cta {
    text-align: center;
    margin-top: 40px;
}

/* Responsive tasarım - Projelerimiz */
@media (max-width: 992px) {
    .projects-gallery {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .projects-gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .project-item {
        height: 250px;
    }
    
    .project-info h3 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .projects-gallery {
        grid-template-columns: 1fr;
    }
}

/* Müşteri Yorumları */
.testimonials {
    background-color: #fff;
}

body[data-theme="dark"] .testimonials {
    background-color: #1f1f1f;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

body[data-theme="dark"] .testimonial {
    background-color: rgba(42, 52, 65, 0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.quote {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
}

body[data-theme="dark"] .quote i {
    color: rgba(255, 255, 255, 0.1);
}

.testimonial p {
    margin-bottom: 20px;
    margin-top: 10px;
    position: relative;
    z-index: 2;
}

body[data-theme="dark"] .testimonial-text {
    color: var(--text-secondary);
}

.client {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.client-info h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

body[data-theme="dark"] .client-info h4 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.client-info p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

body[data-theme="dark"] .client-name {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

body[data-theme="dark"] .client-location {
    color: rgba(255, 255, 255, 0.7);
}

.rating {
    color: #f39c12;
}

body[data-theme="dark"] .rating i {
    color: #f39c12;
}

/* İletişim Bölümü */
.contact {
    background-color: #f9f9f9;
}

body[data-theme="dark"] .contact {
    background-color: #2a2a2a;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

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

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

body[data-theme="dark"] .info-item h3 {
    color: var(--heading-dark);
}

.contact-form {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

body[data-theme="dark"] .contact-form {
    background-color: var(--secondary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    background-color: #f9f9f9;
    transition: var(--transition);
}

body[data-theme="dark"] .form-group input,
body[data-theme="dark"] .form-group select,
body[data-theme="dark"] .form-group textarea {
    background-color: #333;
    border-color: #444;
    color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
}

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

/* CTA Bölümü */
.cta {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 0.9rem;
}

.footer-links h3,
.footer-services h3,
.footer-social h3,
.footer-locations h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-social h3::after,
.footer-locations h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-services a {
    color: #ddd;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-locations p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #ddd;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
}

.footer-bottom a {
    color: #ddd;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* Floating Buttons */
.floating-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.floating-button a:hover {
    transform: scale(1.1);
}

.floating-button i {
    font-size: 2rem;
}

.whatsapp-button {
    background-color: #25d366;
}

.call-button {
    background-color: #3498db;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
}

/* Mobil için uyumluluk */
@media (max-width: 768px) {
    .floating-button {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-button a {
        width: 50px;
        height: 50px;
    }
    
    .floating-button i {
        font-size: 1.5rem;
    }
}

/* Animasyonlar */
.animate-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Tasarım */
@media (max-width: 991px) {
    .container {
        padding: 0 15px;
    }

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

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

    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .service-card-detailed {
        grid-template-columns: 1fr;
    }
    
    .service-card-image {
        height: 300px;
    }

    .products-slider {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        margin: 0 auto;
    }
    
    section {
        width: 100%;
        box-sizing: border-box;
        padding-left: 0;
        padding-right: 0;
        overflow-x: hidden;
    }
    
    .hero .container {
        width: 100%;
        box-sizing: border-box;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .hero {
        width: 100%;
        overflow-x: hidden;
    }
    
    header {
        padding: 10px 0;
    }
    
    header .container {
        flex-wrap: wrap;
    }
    
    .logo {
        margin-bottom: 0;
        flex: 1;
    }
    
    .logo h1 {
        font-size: 1.4rem;
    }
    
    nav {
        justify-content: flex-end;
        width: auto;
        display: flex;
        align-items: center;
    }
    
    .menu {
        position: fixed;
        top: 60px;
        left: 0;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    body[data-theme="dark"] .menu {
        background-color: #1a1a1a;
    }
    
    .menu.active {
        transform: translateY(0);
    }
    
    .menu li {
        margin: 15px 0;
        text-align: center;
    }
    
    .hamburger {
        display: flex;
        z-index: 1000;
        margin-left: 15px;
    }
    
    .hamburger span {
        transition: all 0.3s ease;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .theme-switch-wrapper {
        position: relative;
        top: 0;
        right: 0;
        margin-right: 10px;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
        width: 100%;
    }
    
    .service-card-detailed {
        grid-template-columns: 1fr;
    }
    
    .service-card-image {
        height: 200px;
    }
    
    .features-container,
    .services-container,
    .testimonials-container {
        grid-template-columns: 1fr;
    }

    .products-slider {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
    }

    .product-card {
        flex: 0 0 85%;
    }
    
    .service-features,
    .service-benefits {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links h3::after,
    .footer-services h3::after,
    .footer-social h3::after,
    .footer-locations h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

@media (max-width: 480px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        width: 100%;
        overflow-x: hidden;
    }
    
    .hero .container {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }
    
    .popup-overlay {
        left: 0;
        right: 0;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    .popup-container {
        width: 95%;
        max-width: 350px;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    /* Düğmeler için düzeltmeler */
    .cta-buttons {
        width: 100%;
        box-sizing: border-box;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
}

/* Sayfa Yükleme Animasyonu */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

body[data-theme="dark"] .loader-wrapper {
    background-color: #1a1a1a;
}

.loader {
    width: 60px;
    height: 60px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Popup Stili */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    backdrop-filter: blur(5px);
}

/* Active sınıfı eklendiğinde görünürlük ayarları */
.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    width: 90%;
    max-width: 500px;
    transform: translateY(20px);
    transition: all 0.3s ease-out;
    overflow: hidden;
    box-sizing: border-box;
}

/* Active sınıfı eklendiğinde animasyon */
.popup-overlay.active .popup-container {
    transform: translateY(0);
}

/* Popup içerik stilleri */
.popup-content {
    padding: 25px;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.2s ease;
}

.popup-close:hover {
    background-color: #e74c3c;
    color: white;
    transform: rotate(90deg);
}

.popup-header {
    margin-bottom: 15px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.popup-title {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 8px;
    line-height: 1.3;
}

.popup-subtitle {
    font-size: 16px;
    color: #444;
    font-weight: 500;
}

.popup-body {
    padding: 5px 0 15px;
}

.popup-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.popup-text strong {
    color: #e74c3c;
    font-weight: 700;
}

/* Discount badge */
.discount-badge-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #e74c3c;
    color: white;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    vertical-align: middle;
}

/* Countdown container */
.countdown-container {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    gap: 10px;
}

.countdown-item {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 12px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.countdown-number {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
}

/* CTA Butonu stilini güncelle */
.popup-cta {
    margin-top: 20px;
}

.popup-cta .btn {
    width: 100%;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    background-color: #0066cc;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 102, 204, 0.2);
    text-transform: uppercase;
    border: none;
}

.popup-cta .btn:hover {
    background-color: #0055aa;
    box-shadow: 0 6px 15px rgba(0, 102, 204, 0.3);
}

/* Popup kapatma animasyonu */
.popup-overlay.closing {
    opacity: 0;
}

.popup-overlay.closing .popup-container {
    transform: translateY(20px);
}

/* Dark mode uyarlamaları */
body[data-theme="dark"] .popup-container {
    background-color: #222;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-theme="dark"] .popup-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-theme="dark"] .popup-title {
    color: #4a90e2;
}

body[data-theme="dark"] .popup-subtitle {
    color: #ddd;
}

body[data-theme="dark"] .popup-text {
    color: #ccc;
}

body[data-theme="dark"] .countdown-item {
    background-color: #333;
    border-color: #444;
}

body[data-theme="dark"] .countdown-number {
    color: #4a90e2;
}

body[data-theme="dark"] .countdown-label {
    color: #bbb;
}

body[data-theme="dark"] .popup-close {
    background-color: #333;
    color: #ddd;
}

/* Responsive ayarlar */
@media (max-width: 480px) {
    .popup-container {
        width: 95%;
        max-width: 380px;
    }
    
    .popup-content {
        padding: 20px 15px;
    }
    
    .popup-title {
        font-size: 20px;
    }
    
    .popup-subtitle {
        font-size: 14px;
    }
    
    .countdown-item {
        padding: 10px 5px;
    }
    
    .countdown-number {
        font-size: 20px;
    }
    
    .countdown-label {
        font-size: 10px;
    }
    
    .popup-text {
        font-size: 14px;
        margin-bottom: 15px;
    }
}

/* Torbalı Özel Bölümü Stili */
.torbali-special {
    padding: 70px 0;
    background-color: rgba(230, 126, 34, 0.05);
}

body[data-theme="dark"] .torbali-special {
    background-color: rgba(243, 156, 18, 0.05);
}

.torbali-neighborhoods {
    margin-top: 40px;
    text-align: center;
}

.torbali-neighborhoods h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.torbali-neighborhoods h3::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.neighborhoods-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.neighborhood {
    background-color: #fff;
    color: var(--text-color);
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

body[data-theme="dark"] .neighborhood {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.neighborhood:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    background-color: var(--accent-color);
    color: white;
}

@media (max-width: 768px) {
    .neighborhoods-container {
        gap: 10px;
    }
    
    .neighborhood {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/* Service Card CTA Buttons Stili */
.service-card-content .cta-buttons {
    margin-top: auto;
    display: flex;
    gap: 15px;
}

/* Neden Bizi Tercih Etmelisiniz Bölümü */
.why-choose-us {
    background-color: #f9f9f9;
    position: relative;
    overflow: visible;
    z-index: 1;
}

body[data-theme="dark"] .why-choose-us {
    background-color: #1f2937;
}

.why-choose-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 102, 204, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

body[data-theme="dark"] .why-choose-us::before {
    background: radial-gradient(circle at center, rgba(74, 144, 226, 0.05) 0%, rgba(31, 41, 55, 0) 70%);
}

.why-choose-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.why-choose-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

body[data-theme="dark"] .feature-item {
    background-color: #2d3748;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

body[data-theme="dark"] .feature-item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.feature-item:hover::after {
    width: 100%;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    background-color: var(--accent-color);
}

.feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 600;
}

body[data-theme="dark"] .feature-content h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

body[data-theme="dark"] .feature-content p {
    color: var(--text-secondary);
}

.cta-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    position: relative;
    z-index: 50;
}

.cta-container .btn {
    position: relative;
    z-index: 50;
    cursor: pointer;
    pointer-events: auto;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-title {
        font-size: 2rem;
    }
    
    .why-choose-subtitle {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 20px;
    }
}

@keyframes popupFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
}

/* Daha küçük mobil ekranlar için ek düzeltmeler */
@media (max-width: 360px) {
    .popup-container {
        width: 95%;
        max-width: 300px;
    }
    
    .popup-title {
        font-size: 1.1rem;
    }
    
    .popup-subtitle {
        font-size: 0.8rem;
    }
    
    .countdown-number {
        font-size: 1rem;
    }
    
    .countdown-label {
        font-size: 0.55rem;
    }
    
    .discount-badge-inline {
        font-size: 0.75rem;
        padding: 2px 5px;
    }
}

/* Hizmetler Sidebar Stili */
.services-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(to right, rgba(0, 102, 204, 0.95), rgba(0, 102, 204, 0.85));
    padding: 15px;
    border-radius: 0 15px 15px 0;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 220px;
    max-width: 80%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateY(-50%) translateX(-100%);
}

.services-sidebar.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.sidebar-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: center;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-link {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.sidebar-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 0 2px 2px 0;
    transition: all 0.3s ease;
    opacity: 0;
}

.sidebar-link:hover, .sidebar-link.active {
    background-color: rgba(255, 255, 255, 0.15);
}

.sidebar-link:hover::before, .sidebar-link.active::before {
    opacity: 1;
}

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

.sidebar-link.active {
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.sidebar-toggle {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 102, 204, 0.9);
    width: 30px;
    height: 40px;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sidebar-toggle:hover {
    background-color: rgba(0, 102, 204, 1);
}

.sidebar-toggle i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.services-sidebar.collapsed {
    transform: translateY(-50%) translateX(-100%);
}

.services-sidebar.collapsed .sidebar-toggle i {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .services-sidebar {
        width: 180px;
        padding: 12px;
    }
    
    .sidebar-title {
        font-size: 1rem;
    }
    
    .sidebar-link {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .services-sidebar {
        display: none;
    }
}

/* Ürün kartı hover class'ı */
.product-card.hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Genel CSS Reset ve Değişkenler */
:root {
    --primary-color: #0066cc;
    --secondary-color: #2c3e50;
    --accent-color: #e67e22;
    --light-color: #ecf0f1;
    --dark-color: #1a1a1a;
    --text-color: #333;
    --text-light: #f8f9fa;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 5px;
    --container-width: 1200px;
    --heading-dark: #f8f9fa;
    --heading-light: #333;
}

/* Dark Mode */
[data-theme="dark"] {
    --primary-color: #4a90e2;
    --secondary-color: #34495e;
    --accent-color: #f39c12;
    --light-color: #2c3e50;
    --dark-color: #f8f9fa;
    --text-color: #f8f9fa;
    --text-light: #1a1a1a;
    --box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
    --heading-dark: #ffffff;
    --heading-light: #f0f0f0;
    --text-secondary: rgba(255, 255, 255, 0.85);
}

body[data-theme="dark"] h2,
body[data-theme="dark"] h3,
body[data-theme="dark"] h4 {
    color: var(--heading-dark);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

body[data-theme="dark"] p {
    color: var(--text-secondary);
}

/* Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Header Stili */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--box-shadow);
    padding: 15px 0;
    transition: var(--transition);
}

body[data-theme="dark"] header {
    background-color: rgba(26, 26, 26, 0.95);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

nav {
    display: flex;
    align-items: center;
}

.menu {
    display: flex;
}

.menu li {
    margin-left: 30px;
}

.menu a {
    position: relative;
    font-weight: 500;
    padding: 5px 0;
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 2px 0;
    transition: var(--transition);
}

/* Dark/Light Mode Switch */
.theme-switch-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 15px;
    z-index: 1001;
}

.theme-switch {
    display: inline-block;
    height: 26px;
    position: relative;
    width: 50px;
}

.theme-switch input {
    display: none;
}

.slider {
    background-color: #ccc;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
}

.slider .fa-sun {
    color: #f39c12;
    font-size: 14px;
    margin-left: 2px;
}

.slider .fa-moon {
    color: #f8f9fa;
    font-size: 14px;
    margin-right: 2px;
}

.slider:before {
    background-color: #fff;
    bottom: 3px;
    content: "";
    height: 20px;
    left: 3px;
    position: absolute;
    transition: .4s;
    width: 20px;
    z-index: 2;
}

input:checked + .slider {
    background-color: var(--secondary-color);
}

input:checked + .slider:before {
    transform: translateX(24px);
}

.slider.round {
    border-radius: 24px;
}

.slider.round:before {
    border-radius: 50%;
}

.theme-switch-wrapper em {
    margin-left: 10px;
    font-size: 1rem;
    color: var(--text-color);
}

/* Hero Bölümü */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

/* İzmir Hizmet Bölgeleri Stili */
.service-areas {
    background-color: var(--light-color);
    padding: 80px 0;
}

.areas-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.area-column {
    background-color: #fff;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

body[data-theme="dark"] .area-column {
    background-color: rgba(42, 52, 65, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.area-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.area-column h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

body[data-theme="dark"] .area-column h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

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

.area-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.area-column ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.area-column ul li i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

body[data-theme="dark"] .area-column ul li i {
    color: var(--primary-color);
}

body[data-theme="dark"] .area-column ul li {
    color: var(--text-secondary);
}

/* Aşağı doğru check ikonları renk düzeltmesi */
body[data-theme="dark"] .fa-check-circle {
    color: var(--primary-color);
}

/* Butonlar */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.primary-btn {
    background-color: var(--primary-color);
    color: #fff;
}

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

.secondary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.hero .secondary-btn {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

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

.hero .secondary-btn:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.small-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
}

/* Section Stili */
section {
    padding: 80px 0;
    width: 100%;
    box-sizing: border-box;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    color: var(--heading-light);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

body[data-theme="dark"] .section-title h2 {
    color: var(--heading-dark);
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

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

.section-title p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Özellikler Bölümü */
.features {
    background-color: var(--light-color);
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

body[data-theme="dark"] .feature-box {
    background-color: var(--secondary-color);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-box .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
}

.feature-box .icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.feature-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

body[data-theme="dark"] .feature-box h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-box p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

body[data-theme="dark"] .feature-box p {
    color: var(--text-secondary);
}

/* Hizmetler Bölümü - Yeni Detaylı Hizmet Kartları */
.services {
    background-color: #f9f9f9;
}

body[data-theme="dark"] .services {
    background-color: #2a2a2a;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card-detailed {
    display: grid;
    grid-template-columns: 1fr 2fr;
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

body[data-theme="dark"] .service-card-detailed {
    background-color: var(--secondary-color);
}

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

.service-card-image {
    height: 100%;
    overflow: hidden;
}

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

.service-card-detailed:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.service-card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

body[data-theme="dark"] .service-card-content h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-feature i {
    color: var(--primary-color);
    font-size: 1rem;
}

.service-card-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
    background-color: rgba(0, 102, 204, 0.05);
    padding: 15px;
    border-radius: var(--border-radius);
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.service-card-content .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* Eski Hizmet Kartları Stili - Hizmetler Bölümündeki Kartlar için */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

body[data-theme="dark"] .service-card {
    background-color: var(--secondary-color);
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

body[data-theme="dark"] .service-content h3 {
    color: var(--text-light);
}

.service-content p {
    margin-bottom: 15px;
}

/* Ürünler Slider */
.products {
    position: relative;
    overflow: hidden;
}

.products-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin: 40px 0;
    width: 100%;
    overflow: visible;
}

.product-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    padding: 20px 15px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
}

body[data-theme="dark"] .product-card {
    background-color: var(--secondary-color);
    border: 1px solid rgba(255,255,255,0.1);
}

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

.product-card-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    margin-bottom: 15px;
    transition: var(--transition);
}

body[data-theme="dark"] .product-card-icon {
    background-color: rgba(74, 144, 226, 0.2);
}

.product-card-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

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

.product-card:hover .product-card-icon i {
    color: #fff;
}

.product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

body[data-theme="dark"] .product-card h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.product-card p {
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
    flex-grow: 1;
}

body[data-theme="dark"] .product-card p {
    color: rgba(255,255,255,0.8);
}

.product-card .btn {
    margin-top: auto;
    width: 100%;
    padding: 10px 15px;
    font-size: 0.9rem;
}

/* Projeler Galerisi */
.projects {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

body[data-theme="dark"] .projects {
    background-color: #212529;
}

.projects-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.project-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 300px;
    position: relative;
}

body[data-theme="dark"] .project-item {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.project-image {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

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

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

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0) 100%);
    padding: 30px 20px 20px;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

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

.project-info {
    width: 100%;
    text-align: center;
}

.project-info h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: all 0.4s ease;
    opacity: 0;
}

.project-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
    opacity: 0;
}

.project-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
    opacity: 0;
}

.project-btn:hover {
    background-color: #0055b3;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.project-item:hover .project-info h3,
.project-item:hover .project-info p,
.project-item:hover .project-info .project-btn {
    transform: translateY(0);
    opacity: 1;
}

.projects-cta {
    text-align: center;
    margin-top: 40px;
}

/* Responsive tasarım - Projelerimiz */
@media (max-width: 992px) {
    .projects-gallery {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .projects-gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .project-item {
        height: 250px;
    }
    
    .project-info h3 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .projects-gallery {
        grid-template-columns: 1fr;
    }
}

/* Müşteri Yorumları */
.testimonials {
    background-color: #fff;
}

body[data-theme="dark"] .testimonials {
    background-color: #1f1f1f;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

body[data-theme="dark"] .testimonial {
    background-color: rgba(42, 52, 65, 0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.quote {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
}

body[data-theme="dark"] .quote i {
    color: rgba(255, 255, 255, 0.1);
}

.testimonial p {
    margin-bottom: 20px;
    margin-top: 10px;
    position: relative;
    z-index: 2;
}

body[data-theme="dark"] .testimonial-text {
    color: var(--text-secondary);
}

.client {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.client-info h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

body[data-theme="dark"] .client-info h4 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.client-info p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

body[data-theme="dark"] .client-name {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

body[data-theme="dark"] .client-location {
    color: rgba(255, 255, 255, 0.7);
}

.rating {
    color: #f39c12;
}

body[data-theme="dark"] .rating i {
    color: #f39c12;
}

/* İletişim Bölümü */
.contact {
    background-color: #f9f9f9;
}

body[data-theme="dark"] .contact {
    background-color: #2a2a2a;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

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

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

body[data-theme="dark"] .info-item h3 {
    color: var(--heading-dark);
}

.contact-form {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

body[data-theme="dark"] .contact-form {
    background-color: var(--secondary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    background-color: #f9f9f9;
    transition: var(--transition);
}

body[data-theme="dark"] .form-group input,
body[data-theme="dark"] .form-group select,
body[data-theme="dark"] .form-group textarea {
    background-color: #333;
    border-color: #444;
    color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
}

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

/* CTA Bölümü */
.cta {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 0.9rem;
}

.footer-links h3,
.footer-services h3,
.footer-social h3,
.footer-locations h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-social h3::after,
.footer-locations h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-services a {
    color: #ddd;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-locations p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #ddd;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
}

.footer-bottom a {
    color: #ddd;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* Floating Buttons */
.floating-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.floating-button a:hover {
    transform: scale(1.1);
}

.floating-button i {
    font-size: 2rem;
}

.whatsapp-button {
    background-color: #25d366;
}

.call-button {
    background-color: #3498db;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
}

/* Mobil için uyumluluk */
@media (max-width: 768px) {
    .floating-button {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-button a {
        width: 50px;
        height: 50px;
    }
    
    .floating-button i {
        font-size: 1.5rem;
    }
}

/* Animasyonlar */
.animate-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Tasarım */
@media (max-width: 991px) {
    .container {
        padding: 0 15px;
    }

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

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

    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .service-card-detailed {
        grid-template-columns: 1fr;
    }
    
    .service-card-image {
        height: 300px;
    }

    .products-slider {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        margin: 0 auto;
    }
    
    section {
        width: 100%;
        box-sizing: border-box;
        padding-left: 0;
        padding-right: 0;
        overflow-x: hidden;
    }
    
    .hero .container {
        width: 100%;
        box-sizing: border-box;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .hero {
        width: 100%;
        overflow-x: hidden;
    }
    
    header {
        padding: 10px 0;
    }
    
    header .container {
        flex-wrap: wrap;
    }
    
    .logo {
        margin-bottom: 0;
        flex: 1;
    }
    
    .logo h1 {
        font-size: 1.4rem;
    }
    
    nav {
        justify-content: flex-end;
        width: auto;
        display: flex;
        align-items: center;
    }
    
    .menu {
        position: fixed;
        top: 60px;
        left: 0;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    body[data-theme="dark"] .menu {
        background-color: #1a1a1a;
    }
    
    .menu.active {
        transform: translateY(0);
    }
    
    .menu li {
        margin: 15px 0;
        text-align: center;
    }
    
    .hamburger {
        display: flex;
        z-index: 1000;
        margin-left: 15px;
    }
    
    .hamburger span {
        transition: all 0.3s ease;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .theme-switch-wrapper {
        position: relative;
        top: 0;
        right: 0;
        margin-right: 10px;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
        width: 100%;
    }
    
    .service-card-detailed {
        grid-template-columns: 1fr;
    }
    
    .service-card-image {
        height: 200px;
    }
    
    .features-container,
    .services-container,
    .testimonials-container {
        grid-template-columns: 1fr;
    }

    .products-slider {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
    }

    .product-card {
        flex: 0 0 85%;
    }
    
    .service-features,
    .service-benefits {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links h3::after,
    .footer-services h3::after,
    .footer-social h3::after,
    .footer-locations h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

@media (max-width: 480px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        width: 100%;
        overflow-x: hidden;
    }
    
    .hero .container {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }
    
    .popup-overlay {
        left: 0;
        right: 0;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    .popup-container {
        width: 95%;
        max-width: 350px;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    /* Düğmeler için düzeltmeler */
    .cta-buttons {
        width: 100%;
        box-sizing: border-box;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
}

/* Sayfa Yükleme Animasyonu */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

body[data-theme="dark"] .loader-wrapper {
    background-color: #1a1a1a;
}

.loader {
    width: 60px;
    height: 60px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Popup Stili */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    backdrop-filter: blur(5px);
}

/* Active sınıfı eklendiğinde görünürlük ayarları */
.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    width: 90%;
    max-width: 500px;
    transform: translateY(20px);
    transition: all 0.3s ease-out;
    overflow: hidden;
    box-sizing: border-box;
}

/* Active sınıfı eklendiğinde animasyon */
.popup-overlay.active .popup-container {
    transform: translateY(0);
}

/* Popup içerik stilleri */
.popup-content {
    padding: 25px;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.2s ease;
}

.popup-close:hover {
    background-color: #e74c3c;
    color: white;
    transform: rotate(90deg);
}

.popup-header {
    margin-bottom: 15px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.popup-title {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 8px;
    line-height: 1.3;
}

.popup-subtitle {
    font-size: 16px;
    color: #444;
    font-weight: 500;
}

.popup-body {
    padding: 5px 0 15px;
}

.popup-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.popup-text strong {
    color: #e74c3c;
    font-weight: 700;
}

/* Discount badge */
.discount-badge-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #e74c3c;
    color: white;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    vertical-align: middle;
}

/* Countdown container */
.countdown-container {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    gap: 10px;
}

.countdown-item {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 12px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.countdown-number {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
}

/* CTA Butonu stilini güncelle */
.popup-cta {
    margin-top: 20px;
}

.popup-cta .btn {
    width: 100%;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    background-color: #0066cc;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 102, 204, 0.2);
    text-transform: uppercase;
    border: none;
}

.popup-cta .btn:hover {
    background-color: #0055aa;
    box-shadow: 0 6px 15px rgba(0, 102, 204, 0.3);
}

/* Popup kapatma animasyonu */
.popup-overlay.closing {
    opacity: 0;
}

.popup-overlay.closing .popup-container {
    transform: translateY(20px);
}

/* Dark mode uyarlamaları */
body[data-theme="dark"] .popup-container {
    background-color: #222;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-theme="dark"] .popup-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-theme="dark"] .popup-title {
    color: #4a90e2;
}

body[data-theme="dark"] .popup-subtitle {
    color: #ddd;
}

body[data-theme="dark"] .popup-text {
    color: #ccc;
}

body[data-theme="dark"] .countdown-item {
    background-color: #333;
    border-color: #444;
}

body[data-theme="dark"] .countdown-number {
    color: #4a90e2;
}

body[data-theme="dark"] .countdown-label {
    color: #bbb;
}

body[data-theme="dark"] .popup-close {
    background-color: #333;
    color: #ddd;
}

/* Responsive ayarlar */
@media (max-width: 480px) {
    .popup-container {
        width: 95%;
        max-width: 380px;
    }
    
    .popup-content {
        padding: 20px 15px;
    }
    
    .popup-title {
        font-size: 20px;
    }
    
    .popup-subtitle {
        font-size: 14px;
    }
    
    .countdown-item {
        padding: 10px 5px;
    }
    
    .countdown-number {
        font-size: 20px;
    }
    
    .countdown-label {
        font-size: 10px;
    }
    
    .popup-text {
        font-size: 14px;
        margin-bottom: 15px;
    }
}

/* Torbalı Özel Bölümü Stili */
.torbali-special {
    padding: 70px 0;
    background-color: rgba(230, 126, 34, 0.05);
}

body[data-theme="dark"] .torbali-special {
    background-color: rgba(243, 156, 18, 0.05);
}

.torbali-neighborhoods {
    margin-top: 40px;
    text-align: center;
}

.torbali-neighborhoods h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.torbali-neighborhoods h3::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.neighborhoods-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.neighborhood {
    background-color: #fff;
    color: var(--text-color);
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

body[data-theme="dark"] .neighborhood {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.neighborhood:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    background-color: var(--accent-color);
    color: white;
}

@media (max-width: 768px) {
    .neighborhoods-container {
        gap: 10px;
    }
    
    .neighborhood {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/* Service Card CTA Buttons Stili */
.service-card-content .cta-buttons {
    margin-top: auto;
    display: flex;
    gap: 15px;
}

/* Neden Bizi Tercih Etmelisiniz Bölümü */
.why-choose-us {
    background-color: #f9f9f9;
    position: relative;
    overflow: visible;
    z-index: 1;
}

body[data-theme="dark"] .why-choose-us {
    background-color: #1f2937;
}

.why-choose-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 102, 204, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

body[data-theme="dark"] .why-choose-us::before {
    background: radial-gradient(circle at center, rgba(74, 144, 226, 0.05) 0%, rgba(31, 41, 55, 0) 70%);
}

.why-choose-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.why-choose-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

body[data-theme="dark"] .feature-item {
    background-color: #2d3748;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

body[data-theme="dark"] .feature-item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.feature-item:hover::after {
    width: 100%;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    background-color: var(--accent-color);
}

.feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 600;
}

body[data-theme="dark"] .feature-content h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

body[data-theme="dark"] .feature-content p {
    color: var(--text-secondary);
}

.cta-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    position: relative;
    z-index: 50;
}

.cta-container .btn {
    position: relative;
    z-index: 50;
    cursor: pointer;
    pointer-events: auto;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-title {
        font-size: 2rem;
    }
    
    .why-choose-subtitle {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 20px;
    }
}

@keyframes popupFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
}

/* Daha küçük mobil ekranlar için ek düzeltmeler */
@media (max-width: 360px) {
    .popup-container {
        width: 95%;
        max-width: 300px;
    }
    
    .popup-title {
        font-size: 1.1rem;
    }
    
    .popup-subtitle {
        font-size: 0.8rem;
    }
    
    .countdown-number {
        font-size: 1rem;
    }
    
    .countdown-label {
        font-size: 0.55rem;
    }
    
    .discount-badge-inline {
        font-size: 0.75rem;
        padding: 2px 5px;
    }
}

/* Hizmetler Sidebar Stili */
.services-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(to right, rgba(0, 102, 204, 0.95), rgba(0, 102, 204, 0.85));
    padding: 15px;
    border-radius: 0 15px 15px 0;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 220px;
    max-width: 80%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateY(-50%) translateX(-100%);
}

.services-sidebar.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.sidebar-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: center;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-link {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.sidebar-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 0 2px 2px 0;
    transition: all 0.3s ease;
    opacity: 0;
}

.sidebar-link:hover, .sidebar-link.active {
    background-color: rgba(255, 255, 255, 0.15);
}

.sidebar-link:hover::before, .sidebar-link.active::before {
    opacity: 1;
}

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

.sidebar-link.active {
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.sidebar-toggle {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 102, 204, 0.9);
    width: 30px;
    height: 40px;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sidebar-toggle:hover {
    background-color: rgba(0, 102, 204, 1);
}

.sidebar-toggle i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.services-sidebar.collapsed {
    transform: translateY(-50%) translateX(-100%);
}

.services-sidebar.collapsed .sidebar-toggle i {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .services-sidebar {
        width: 180px;
        padding: 12px;
    }
    
    .sidebar-title {
        font-size: 1rem;
    }
    
    .sidebar-link {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .services-sidebar {
        display: none;
    }
}

/* Ürün kartı hover class'ı */
.product-card.hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-card.hover .product-card-icon {
    background-color: var(--primary-color);
}

.product-card.hover .product-card-icon i {
    color: #fff;
}

body[data-theme="dark"] .primary-btn {
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

body[data-theme="dark"] .primary-btn:hover {
    background-color: #3a84d9;
    box-shadow: 0 6px 16px rgba(74, 144, 226, 0.4);
}

/* Footer başlıkları düzeltme */
body[data-theme="dark"] .footer-logo h2,
body[data-theme="dark"] .footer-links h3,
body[data-theme="dark"] .footer-services h3,
body[data-theme="dark"] .footer-locations h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Service kart içindeki başlıklar */
body[data-theme="dark"] .service-feature span,
body[data-theme="dark"] .benefit span {
    color: var(--text-secondary);
}

/* Feature kartları başlık ve metinleri */
body[data-theme="dark"] .feature-box h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

body[data-theme="dark"] .feature-box p {
    color: var(--text-secondary);
}

/* İletişim bilgisi ikonlarının dark mode düzenlemesi */
body[data-theme="dark"] .info-item i {
    color: rgba(255, 255, 255, 0.9);
}

body[data-theme="dark"] .info-item h3 {
    color: var(--heading-dark);
}

body[data-theme="dark"] .info-item p,
body[data-theme="dark"] .info-item a {
    color: var(--text-secondary);
}

/* Footer linkleri iyileştirme */
body[data-theme="dark"] .footer-links a,
body[data-theme="dark"] .footer-services a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

body[data-theme="dark"] .footer-links a:hover,
body[data-theme="dark"] .footer-services a:hover {
    color: var(--primary-color);
}

/* Tüm mobil görünüm düzeltmeleri */
html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        margin: 0 auto;
    }
    
    section {
        width: 100%;
        box-sizing: border-box;
        padding-left: 0;
        padding-right: 0;
    }
    
    .hero .container {
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .hero .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .popup-overlay {
        left: 0;
        right: 0;
        width: 100%;
    }
    
    .popup-container {
        width: 92%;
        max-width: 330px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
    
    /* Düğmeler için düzeltmeler */
    .cta-buttons {
        width: 100%;
        box-sizing: border-box;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
}

/* Torbalı Showcase Bölümü Stilleri */
.torbali-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-bg, #f8f9fa) 0%, var(--secondary-light-bg, #e9ecef) 100%);
    position: relative;
    overflow: hidden;
}

body[data-theme="dark"] .torbali-showcase {
    background: linear-gradient(135deg, var(--dark-bg, #212529) 0%, var(--secondary-dark-bg, #343a40) 100%);
}

.torbali-showcase::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(52, 152, 219, 0.1);
    top: -150px;
    left: -150px;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.torbali-showcase::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.1);
    bottom: -200px;
    right: -200px;
    z-index: 1;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.torbali-showcase .container {
    position: relative;
    z-index: 2;
}

.torbali-showcase-content {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--card-bg, #fff);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

body[data-theme="dark"] .torbali-showcase-content {
    background: var(--card-dark-bg, #2a3441);
}

.torbali-showcase-image {
    flex: 1;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.showcase-badge {
    position: absolute;
    top: 20px;
    right: 0;
    background-color: #25d366;
    color: white;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px 0 0 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
}

.torbali-showcase-content:hover .showcase-image {
    transform: scale(1.05);
}

.torbali-showcase-info {
    flex: 1;
    padding: 40px;
}

.torbali-showcase-info h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--heading-color, #333);
    position: relative;
    padding-bottom: 15px;
}

body[data-theme="dark"] .torbali-showcase-info h2 {
    color: var(--heading-color-dark, #fff);
}

.torbali-showcase-info h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-color, #3498db);
    border-radius: 3px;
}

.torbali-showcase-info p {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color, #666);
}

body[data-theme="dark"] .torbali-showcase-info p {
    color: var(--text-color-dark, #b3b3b3);
}

.torbali-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-item i {
    color: var(--accent-color, #2ecc71);
    font-size: 16px;
    width: 25px;
    height: 25px;
    background: rgba(46, 204, 113, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

body[data-theme="dark"] .benefit-item i {
    background: rgba(46, 204, 113, 0.2);
}

.benefit-item span {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color, #666);
}

body[data-theme="dark"] .benefit-item span {
    color: var(--text-color-dark, #b3b3b3);
}

.torbali-cta {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.torbali-cta .btn {
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.torbali-cta .primary-btn {
    background: var(--primary-color, #3498db);
    color: white;
    border: none;
}

.torbali-cta .primary-btn:hover {
    background: var(--primary-color-hover, #2980b9);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.torbali-cta .secondary-btn {
    background: transparent;
    color: var(--primary-color, #3498db);
    border: 1px solid var(--primary-color, #3498db);
}

.torbali-cta .secondary-btn:hover {
    background: rgba(52, 152, 219, 0.1);
    transform: translateY(-3px);
}

/* Responsive Design for Torbalı Showcase */
@media (max-width: 992px) {
    .torbali-showcase-content {
        flex-direction: column;
    }
    
    .torbali-showcase-image {
        width: 100%;
        min-height: 300px;
    }
    
    .torbali-showcase-info {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .torbali-benefits {
        grid-template-columns: 1fr;
    }
    
    .torbali-showcase-info h2 {
        font-size: 24px;
    }
    
    .torbali-showcase-info p {
        font-size: 15px;
    }
    
    .torbali-cta {
        flex-direction: column;
    }
}

/* Torbalı Kartları Stilleri */
.torbali-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.torbali-card {
    background: var(--card-bg, #fff);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-top: 4px solid var(--primary-color, #3498db);
}

body[data-theme="dark"] .torbali-card {
    background: var(--card-dark-bg, #2a3441);
    border-top: 4px solid var(--primary-color, #3498db);
}

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

.torbali-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.torbali-card:hover .torbali-card-img {
    transform: scale(1.05);
}

.torbali-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.torbali-card-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--heading-color, #333);
}

body[data-theme="dark"] .torbali-card-content h3 {
    color: var(--heading-color-dark, #fff);
}

.torbali-card-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color, #666);
}

body[data-theme="dark"] .torbali-card-content p {
    color: var(--text-color-dark, #b3b3b3);
}

@media (max-width: 992px) {
    .torbali-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .torbali-cards {
        grid-template-columns: 1fr;
    }
}

/* Ürünler Sayfası Stil Tanımlamaları */
.products-page {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-color-light) 0%, var(--bg-color-light-2) 100%);
}

body[data-theme="dark"] .products-page {
    background: linear-gradient(135deg, var(--bg-color-dark) 0%, var(--bg-color-dark-2) 100%);
}

.product-category-nav {
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    padding: 15px;
    position: sticky;
    top: 80px;
    z-index: 10;
    transition: all 0.3s ease;
}

body[data-theme="dark"] .product-category-nav {
    background: var(--card-bg-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.product-category-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.product-category-nav li a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

body[data-theme="dark"] .product-category-nav li a {
    color: var(--text-color-dark);
}

.product-category-nav li a:hover,
.product-category-nav li a.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.product-category-nav li a i {
    font-size: 12px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.product-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

body[data-theme="dark"] .product-item {
    background: #2f3b4d;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.product-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    z-index: 5;
}

.product-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background-color: #ffffff;
    border-radius: 0 0 12px 12px;
}

body[data-theme="dark"] .product-content {
    background-color: #2a3441;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 10px;
}

body[data-theme="dark"] .product-title {
    color: var(--heading-color-dark);
}

.product-description {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.5;
    flex: 1;
}

body[data-theme="dark"] .product-description {
    color: var(--text-color-dark);
}

.product-features {
    margin-bottom: 15px;
}

.product-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    font-size: 13px;
}

.product-feature i {
    color: var(--primary-color);
    font-size: 12px;
}

.product-feature span {
    color: var(--text-color);
}

body[data-theme="dark"] .product-feature span {
    color: var(--text-color-dark);
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.btn-product-detail {
    flex: 1;
    padding: 10px 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-product-detail:hover {
    background: var(--primary-color-dark);
    transform: translateY(-3px);
}

.btn-product-whatsapp {
    padding: 10px 15px;
    background: #25d366;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-product-whatsapp:hover {
    background: #1da851;
    transform: translateY(-3px);
}

/* Ürün Detay Sayfası */
.product-detail-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-color-light) 0%, var(--bg-color-light-2) 100%);
}

body[data-theme="dark"] .product-detail-section {
    background: linear-gradient(135deg, var(--bg-color-dark) 0%, var(--bg-color-dark-2) 100%);
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.product-gallery {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

body[data-theme="dark"] .product-gallery {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-main-image {
    height: 400px;
    overflow: hidden;
}

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

.product-thumbnails {
    display: flex;
    gap: 10px;
    padding: 15px;
    background: var(--white-color);
}

body[data-theme="dark"] .product-thumbnails {
    background: var(--card-bg-dark);
}

.product-thumb {
    height: 80px;
    width: 80px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.product-thumb.active,
.product-thumb:hover {
    opacity: 1;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 20px;
    background: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body[data-theme="dark"] .product-info {
    background: var(--card-bg-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-info-title {
    font-size: 26px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

body[data-theme="dark"] .product-info-title {
    color: var(--heading-color-dark);
    border-bottom: 1px solid var(--border-color-dark);
}

.product-info-description {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

body[data-theme="dark"] .product-info-description {
    color: var(--text-color-dark);
}

.product-info-features {
    margin-bottom: 20px;
}

.product-info-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.product-info-feature i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
}

.product-info-feature span {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.5;
}

body[data-theme="dark"] .product-info-feature span {
    color: var(--text-color-dark);
}

.product-cta {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.btn-request-quote {
    flex: 1;
    padding: 12px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-request-quote:hover {
    background: var(--primary-color-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.btn-call-now {
    padding: 12px 20px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-call-now:hover {
    background: rgba(52, 152, 219, 0.1);
    transform: translateY(-3px);
}

.product-tabs {
    margin-top: 40px;
}

.tab-buttons {
    display: flex;
    gap: 5px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

body[data-theme="dark"] .tab-buttons {
    border-bottom: 1px solid var(--border-color-dark);
}

.tab-button {
    padding: 12px 25px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

body[data-theme="dark"] .tab-button {
    color: var(--text-color-dark);
}

.tab-button.active,
.tab-button:hover {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.tab-content {
    display: none;
    padding: 20px;
    background: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

body[data-theme="dark"] .tab-content {
    background: var(--card-bg-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: 20px;
    color: var(--heading-color);
    margin-bottom: 15px;
}

body[data-theme="dark"] .tab-content h3 {
    color: var(--heading-color-dark);
}

.tab-content p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 15px;
}

body[data-theme="dark"] .tab-content p {
    color: var(--text-color-dark);
}

.tab-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.tab-content ul li {
    margin-bottom: 8px;
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.5;
}

body[data-theme="dark"] .tab-content ul li {
    color: var(--text-color-dark);
}

.faq-item {
    margin-bottom: 15px;
    background: var(--bg-color-light);
    border-radius: 8px;
    overflow: hidden;
}

body[data-theme="dark"] .faq-item {
    background: var(--bg-color-dark);
}

.faq-question {
    position: relative;
    padding: 15px 20px;
    margin-bottom: 1px;
    background-color: #f8f9fa;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

body[data-theme="dark"] .faq-question {
    background-color: #2c3e50;
    color: #ecf0f1;
}

.faq-question:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    transition: all 0.3s ease;
    font-size: 18px;
    color: #3498db;
}

.faq-question.active {
    background-color: #e9f5ff;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

body[data-theme="dark"] .faq-question.active {
    background-color: #34495e;
}

.faq-question.active:after {
    transform: rotate(180deg);
}

.faq-answer { background-color: #fff; padding: 0; max-height: 0; overflow: hidden; transition: all 0.5s ease; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; margin-top: 0; margin-bottom: 0; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); opacity: 0; }

body[data-theme="dark"] .faq-answer { background-color: #fff; padding: 0; max-height: 0; overflow: hidden; transition: all 0.5s ease; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; margin-top: 0; margin-bottom: 0; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); opacity: 0; }

.faq-answer.active { padding: 20px; max-height: 300px; opacity: 1; margin-bottom: 10px; }

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

body[data-theme="dark"] .faq-answer p {
    color: #b3b3b3;
}

.related-products-section {
    padding: 60px 0;
    background: var(--bg-color-light-2);
}

body[data-theme="dark"] .related-products-section {
    background: var(--bg-color-dark-2);
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* Responsive tasarım için media queries */
@media (max-width: 992px) {
    .product-detail-container {
        grid-template-columns: 1fr;
    }
    
    .product-main-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .product-category-nav {
        padding: 10px;
        overflow-x: auto;
        white-space: nowrap;
        justify-content: flex-start;
    }
    
    .product-category-nav ul {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .product-main-image {
        height: 300px;
    }
    
    .product-thumbnails {
        overflow-x: auto;
    }
    
    .product-cta {
        flex-direction: column;
    }
    
    .tab-buttons {
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .tab-button {
        padding: 10px 15px;
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .product-main-image {
        height: 250px;
    }
    
    .product-thumb {
        height: 60px;
        width: 60px;
    }
    
    .product-info-title {
        font-size: 22px;
    }
}

/* Proje resimleri için ek düzenleme */
.projects.clear-images .gallery-item img {
    filter: none !important;
    opacity: 1 !important;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
} 

/* Proje Detay Modalı */
.project-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.project-modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 900px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.4s ease-out;
}

body[data-theme="dark"] .project-modal-content {
    background-color: #2a3441;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.project-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #333;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

body[data-theme="dark"] .project-modal-close {
    color: white;
    background: rgba(0, 0, 0, 0.3);
}

.project-modal-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

#projectModalTitle {
    margin-top: 5px;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

body[data-theme="dark"] #projectModalTitle {
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#projectModalImage {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

body[data-theme="dark"] #projectModalImage {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .project-modal {
        padding-top: 20px;
    }
    
    .project-modal-content {
        width: 95%;
        padding: 15px;
    }
    
    #projectModalTitle {
        font-size: 18px;
        margin-bottom: 15px;
    }
}

/* Müşteri Yorumları */
.testimonials {
    background-color: #fff;
}

body[data-theme="dark"] .testimonials {
    background-color: #1f1f1f;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

body[data-theme="dark"] .testimonial {
    background-color: rgba(42, 52, 65, 0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.quote {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
}

body[data-theme="dark"] .quote i {
    color: rgba(255, 255, 255, 0.1);
}

.testimonial p {
    margin-bottom: 20px;
    margin-top: 10px;
    position: relative;
    z-index: 2;
}

body[data-theme="dark"] .testimonial-text {
    color: var(--text-secondary);
}

.client {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.client-info h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

body[data-theme="dark"] .client-info h4 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.client-info p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

body[data-theme="dark"] .client-name {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

body[data-theme="dark"] .client-location {
    color: rgba(255, 255, 255, 0.7);
}

.rating {
    color: #f39c12;
}

body[data-theme="dark"] .rating i {
    color: #f39c12;
}

/* İletişim Bölümü */
.contact {
    background-color: #f9f9f9;
}

body[data-theme="dark"] .contact {
    background-color: #2a2a2a;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

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

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

body[data-theme="dark"] .info-item h3 {
    color: var(--heading-dark);
}

.contact-form {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

body[data-theme="dark"] .contact-form {
    background-color: var(--secondary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    background-color: #f9f9f9;
    transition: var(--transition);
}

body[data-theme="dark"] .form-group input,
body[data-theme="dark"] .form-group select,
body[data-theme="dark"] .form-group textarea {
    background-color: #333;
    border-color: #444;
    color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
}

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

/* CTA Bölümü */
.cta {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 0.9rem;
}

.footer-links h3,
.footer-services h3,
.footer-social h3,
.footer-locations h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-social h3::after,
.footer-locations h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-services a {
    color: #ddd;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-locations p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #ddd;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
}

.footer-bottom a {
    color: #ddd;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* Floating Buttons */
.floating-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.floating-button a:hover {
    transform: scale(1.1);
}

.floating-button i {
    font-size: 2rem;
}

.whatsapp-button {
    background-color: #25d366;
}

.call-button {
    background-color: #3498db;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
}

/* Mobil için uyumluluk */
@media (max-width: 768px) {
    .floating-button {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-button a {
        width: 50px;
        height: 50px;
    }
    
    .floating-button i {
        font-size: 1.5rem;
    }
}

/* Animasyonlar */
.animate-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Tasarım */
@media (max-width: 991px) {
    .container {
        padding: 0 15px;
    }

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

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

    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .service-card-detailed {
        grid-template-columns: 1fr;
    }
    
    .service-card-image {
        height: 300px;
    }

    .products-slider {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        margin: 0 auto;
    }
    
    section {
        width: 100%;
        box-sizing: border-box;
        padding-left: 0;
        padding-right: 0;
        overflow-x: hidden;
    }
    
    .hero .container {
        width: 100%;
        box-sizing: border-box;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .hero {
        width: 100%;
        overflow-x: hidden;
    }
    
    header {
        padding: 10px 0;
    }
    
    header .container {
        flex-wrap: wrap;
    }
    
    .logo {
        margin-bottom: 0;
        flex: 1;
    }
    
    .logo h1 {
        font-size: 1.4rem;
    }
    
    nav {
        justify-content: flex-end;
        width: auto;
        display: flex;
        align-items: center;
    }
    
    .menu {
        position: fixed;
        top: 60px;
        left: 0;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    body[data-theme="dark"] .menu {
        background-color: #1a1a1a;
    }
    
    .menu.active {
        transform: translateY(0);
    }
    
    .menu li {
        margin: 15px 0;
        text-align: center;
    }
    
    .hamburger {
        display: flex;
        z-index: 1000;
        margin-left: 15px;
    }
    
    .hamburger span {
        transition: all 0.3s ease;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .theme-switch-wrapper {
        position: relative;
        top: 0;
        right: 0;
        margin-right: 10px;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
        width: 100%;
    }
    
    .service-card-detailed {
        grid-template-columns: 1fr;
    }
    
    .service-card-image {
        height: 200px;
    }
    
    .features-container,
    .services-container,
    .testimonials-container {
        grid-template-columns: 1fr;
    }

    .products-slider {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
    }

    .product-card {
        flex: 0 0 85%;
    }
    
    .service-features,
    .service-benefits {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links h3::after,
    .footer-services h3::after,
    .footer-social h3::after,
    .footer-locations h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

@media (max-width: 480px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        width: 100%;
        overflow-x: hidden;
    }
    
    .hero .container {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }
    
    .popup-overlay {
        left: 0;
        right: 0;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    .popup-container {
        width: 95%;
        max-width: 350px;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    /* Düğmeler için düzeltmeler */
    .cta-buttons {
        width: 100%;
        box-sizing: border-box;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
}

/* Sayfa Yükleme Animasyonu */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

body[data-theme="dark"] .loader-wrapper {
    background-color: #1a1a1a;
}

.loader {
    width: 60px;
    height: 60px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Popup Stili */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    backdrop-filter: blur(5px);
}

/* Active sınıfı eklendiğinde görünürlük ayarları */
.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    width: 90%;
    max-width: 500px;
    transform: translateY(20px);
    transition: all 0.3s ease-out;
    overflow: hidden;
    box-sizing: border-box;
}

/* Active sınıfı eklendiğinde animasyon */
.popup-overlay.active .popup-container {
    transform: translateY(0);
}

/* Popup içerik stilleri */
.popup-content {
    padding: 25px;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.2s ease;
}

.popup-close:hover {
    background-color: #e74c3c;
    color: white;
    transform: rotate(90deg);
}

.popup-header {
    margin-bottom: 15px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.popup-title {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 8px;
    line-height: 1.3;
}

.popup-subtitle {
    font-size: 16px;
    color: #444;
    font-weight: 500;
}

.popup-body {
    padding: 5px 0 15px;
}

.popup-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.popup-text strong {
    color: #e74c3c;
    font-weight: 700;
}

/* Discount badge */
.discount-badge-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #e74c3c;
    color: white;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    vertical-align: middle;
}

/* Countdown container */
.countdown-container {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    gap: 10px;
}

.countdown-item {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 12px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.countdown-number {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
}

/* CTA Butonu stilini güncelle */
.popup-cta {
    margin-top: 20px;
}

.popup-cta .btn {
    width: 100%;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    background-color: #0066cc;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 102, 204, 0.2);
    text-transform: uppercase;
    border: none;
}

.popup-cta .btn:hover {
    background-color: #0055aa;
    box-shadow: 0 6px 15px rgba(0, 102, 204, 0.3);
}

/* Popup kapatma animasyonu */
.popup-overlay.closing {
    opacity: 0;
}

.popup-overlay.closing .popup-container {
    transform: translateY(20px);
}

/* Dark mode uyarlamaları */
body[data-theme="dark"] .popup-container {
    background-color: #222;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-theme="dark"] .popup-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-theme="dark"] .popup-title {
    color: #4a90e2;
}

body[data-theme="dark"] .popup-subtitle {
    color: #ddd;
}

body[data-theme="dark"] .popup-text {
    color: #ccc;
}

body[data-theme="dark"] .countdown-item {
    background-color: #333;
    border-color: #444;
}

body[data-theme="dark"] .countdown-number {
    color: #4a90e2;
}

body[data-theme="dark"] .countdown-label {
    color: #bbb;
}

body[data-theme="dark"] .popup-close {
    background-color: #333;
    color: #ddd;
}

/* Responsive ayarlar */
@media (max-width: 480px) {
    .popup-container {
        width: 95%;
        max-width: 380px;
    }
    
    .popup-content {
        padding: 20px 15px;
    }
    
    .popup-title {
        font-size: 20px;
    }
    
    .popup-subtitle {
        font-size: 14px;
    }
    
    .countdown-item {
        padding: 10px 5px;
    }
    
    .countdown-number {
        font-size: 20px;
    }
    
    .countdown-label {
        font-size: 10px;
    }
    
    .popup-text {
        font-size: 14px;
        margin-bottom: 15px;
    }
}

/* Torbalı Özel Bölümü Stili */
.torbali-special {
    padding: 70px 0;
    background-color: rgba(230, 126, 34, 0.05);
}

body[data-theme="dark"] .torbali-special {
    background-color: rgba(243, 156, 18, 0.05);
}

.torbali-neighborhoods {
    margin-top: 40px;
    text-align: center;
}

.torbali-neighborhoods h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.torbali-neighborhoods h3::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.neighborhoods-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.neighborhood {
    background-color: #fff;
    color: var(--text-color);
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

body[data-theme="dark"] .neighborhood {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.neighborhood:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    background-color: var(--accent-color);
    color: white;
}

@media (max-width: 768px) {
    .neighborhoods-container {
        gap: 10px;
    }
    
    .neighborhood {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/* Service Card CTA Buttons Stili */
.service-card-content .cta-buttons {
    margin-top: auto;
    display: flex;
    gap: 15px;
}

/* Neden Bizi Tercih Etmelisiniz Bölümü */
.why-choose-us {
    background-color: #f9f9f9;
    position: relative;
    overflow: visible;
    z-index: 1;
}

body[data-theme="dark"] .why-choose-us {
    background-color: #1f2937;
}

.why-choose-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 102, 204, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

body[data-theme="dark"] .why-choose-us::before {
    background: radial-gradient(circle at center, rgba(74, 144, 226, 0.05) 0%, rgba(31, 41, 55, 0) 70%);
}

.why-choose-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.why-choose-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

body[data-theme="dark"] .feature-item {
    background-color: #2d3748;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

body[data-theme="dark"] .feature-item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.feature-item:hover::after {
    width: 100%;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    background-color: var(--accent-color);
}

.feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 600;
}

body[data-theme="dark"] .feature-content h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

body[data-theme="dark"] .feature-content p {
    color: var(--text-secondary);
}

.cta-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    position: relative;
    z-index: 50;
}

.cta-container .btn {
    position: relative;
    z-index: 50;
    cursor: pointer;
    pointer-events: auto;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-title {
        font-size: 2rem;
    }
    
    .why-choose-subtitle {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 20px;
    }
}

@keyframes popupFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
}

/* Daha küçük mobil ekranlar için ek düzeltmeler */
@media (max-width: 360px) {
    .popup-container {
        width: 95%;
        max-width: 300px;
    }
    
    .popup-title {
        font-size: 1.1rem;
    }
    
    .popup-subtitle {
        font-size: 0.8rem;
    }
    
    .countdown-number {
        font-size: 1rem;
    }
    
    .countdown-label {
        font-size: 0.55rem;
    }
    
    .discount-badge-inline {
        font-size: 0.75rem;
        padding: 2px 5px;
    }
}

/* Hizmetler Sidebar Stili */
.services-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(to right, rgba(0, 102, 204, 0.95), rgba(0, 102, 204, 0.85));
    padding: 15px;
    border-radius: 0 15px 15px 0;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 220px;
    max-width: 80%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateY(-50%) translateX(-100%);
}

.services-sidebar.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.sidebar-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: center;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-link {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.sidebar-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 0 2px 2px 0;
    transition: all 0.3s ease;
    opacity: 0;
}

.sidebar-link:hover, .sidebar-link.active {
    background-color: rgba(255, 255, 255, 0.15);
}

.sidebar-link:hover::before, .sidebar-link.active::before {
    opacity: 1;
}

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

.sidebar-link.active {
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.sidebar-toggle {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 102, 204, 0.9);
    width: 30px;
    height: 40px;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sidebar-toggle:hover {
    background-color: rgba(0, 102, 204, 1);
}

.sidebar-toggle i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.services-sidebar.collapsed {
    transform: translateY(-50%) translateX(-100%);
}

.services-sidebar.collapsed .sidebar-toggle i {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .services-sidebar {
        width: 180px;
        padding: 12px;
    }
    
    .sidebar-title {
        font-size: 1rem;
    }
    
    .sidebar-link {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .services-sidebar {
        display: none;
    }
}

/* Ürün kartı hover class'ı */
.product-card.hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-card.hover .product-card-icon {
    background-color: var(--primary-color);
}

.product-card.hover .product-card-icon i {
    color: #fff;
}

body[data-theme="dark"] .primary-btn {
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

body[data-theme="dark"] .primary-btn:hover {
    background-color: #3a84d9;
    box-shadow: 0 6px 16px rgba(74, 144, 226, 0.4);
}

/* Footer başlıkları düzeltme */
body[data-theme="dark"] .footer-logo h2,
body[data-theme="dark"] .footer-links h3,
body[data-theme="dark"] .footer-services h3,
body[data-theme="dark"] .footer-locations h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Service kart içindeki başlıklar */
body[data-theme="dark"] .service-feature span,
body[data-theme="dark"] .benefit span {
    color: var(--text-secondary);
}

/* Feature kartları başlık ve metinleri */
body[data-theme="dark"] .feature-box h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

body[data-theme="dark"] .feature-box p {
    color: var(--text-secondary);
}

/* İletişim bilgisi ikonlarının dark mode düzenlemesi */
body[data-theme="dark"] .info-item i {
    color: rgba(255, 255, 255, 0.9);
}

body[data-theme="dark"] .info-item h3 {
    color: var(--heading-dark);
}

body[data-theme="dark"] .info-item p,
body[data-theme="dark"] .info-item a {
    color: var(--text-secondary);
}

/* Footer linkleri iyileştirme */
body[data-theme="dark"] .footer-links a,
body[data-theme="dark"] .footer-services a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

body[data-theme="dark"] .footer-links a:hover,
body[data-theme="dark"] .footer-services a:hover {
    color: var(--primary-color);
}

/* Tüm mobil görünüm düzeltmeleri */
html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        margin: 0 auto;
    }
    
    section {
        width: 100%;
        box-sizing: border-box;
        padding-left: 0;
        padding-right: 0;
    }
    
    .hero .container {
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .hero .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .popup-overlay {
        left: 0;
        right: 0;
        width: 100%;
    }
    
    .popup-container {
        width: 92%;
        max-width: 330px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
    
    /* Düğmeler için düzeltmeler */
    .cta-buttons {
        width: 100%;
        box-sizing: border-box;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
}

/* Torbalı Showcase Bölümü Stilleri */
.torbali-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-bg, #f8f9fa) 0%, var(--secondary-light-bg, #e9ecef) 100%);
    position: relative;
    overflow: hidden;
}

body[data-theme="dark"] .torbali-showcase {
    background: linear-gradient(135deg, var(--dark-bg, #212529) 0%, var(--secondary-dark-bg, #343a40) 100%);
}

.torbali-showcase::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(52, 152, 219, 0.1);
    top: -150px;
    left: -150px;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.torbali-showcase::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.1);
    bottom: -200px;
    right: -200px;
    z-index: 1;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.torbali-showcase .container {
    position: relative;
    z-index: 2;
}

.torbali-showcase-content {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--card-bg, #fff);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

body[data-theme="dark"] .torbali-showcase-content {
    background: var(--card-dark-bg, #2a3441);
}

.torbali-showcase-image {
    flex: 1;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.showcase-badge {
    position: absolute;
    top: 20px;
    right: 0;
    background-color: #25d366;
    color: white;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px 0 0 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
}

.torbali-showcase-content:hover .showcase-image {
    transform: scale(1.05);
}

.torbali-showcase-info {
    flex: 1;
    padding: 40px;
}

.torbali-showcase-info h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--heading-color, #333);
    position: relative;
    padding-bottom: 15px;
}

body[data-theme="dark"] .torbali-showcase-info h2 {
    color: var(--heading-color-dark, #fff);
}

.torbali-showcase-info h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-color, #3498db);
    border-radius: 3px;
}

.torbali-showcase-info p {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color, #666);
}

body[data-theme="dark"] .torbali-showcase-info p {
    color: var(--text-color-dark, #b3b3b3);
}

.torbali-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-item i {
    color: var(--accent-color, #2ecc71);
    font-size: 16px;
    width: 25px;
    height: 25px;
    background: rgba(46, 204, 113, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

body[data-theme="dark"] .benefit-item i {
    background: rgba(46, 204, 113, 0.2);
}

.benefit-item span {
    font-size: 15px;
}

/* Genel CSS Reset ve Değişkenler */
:root {
    --primary-color: #0066cc;
    --secondary-color: #2c3e50;
    --accent-color: #e67e22;
    --light-color: #ecf0f1;
    --dark-color: #1a1a1a;
    --text-color: #333;
    --text-light: #f8f9fa;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 5px;
    --container-width: 1200px;
    --heading-dark: #f8f9fa;
    --heading-light: #333;
}

/* Dark Mode */
[data-theme="dark"] {
    --primary-color: #4a90e2;
    --secondary-color: #34495e;
    --accent-color: #f39c12;
    --light-color: #2c3e50;
    --dark-color: #f8f9fa;
    --text-color: #f8f9fa;
    --text-light: #1a1a1a;
    --box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
    --heading-dark: #ffffff;
    --heading-light: #f0f0f0;
    --text-secondary: rgba(255, 255, 255, 0.85);
}

body[data-theme="dark"] h2,
body[data-theme="dark"] h3,
body[data-theme="dark"] h4 {
    color: var(--heading-dark);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

body[data-theme="dark"] p {
    color: var(--text-secondary);
}

/* Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Header Stili */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--box-shadow);
    padding: 15px 0;
    transition: var(--transition);
}

body[data-theme="dark"] header {
    background-color: rgba(26, 26, 26, 0.95);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

nav {
    display: flex;
    align-items: center;
}

.menu {
    display: flex;
}

.menu li {
    margin-left: 30px;
}

.menu a {
    position: relative;
    font-weight: 500;
    padding: 5px 0;
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 2px 0;
    transition: var(--transition);
}

/* Dark/Light Mode Switch */
.theme-switch-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 15px;
    z-index: 1001;
}

.theme-switch {
    display: inline-block;
    height: 26px;
    position: relative;
    width: 50px;
}

.theme-switch input {
    display: none;
}

.slider {
    background-color: #ccc;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
}

.slider .fa-sun {
    color: #f39c12;
    font-size: 14px;
    margin-left: 2px;
}

.slider .fa-moon {
    color: #f8f9fa;
    font-size: 14px;
    margin-right: 2px;
}

.slider:before {
    background-color: #fff;
    bottom: 3px;
    content: "";
    height: 20px;
    left: 3px;
    position: absolute;
    transition: .4s;
    width: 20px;
    z-index: 2;
}

input:checked + .slider {
    background-color: var(--secondary-color);
}

input:checked + .slider:before {
    transform: translateX(24px);
}

.slider.round {
    border-radius: 24px;
}

.slider.round:before {
    border-radius: 50%;
}

.theme-switch-wrapper em {
    margin-left: 10px;
    font-size: 1rem;
    color: var(--text-color);
}

/* Hero Bölümü */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

/* İzmir Hizmet Bölgeleri Stili */
.service-areas {
    background-color: var(--light-color);
    padding: 80px 0;
}

.areas-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.area-column {
    background-color: #fff;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

body[data-theme="dark"] .area-column {
    background-color: rgba(42, 52, 65, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.area-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.area-column h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

body[data-theme="dark"] .area-column h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

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

.area-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.area-column ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.area-column ul li i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

body[data-theme="dark"] .area-column ul li i {
    color: var(--primary-color);
}

body[data-theme="dark"] .area-column ul li {
    color: var(--text-secondary);
}

/* Aşağı doğru check ikonları renk düzeltmesi */
body[data-theme="dark"] .fa-check-circle {
    color: var(--primary-color);
}

/* Butonlar */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.primary-btn {
    background-color: var(--primary-color);
    color: #fff;
}

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

.secondary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.hero .secondary-btn {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

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

.hero .secondary-btn:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.small-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
}

/* Section Stili */
section {
    padding: 80px 0;
    width: 100%;
    box-sizing: border-box;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    color: var(--heading-light);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

body[data-theme="dark"] .section-title h2 {
    color: var(--heading-dark);
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

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

.section-title p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Özellikler Bölümü */
.features {
    background-color: var(--light-color);
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

body[data-theme="dark"] .feature-box {
    background-color: var(--secondary-color);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-box .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
}

.feature-box .icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.feature-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

body[data-theme="dark"] .feature-box h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-box p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

body[data-theme="dark"] .feature-box p {
    color: var(--text-secondary);
}

/* Hizmetler Bölümü - Yeni Detaylı Hizmet Kartları */
.services {
    background-color: #f9f9f9;
}

body[data-theme="dark"] .services {
    background-color: #2a2a2a;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card-detailed {
    display: grid;
    grid-template-columns: 1fr 2fr;
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

body[data-theme="dark"] .service-card-detailed {
    background-color: var(--secondary-color);
}

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

.service-card-image {
    height: 100%;
    overflow: hidden;
}

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

.service-card-detailed:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.service-card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

body[data-theme="dark"] .service-card-content h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-feature i {
    color: var(--primary-color);
    font-size: 1rem;
}

.service-card-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
    background-color: rgba(0, 102, 204, 0.05);
    padding: 15px;
    border-radius: var(--border-radius);
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.service-card-content .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* Eski Hizmet Kartları Stili - Hizmetler Bölümündeki Kartlar için */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

body[data-theme="dark"] .service-card {
    background-color: var(--secondary-color);
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

body[data-theme="dark"] .service-content h3 {
    color: var(--text-light);
}

.service-content p {
    margin-bottom: 15px;
}

/* Ürünler Slider */
.products {
    position: relative;
    overflow: hidden;
}

.products-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin: 40px 0;
    width: 100%;
    overflow: visible;
}

.product-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    padding: 20px 15px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
}

body[data-theme="dark"] .product-card {
    background-color: #2a3441;
    border: 1px solid rgba(255,255,255,0.1);
}

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

.product-card-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    margin-bottom: 15px;
    transition: var(--transition);
}

body[data-theme="dark"] .product-card-icon {
    background-color: rgba(74, 144, 226, 0.2);
}

.product-card-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

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

.product-card:hover .product-card-icon i {
    color: #fff;
}

.product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

body[data-theme="dark"] .product-card h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.product-card p {
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
    flex-grow: 1;
}

body[data-theme="dark"] .product-card p {
    color: rgba(255,255,255,0.8);
}

.product-card .btn {
    margin-top: auto;
    width: 100%;
    padding: 10px 15px;
    font-size: 0.9rem;
}

/* Projeler Galerisi */
.projects {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

body[data-theme="dark"] .projects {
    background-color: #212529;
}

.projects-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.project-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 300px;
    position: relative;
}

body[data-theme="dark"] .project-item {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.project-image {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

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

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

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0) 100%);
    padding: 30px 20px 20px;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

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

.project-info {
    width: 100%;
    text-align: center;
}

.project-info h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: all 0.4s ease;
    opacity: 0;
}

.project-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
    opacity: 0;
}

.project-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
    opacity: 0;
}

.project-btn:hover {
    background-color: #0055b3;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.project-item:hover .project-info h3,
.project-item:hover .project-info p,
.project-item:hover .project-info .project-btn {
    transform: translateY(0);
    opacity: 1;
}

.projects-cta {
    text-align: center;
    margin-top: 40px;
}

/* Responsive tasarım - Projelerimiz */
@media (max-width: 992px) {
    .projects-gallery {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .projects-gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .project-item {
        height: 250px;
    }
    
    .project-info h3 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .projects-gallery {
        grid-template-columns: 1fr;
    }
}

/* Müşteri Yorumları */
.testimonials {
    background-color: #fff;
}

body[data-theme="dark"] .testimonials {
    background-color: #1f1f1f;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

body[data-theme="dark"] .testimonial {
    background-color: rgba(42, 52, 65, 0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.quote {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
}

body[data-theme="dark"] .quote i {
    color: rgba(255, 255, 255, 0.1);
}

.testimonial p {
    margin-bottom: 20px;
    margin-top: 10px;
    position: relative;
    z-index: 2;
}

body[data-theme="dark"] .testimonial-text {
    color: var(--text-secondary);
}

.client {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.client-info h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

body[data-theme="dark"] .client-info h4 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.client-info p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

body[data-theme="dark"] .client-name {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

body[data-theme="dark"] .client-location {
    color: rgba(255, 255, 255, 0.7);
}

.rating {
    color: #f39c12;
}

body[data-theme="dark"] .rating i {
    color: #f39c12;
}

/* İletişim Bölümü */
.contact {
    background-color: #f9f9f9;
}

body[data-theme="dark"] .contact {
    background-color: #2a2a2a;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

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

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

body[data-theme="dark"] .info-item h3 {
    color: var(--heading-dark);
}

.contact-form {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

body[data-theme="dark"] .contact-form {
    background-color: var(--secondary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    background-color: #f9f9f9;
    transition: var(--transition);
}

body[data-theme="dark"] .form-group input,
body[data-theme="dark"] .form-group select,
body[data-theme="dark"] .form-group textarea {
    background-color: #333;
    border-color: #444;
    color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
}

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

/* CTA Bölümü */
.cta {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 0.9rem;
}

.footer-links h3,
.footer-services h3,
.footer-social h3,
.footer-locations h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-social h3::after,
.footer-locations h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-services a {
    color: #ddd;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-locations p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #ddd;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
}

.footer-bottom a {
    color: #ddd;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* Floating Buttons */
.floating-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.floating-button a:hover {
    transform: scale(1.1);
}

.floating-button i {
    font-size: 2rem;
}

.whatsapp-button {
    background-color: #25d366;
}

.call-button {
    background-color: #3498db;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
}

/* Mobil için uyumluluk */
@media (max-width: 768px) {
    .floating-button {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-button a {
        width: 50px;
        height: 50px;
    }
    
    .floating-button i {
        font-size: 1.5rem;
    }
}

/* Animasyonlar */
.animate-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Tasarım */
@media (max-width: 991px) {
    .container {
        padding: 0 15px;
    }

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

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

    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .service-card-detailed {
        grid-template-columns: 1fr;
    }
    
    .service-card-image {
        height: 300px;
    }

    .products-slider {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        margin: 0 auto;
    }
    
    section {
        width: 100%;
        box-sizing: border-box;
        padding-left: 0;
        padding-right: 0;
        overflow-x: hidden;
    }
    
    .hero .container {
        width: 100%;
        box-sizing: border-box;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .hero {
        width: 100%;
        overflow-x: hidden;
    }
    
    header {
        padding: 10px 0;
    }
    
    header .container {
        flex-wrap: wrap;
    }
    
    .logo {
        margin-bottom: 0;
        flex: 1;
    }
    
    .logo h1 {
        font-size: 1.4rem;
    }
    
    nav {
        justify-content: flex-end;
        width: auto;
        display: flex;
        align-items: center;
    }
    
    .menu {
        position: fixed;
        top: 60px;
        left: 0;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    body[data-theme="dark"] .menu {
        background-color: #1a1a1a;
    }
    
    .menu.active {
        transform: translateY(0);
    }
    
    .menu li {
        margin: 15px 0;
        text-align: center;
    }
    
    .hamburger {
        display: flex;
        z-index: 1000;
        margin-left: 15px;
    }
    
    .hamburger span {
        transition: all 0.3s ease;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .theme-switch-wrapper {
        position: relative;
        top: 0;
        right: 0;
        margin-right: 10px;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
        width: 100%;
    }
    
    .service-card-detailed {
        grid-template-columns: 1fr;
    }
    
    .service-card-image {
        height: 200px;
    }
    
    .features-container,
    .services-container,
    .testimonials-container {
        grid-template-columns: 1fr;
    }

    .products-slider {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
    }

    .product-card {
        flex: 0 0 85%;
    }
    
    .service-features,
    .service-benefits {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links h3::after,
    .footer-services h3::after,
    .footer-social h3::after,
    .footer-locations h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

@media (max-width: 480px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        width: 100%;
        overflow-x: hidden;
    }
    
    .hero .container {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }
    
    .popup-overlay {
        left: 0;
        right: 0;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    .popup-container {
        width: 95%;
        max-width: 350px;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    /* Düğmeler için düzeltmeler */
    .cta-buttons {
        width: 100%;
        box-sizing: border-box;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
}

/* Sayfa Yükleme Animasyonu */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

body[data-theme="dark"] .loader-wrapper {
    background-color: #1a1a1a;
}

.loader {
    width: 60px;
    height: 60px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Popup Stili */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    backdrop-filter: blur(5px);
}

/* Active sınıfı eklendiğinde görünürlük ayarları */
.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    width: 90%;
    max-width: 500px;
    transform: translateY(20px);
    transition: all 0.3s ease-out;
    overflow: hidden;
    box-sizing: border-box;
}

/* Active sınıfı eklendiğinde animasyon */
.popup-overlay.active .popup-container {
    transform: translateY(0);
}

/* Popup içerik stilleri */
.popup-content {
    padding: 25px;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.2s ease;
}

.popup-close:hover {
    background-color: #e74c3c;
    color: white;
    transform: rotate(90deg);
}

.popup-header {
    margin-bottom: 15px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.popup-title {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 8px;
    line-height: 1.3;
}

.popup-subtitle {
    font-size: 16px;
    color: #444;
    font-weight: 500;
}

.popup-body {
    padding: 5px 0 15px;
}

.popup-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.popup-text strong {
    color: #e74c3c;
    font-weight: 700;
}

/* Discount badge */
.discount-badge-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #e74c3c;
    color: white;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    vertical-align: middle;
}

/* Countdown container */
.countdown-container {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    gap: 10px;
}

.countdown-item {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 12px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.countdown-number {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
}

/* CTA Butonu stilini güncelle */
.popup-cta {
    margin-top: 20px;
}

.popup-cta .btn {
    width: 100%;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    background-color: #0066cc;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 102, 204, 0.2);
    text-transform: uppercase;
    border: none;
}

.popup-cta .btn:hover {
    background-color: #0055aa;
    box-shadow: 0 6px 15px rgba(0, 102, 204, 0.3);
}

/* Popup kapatma animasyonu */
.popup-overlay.closing {
    opacity: 0;
}

.popup-overlay.closing .popup-container {
    transform: translateY(20px);
}

/* Dark mode uyarlamaları */
body[data-theme="dark"] .popup-container {
    background-color: #222;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-theme="dark"] .popup-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-theme="dark"] .popup-title {
    color: #4a90e2;
}

body[data-theme="dark"] .popup-subtitle {
    color: #ddd;
}

body[data-theme="dark"] .popup-text {
    color: #ccc;
}

body[data-theme="dark"] .countdown-item {
    background-color: #333;
    border-color: #444;
}

body[data-theme="dark"] .countdown-number {
    color: #4a90e2;
}

body[data-theme="dark"] .countdown-label {
    color: #bbb;
}

body[data-theme="dark"] .popup-close {
    background-color: #333;
    color: #ddd;
}

/* Responsive ayarlar */
@media (max-width: 480px) {
    .popup-container {
        width: 95%;
        max-width: 380px;
    }
    
    .popup-content {
        padding: 20px 15px;
    }
    
    .popup-title {
        font-size: 20px;
    }
    
    .popup-subtitle {
        font-size: 14px;
    }
    
    .countdown-item {
        padding: 10px 5px;
    }
    
    .countdown-number {
        font-size: 20px;
    }
    
    .countdown-label {
        font-size: 10px;
    }
    
    .popup-text {
        font-size: 14px;
        margin-bottom: 15px;
    }
}

/* Torbalı Özel Bölümü Stili */
.torbali-special {
    padding: 70px 0;
    background-color: rgba(230, 126, 34, 0.05);
}

body[data-theme="dark"] .torbali-special {
    background-color: rgba(243, 156, 18, 0.05);
}

.torbali-neighborhoods {
    margin-top: 40px;
    text-align: center;
}

.torbali-neighborhoods h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.torbali-neighborhoods h3::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.neighborhoods-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.neighborhood {
    background-color: #fff;
    color: var(--text-color);
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

body[data-theme="dark"] .neighborhood {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.neighborhood:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    background-color: var(--accent-color);
    color: white;
}

@media (max-width: 768px) {
    .neighborhoods-container {
        gap: 10px;
    }
    
    .neighborhood {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/* Service Card CTA Buttons Stili */
.service-card-content .cta-buttons {
    margin-top: auto;
    display: flex;
    gap: 15px;
}

/* Neden Bizi Tercih Etmelisiniz Bölümü */
.why-choose-us {
    background-color: #f9f9f9;
    position: relative;
    overflow: visible;
    z-index: 1;
}

body[data-theme="dark"] .why-choose-us {
    background-color: #1f2937;
}

.why-choose-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 102, 204, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

body[data-theme="dark"] .why-choose-us::before {
    background: radial-gradient(circle at center, rgba(74, 144, 226, 0.05) 0%, rgba(31, 41, 55, 0) 70%);
}

.why-choose-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.why-choose-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

body[data-theme="dark"] .feature-item {
    background-color: #2d3748;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

body[data-theme="dark"] .feature-item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.feature-item:hover::after {
    width: 100%;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    background-color: var(--accent-color);
}

.feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 600;
}

body[data-theme="dark"] .feature-content h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

body[data-theme="dark"] .feature-content p {
    color: var(--text-secondary);
}

.cta-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    position: relative;
    z-index: 50;
}

.cta-container .btn {
    position: relative;
    z-index: 50;
    cursor: pointer;
    pointer-events: auto;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-title {
        font-size: 2rem;
    }
    
    .why-choose-subtitle {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 20px;
    }
}

@keyframes popupFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
}

/* Daha küçük mobil ekranlar için ek düzeltmeler */
@media (max-width: 360px) {
    .popup-container {
        width: 95%;
        max-width: 300px;
    }
    
    .popup-title {
        font-size: 1.1rem;
    }
    
    .popup-subtitle {
        font-size: 0.8rem;
    }
    
    .countdown-number {
        font-size: 1rem;
    }
    
    .countdown-label {
        font-size: 0.55rem;
    }
    
    .discount-badge-inline {
        font-size: 0.75rem;
        padding: 2px 5px;
    }
}

/* Hizmetler Sidebar Stili */
.services-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(to right, rgba(0, 102, 204, 0.95), rgba(0, 102, 204, 0.85));
    padding: 15px;
    border-radius: 0 15px 15px 0;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 220px;
    max-width: 80%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateY(-50%) translateX(-100%);
}

.services-sidebar.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.sidebar-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: center;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-link {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.sidebar-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 0 2px 2px 0;
    transition: all 0.3s ease;
    opacity: 0;
}

.sidebar-link:hover, .sidebar-link.active {
    background-color: rgba(255, 255, 255, 0.15);
}

.sidebar-link:hover::before, .sidebar-link.active::before {
    opacity: 1;
}

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

.sidebar-link.active {
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.sidebar-toggle {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 102, 204, 0.9);
    width: 30px;
    height: 40px;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sidebar-toggle:hover {
    background-color: rgba(0, 102, 204, 1);
}

.sidebar-toggle i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.services-sidebar.collapsed {
    transform: translateY(-50%) translateX(-100%);
}

.services-sidebar.collapsed .sidebar-toggle i {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .services-sidebar {
        width: 180px;
        padding: 12px;
    }
    
    .sidebar-title {
        font-size: 1rem;
    }
    
    .sidebar-link {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .services-sidebar {
        display: none;
    }
}

/* Ürün kartı hover class'ı */
.product-card.hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-card.hover .product-card-icon {
    background-color: var(--primary-color);
}

.product-card.hover .product-card-icon i {
    color: #fff;
}

body[data-theme="dark"] .primary-btn {
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

body[data-theme="dark"] .primary-btn:hover {
    background-color: #3a84d9;
    box-shadow: 0 6px 16px rgba(74, 144, 226, 0.4);
}

/* Footer başlıkları düzeltme */
body[data-theme="dark"] .footer-logo h2,
body[data-theme="dark"] .footer-links h3,
body[data-theme="dark"] .footer-services h3,
body[data-theme="dark"] .footer-locations h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Service kart içindeki başlıklar */
body[data-theme="dark"] .service-feature span,
body[data-theme="dark"] .benefit span {
    color: var(--text-secondary);
}

/* Feature kartları başlık ve metinleri */
body[data-theme="dark"] .feature-box h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

body[data-theme="dark"] .feature-box p {
    color: var(--text-secondary);
}

/* İletişim bilgisi ikonlarının dark mode düzenlemesi */
body[data-theme="dark"] .info-item i {
    color: rgba(255, 255, 255, 0.9);
}

body[data-theme="dark"] .info-item h3 {
    color: var(--heading-dark);
}

body[data-theme="dark"] .info-item p,
body[data-theme="dark"] .info-item a {
    color: var(--text-secondary);
}

/* Footer linkleri iyileştirme */
body[data-theme="dark"] .footer-links a,
body[data-theme="dark"] .footer-services a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

body[data-theme="dark"] .footer-links a:hover,
body[data-theme="dark"] .footer-services a:hover {
    color: var(--primary-color);
}

/* Tüm mobil görünüm düzeltmeleri */
html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        margin: 0 auto;
    }
    
    section {
        width: 100%;
        box-sizing: border-box;
        padding-left: 0;
        padding-right: 0;
    }
    
    .hero .container {
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .hero .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .popup-overlay {
        left: 0;
        right: 0;
        width: 100%;
    }
    
    .popup-container {
        width: 92%;
        max-width: 330px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
    
    /* Düğmeler için düzeltmeler */
    .cta-buttons {
        width: 100%;
        box-sizing: border-box;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
}

/* Torbalı Showcase Bölümü Stilleri */
.torbali-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-bg, #f8f9fa) 0%, var(--secondary-light-bg, #e9ecef) 100%);
    position: relative;
    overflow: hidden;
}

body[data-theme="dark"] .torbali-showcase {
    background: linear-gradient(135deg, var(--dark-bg, #212529) 0%, var(--secondary-dark-bg, #343a40) 100%);
}

.torbali-showcase::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(52, 152, 219, 0.1);
    top: -150px;
    left: -150px;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.torbali-showcase::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.1);
    bottom: -200px;
    right: -200px;
    z-index: 1;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.torbali-showcase .container {
    position: relative;
    z-index: 2;
}

.torbali-showcase-content {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--card-bg, #fff);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

body[data-theme="dark"] .torbali-showcase-content {
    background: var(--card-dark-bg, #2a3441);
}

.torbali-showcase-image {
    flex: 1;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.showcase-badge {
    position: absolute;
    top: 20px;
    right: 0;
    background-color: #25d366;
    color: white;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px 0 0 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
}

.torbali-showcase-content:hover .showcase-image {
    transform: scale(1.05);
}

.torbali-showcase-info {
    flex: 1;
    padding: 40px;
}

.torbali-showcase-info h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--heading-color, #333);
    position: relative;
    padding-bottom: 15px;
}

body[data-theme="dark"] .torbali-showcase-info h2 {
    color: var(--heading-color-dark, #fff);
}

.torbali-showcase-info h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-color, #3498db);
    border-radius: 3px;
}

.torbali-showcase-info p {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color, #666);
}

body[data-theme="dark"] .torbali-showcase-info p {
    color: var(--text-color-dark, #b3b3b3);
}

.torbali-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-item i {
    color: var(--accent-color, #2ecc71);
    font-size: 16px;
    width: 25px;
    height: 25px;
    background: rgba(46, 204, 113, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

body[data-theme="dark"] .benefit-item i {
    background: rgba(46, 204, 113, 0.2);
}

.benefit-item span {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color, #666);
}

body[data-theme="dark"] .benefit-item span {
    color: var(--text-color-dark, #b3b3b3);
}

.torbali-cta {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.torbali-cta .btn {
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.torbali-cta .primary-btn {
    background: var(--primary-color, #3498db);
    color: white;
    border: none;
}

.torbali-cta .primary-btn:hover {
    background: var(--primary-color-hover, #2980b9);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.torbali-cta .secondary-btn {
    background: transparent;
    color: var(--primary-color, #3498db);
    border: 1px solid var(--primary-color, #3498db);
}

.torbali-cta .secondary-btn:hover {
    background: rgba(52, 152, 219, 0.1);
    transform: translateY(-3px);
}

/* Responsive Design for Torbalı Showcase */
@media (max-width: 992px) {
    .torbali-showcase-content {
        flex-direction: column;
    }
    
    .torbali-showcase-image {
        width: 100%;
        min-height: 300px;
    }
    
    .torbali-showcase-info {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .torbali-benefits {
        grid-template-columns: 1fr;
    }
    
    .torbali-showcase-info h2 {
        font-size: 24px;
    }
    
    .torbali-showcase-info p {
        font-size: 15px;
    }
    
    .torbali-cta {
        flex-direction: column;
    }
}

/* Torbalı Kartları Stilleri */
.torbali-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.torbali-card {
    background: var(--card-bg, #fff);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-top: 4px solid var(--primary-color, #3498db);
}

body[data-theme="dark"] .torbali-card {
    background: var(--card-dark-bg, #2a3441);
    border-top: 4px solid var(--primary-color, #3498db);
}

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

.torbali-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.torbali-card:hover .torbali-card-img {
    transform: scale(1.05);
}

.torbali-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.torbali-card-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--heading-color, #333);
}

body[data-theme="dark"] .torbali-card-content h3 {
    color: var(--heading-color-dark, #fff);
}

.torbali-card-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color, #666);
}

body[data-theme="dark"] .torbali-card-content p {
    color: var(--text-color-dark, #b3b3b3);
}

@media (max-width: 992px) {
    .torbali-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .torbali-cards {
        grid-template-columns: 1fr;
    }
}

/* Ürünler Sayfası Stil Tanımlamaları */
.products-page {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-color-light) 0%, var(--bg-color-light-2) 100%);
}

body[data-theme="dark"] .products-page {
    background: linear-gradient(135deg, var(--bg-color-dark) 0%, var(--bg-color-dark-2) 100%);
}

.product-category-nav {
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    padding: 15px;
    position: sticky;
    top: 80px;
    z-index: 10;
    transition: all 0.3s ease;
}

body[data-theme="dark"] .product-category-nav {
    background: var(--card-bg-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.product-category-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.product-category-nav li a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

body[data-theme="dark"] .product-category-nav li a {
    color: var(--text-color-dark);
}

.product-category-nav li a:hover,
.product-category-nav li a.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.product-category-nav li a i {
    font-size: 12px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.product-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

body[data-theme="dark"] .product-item {
    background: #2f3b4d;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.product-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    z-index: 5;
}

.product-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background-color: #ffffff;
    border-radius: 0 0 12px 12px;
}

body[data-theme="dark"] .product-content {
    background-color: #2a3441;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 10px;
}

body[data-theme="dark"] .product-title {
    color: var(--heading-color-dark);
}

.product-description {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.5;
    flex: 1;
}

body[data-theme="dark"] .product-description {
    color: var(--text-color-dark);
}

.product-features {
    margin-bottom: 15px;
}

.product-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    font-size: 13px;
}

.product-feature i {
    color: var(--primary-color);
    font-size: 12px;
}

.product-feature span {
    color: var(--text-color);
}

body[data-theme="dark"] .product-feature span {
    color: var(--text-color-dark);
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.btn-product-detail {
    flex: 1;
    padding: 10px 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-product-detail:hover {
    background: var(--primary-color-dark);
    transform: translateY(-3px);
}

.btn-product-whatsapp {
    padding: 10px 15px;
    background: #25d366;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-product-whatsapp:hover {
    background: #1da851;
    transform: translateY(-3px);
}

/* Ürün Detay Sayfası */
.product-detail-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-color-light) 0%, var(--bg-color-light-2) 100%);
}

body[data-theme="dark"] .product-detail-section {
    background: linear-gradient(135deg, var(--bg-color-dark) 0%, var(--bg-color-dark-2) 100%);
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.product-gallery {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

body[data-theme="dark"] .product-gallery {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-main-image {
    height: 400px;
    overflow: hidden;
}

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

.product-thumbnails {
    display: flex;
    gap: 10px;
    padding: 15px;
    background: var(--white-color);
}

body[data-theme="dark"] .product-thumbnails {
    background: var(--card-bg-dark);
}

.product-thumb {
    height: 80px;
    width: 80px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.product-thumb.active,
.product-thumb:hover {
    opacity: 1;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 20px;
    background: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body[data-theme="dark"] .product-info {
    background: var(--card-bg-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-info-title {
    font-size: 26px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

body[data-theme="dark"] .product-info-title {
    color: var(--heading-color-dark);
    border-bottom: 1px solid var(--border-color-dark);
}

.product-info-description {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

body[data-theme="dark"] .product-info-description {
    color: var(--text-color-dark);
}

.product-info-features {
    margin-bottom: 20px;
}

.product-info-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.product-info-feature i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
}

.product-info-feature span {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.5;
}

body[data-theme="dark"] .product-info-feature span {
    color: var(--text-color-dark);
}

.product-cta {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.btn-request-quote {
    flex: 1;
    padding: 12px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-request-quote:hover {
    background: var(--primary-color-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.btn-call-now {
    padding: 12px 20px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-call-now:hover {
    background: rgba(52, 152, 219, 0.1);
    transform: translateY(-3px);
}

.product-tabs {
    margin-top: 40px;
}

.tab-buttons {
    display: flex;
    gap: 5px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

body[data-theme="dark"] .tab-buttons {
    border-bottom: 1px solid var(--border-color-dark);
}

.tab-button {
    padding: 12px 25px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

body[data-theme="dark"] .tab-button {
    color: var(--text-color-dark);
}

.tab-button.active,
.tab-button:hover {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.tab-content {
    display: none;
    padding: 20px;
    background: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

body[data-theme="dark"] .tab-content {
    background: var(--card-bg-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: 20px;
    color: var(--heading-color);
    margin-bottom: 15px;
}

body[data-theme="dark"] .tab-content h3 {
    color: var(--heading-color-dark);
}

.tab-content p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 15px;
}

body[data-theme="dark"] .tab-content p {
    color: var(--text-color-dark);
}

.tab-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.tab-content ul li {
    margin-bottom: 8px;
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.5;
}

body[data-theme="dark"] .tab-content ul li {
    color: var(--text-color-dark);
}

/* Genel CSS Reset ve Değişkenler */
:root {
    --primary-color: #0066cc;
    --secondary-color: #2c3e50;
    --accent-color: #e67e22;
    --light-color: #ecf0f1;
    --dark-color: #1a1a1a;
    --text-color: #333;
    --text-light: #f8f9fa;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 5px;
    --container-width: 1200px;
    --heading-dark: #f8f9fa;
    --heading-light: #333;
}

/* Dark Mode */
[data-theme="dark"] {
    --primary-color: #4a90e2;
    --secondary-color: #34495e;
    --accent-color: #f39c12;
    --light-color: #2c3e50;
    --dark-color: #f8f9fa;
    --text-color: #f8f9fa;
    --text-light: #1a1a1a;
    --box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
    --heading-dark: #ffffff;
    --heading-light: #f0f0f0;
    --text-secondary: rgba(255, 255, 255, 0.85);
}

body[data-theme="dark"] h2,
body[data-theme="dark"] h3,
body[data-theme="dark"] h4 {
    color: var(--heading-dark);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

body[data-theme="dark"] p {
    color: var(--text-secondary);
}

/* Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Header Stili */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--box-shadow);
    padding: 15px 0;
    transition: var(--transition);
}

body[data-theme="dark"] header {
    background-color: rgba(26, 26, 26, 0.95);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

nav {
    display: flex;
    align-items: center;
}

.menu {
    display: flex;
}

.menu li {
    margin-left: 30px;
}

.menu a {
    position: relative;
    font-weight: 500;
    padding: 5px 0;
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 2px 0;
    transition: var(--transition);
}

/* Dark/Light Mode Switch */
.theme-switch-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 15px;
    z-index: 1001;
}

.theme-switch {
    display: inline-block;
    height: 26px;
    position: relative;
    width: 50px;
}

.theme-switch input {
    display: none;
}

.slider {
    background-color: #ccc;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
}

.slider .fa-sun {
    color: #f39c12;
    font-size: 14px;
    margin-left: 2px;
}

.slider .fa-moon {
    color: #f8f9fa;
    font-size: 14px;
    margin-right: 2px;
}

.slider:before {
    background-color: #fff;
    bottom: 3px;
    content: "";
    height: 20px;
    left: 3px;
    position: absolute;
    transition: .4s;
    width: 20px;
    z-index: 2;
}

input:checked + .slider {
    background-color: var(--secondary-color);
}

input:checked + .slider:before {
    transform: translateX(24px);
}

.slider.round {
    border-radius: 24px;
}

.slider.round:before {
    border-radius: 50%;
}

.theme-switch-wrapper em {
    margin-left: 10px;
    font-size: 1rem;
    color: var(--text-color);
}

/* Hero Bölümü */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

/* İzmir Hizmet Bölgeleri Stili */
.service-areas {
    background-color: var(--light-color);
    padding: 80px 0;
}

.areas-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.area-column {
    background-color: #fff;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

body[data-theme="dark"] .area-column {
    background-color: rgba(42, 52, 65, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.area-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.area-column h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

body[data-theme="dark"] .area-column h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

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

.area-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.area-column ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.area-column ul li i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

body[data-theme="dark"] .area-column ul li i {
    color: var(--primary-color);
}

body[data-theme="dark"] .area-column ul li {
    color: var(--text-secondary);
}

/* Aşağı doğru check ikonları renk düzeltmesi */
body[data-theme="dark"] .fa-check-circle {
    color: var(--primary-color);
}

/* Butonlar */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.primary-btn {
    background-color: var(--primary-color);
    color: #fff;
}

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

.secondary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.hero .secondary-btn {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

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

.hero .secondary-btn:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.small-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
}

/* Section Stili */
section {
    padding: 80px 0;
    width: 100%;
    box-sizing: border-box;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    color: var(--heading-light);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

body[data-theme="dark"] .section-title h2 {
    color: var(--heading-dark);
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

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

.section-title p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Özellikler Bölümü */
.features {
    background-color: var(--light-color);
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

body[data-theme="dark"] .feature-box {
    background-color: var(--secondary-color);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-box .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
}

.feature-box .icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.feature-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

body[data-theme="dark"] .feature-box h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-box p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

body[data-theme="dark"] .feature-box p {
    color: var(--text-secondary);
}

/* Hizmetler Bölümü - Yeni Detaylı Hizmet Kartları */
.services {
    background-color: #f9f9f9;
}

body[data-theme="dark"] .services {
    background-color: #2a2a2a;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card-detailed {
    display: grid;
    grid-template-columns: 1fr 2fr;
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

body[data-theme="dark"] .service-card-detailed {
    background-color: var(--secondary-color);
}

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

.service-card-image {
    height: 100%;
    overflow: hidden;
}

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

.service-card-detailed:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.service-card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

body[data-theme="dark"] .service-card-content h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-feature i {
    color: var(--primary-color);
    font-size: 1rem;
}

.service-card-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
    background-color: rgba(0, 102, 204, 0.05);
    padding: 15px;
    border-radius: var(--border-radius);
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.service-card-content .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* Eski Hizmet Kartları Stili - Hizmetler Bölümündeki Kartlar için */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

body[data-theme="dark"] .service-card {
    background-color: var(--secondary-color);
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

body[data-theme="dark"] .service-content h3 {
    color: var(--text-light);
}

.service-content p {
    margin-bottom: 15px;
}

/* Ürünler Slider */
.products {
    position: relative;
    overflow: hidden;
}

.products-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin: 40px 0;
    width: 100%;
    overflow: visible;
}

.product-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    padding: 20px 15px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
}

body[data-theme="dark"] .product-card {
    background-color: var(--secondary-color);
    border: 1px solid rgba(255,255,255,0.1);
}

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

.product-card-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    margin-bottom: 15px;
    transition: var(--transition);
}

body[data-theme="dark"] .product-card-icon {
    background-color: rgba(74, 144, 226, 0.2);
}

.product-card-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

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

.product-card:hover .product-card-icon i {
    color: #fff;
}

.product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

body[data-theme="dark"] .product-card h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.product-card p {
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
    flex-grow: 1;
}

body[data-theme="dark"] .product-card p {
    color: rgba(255,255,255,0.8);
}

.product-card .btn {
    margin-top: auto;
    width: 100%;
    padding: 10px 15px;
    font-size: 0.9rem;
}

/* Projeler Galerisi */
.projects {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

body[data-theme="dark"] .projects {
    background-color: #212529;
}

.projects-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.project-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 300px;
    position: relative;
}

body[data-theme="dark"] .project-item {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.project-image {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

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

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

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0) 100%);
    padding: 30px 20px 20px;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

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

.project-info {
    width: 100%;
    text-align: center;
}

.project-info h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: all 0.4s ease;
    opacity: 0;
}

.project-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
    opacity: 0;
}

.project-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
    opacity: 0;
}

.project-btn:hover {
    background-color: #0055b3;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.project-item:hover .project-info h3,
.project-item:hover .project-info p,
.project-item:hover .project-info .project-btn {
    transform: translateY(0);
    opacity: 1;
}

.projects-cta {
    text-align: center;
    margin-top: 40px;
}

/* Responsive tasarım - Projelerimiz */
@media (max-width: 992px) {
    .projects-gallery {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .projects-gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .project-item {
        height: 250px;
    }
    
    .project-info h3 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .projects-gallery {
        grid-template-columns: 1fr;
    }
}

/* Müşteri Yorumları */
.testimonials {
    background-color: #fff;
}

body[data-theme="dark"] .testimonials {
    background-color: #1f1f1f;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

body[data-theme="dark"] .testimonial {
    background-color: rgba(42, 52, 65, 0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.quote {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
}

body[data-theme="dark"] .quote i {
    color: rgba(255, 255, 255, 0.1);
}

.testimonial p {
    margin-bottom: 20px;
    margin-top: 10px;
    position: relative;
    z-index: 2;
}

body[data-theme="dark"] .testimonial-text {
    color: var(--text-secondary);
}

.client {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.client-info h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

body[data-theme="dark"] .client-info h4 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.client-info p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

body[data-theme="dark"] .client-name {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

body[data-theme="dark"] .client-location {
    color: rgba(255, 255, 255, 0.7);
}

.rating {
    color: #f39c12;
}

body[data-theme="dark"] .rating i {
    color: #f39c12;
}

/* İletişim Bölümü */
.contact {
    background-color: #f9f9f9;
}

body[data-theme="dark"] .contact {
    background-color: #2a2a2a;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

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

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

body[data-theme="dark"] .info-item h3 {
    color: var(--heading-dark);
}

.contact-form {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

body[data-theme="dark"] .contact-form {
    background-color: var(--secondary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    background-color: #f9f9f9;
    transition: var(--transition);
}

body[data-theme="dark"] .form-group input,
body[data-theme="dark"] .form-group select,
body[data-theme="dark"] .form-group textarea {
    background-color: #333;
    border-color: #444;
    color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
}

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

/* CTA Bölümü */
.cta {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 0.9rem;
}

.footer-links h3,
.footer-services h3,
.footer-social h3,
.footer-locations h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-social h3::after,
.footer-locations h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-services a {
    color: #ddd;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-locations p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #ddd;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
}

.footer-bottom a {
    color: #ddd;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* Floating Buttons */
.floating-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.floating-button a:hover {
    transform: scale(1.1);
}

.floating-button i {
    font-size: 2rem;
}

.whatsapp-button {
    background-color: #25d366;
}

.call-button {
    background-color: #3498db;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
}

/* Mobil için uyumluluk */
@media (max-width: 768px) {
    .floating-button {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-button a {
        width: 50px;
        height: 50px;
    }
    
    .floating-button i {
        font-size: 1.5rem;
    }
}

/* Animasyonlar */
.animate-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Tasarım */
@media (max-width: 991px) {
    .container {
        padding: 0 15px;
    }

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

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

    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .service-card-detailed {
        grid-template-columns: 1fr;
    }
    
    .service-card-image {
        height: 300px;
    }

    .products-slider {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        margin: 0 auto;
    }
    
    section {
        width: 100%;
        box-sizing: border-box;
        padding-left: 0;
        padding-right: 0;
        overflow-x: hidden;
    }
    
    .hero .container {
        width: 100%;
        box-sizing: border-box;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .hero {
        width: 100%;
        overflow-x: hidden;
    }
    
    header {
        padding: 10px 0;
    }
    
    header .container {
        flex-wrap: wrap;
    }
    
    .logo {
        margin-bottom: 0;
        flex: 1;
    }
    
    .logo h1 {
        font-size: 1.4rem;
    }
    
    nav {
        justify-content: flex-end;
        width: auto;
        display: flex;
        align-items: center;
    }
    
    .menu {
        position: fixed;
        top: 60px;
        left: 0;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    body[data-theme="dark"] .menu {
        background-color: #1a1a1a;
    }
    
    .menu.active {
        transform: translateY(0);
    }
    
    .menu li {
        margin: 15px 0;
        text-align: center;
    }
    
    .hamburger {
        display: flex;
        z-index: 1000;
        margin-left: 15px;
    }
    
    .hamburger span {
        transition: all 0.3s ease;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .theme-switch-wrapper {
        position: relative;
        top: 0;
        right: 0;
        margin-right: 10px;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
        width: 100%;
    }
    
    .service-card-detailed {
        grid-template-columns: 1fr;
    }
    
    .service-card-image {
        height: 200px;
    }
    
    .features-container,
    .services-container,
    .testimonials-container {
        grid-template-columns: 1fr;
    }

    .products-slider {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
    }

    .product-card {
        flex: 0 0 85%;
    }
    
    .service-features,
    .service-benefits {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links h3::after,
    .footer-services h3::after,
    .footer-social h3::after,
    .footer-locations h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

@media (max-width: 480px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        width: 100%;
        overflow-x: hidden;
    }
    
    .hero .container {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }
    
    .popup-overlay {
        left: 0;
        right: 0;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    .popup-container {
        width: 95%;
        max-width: 350px;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    /* Düğmeler için düzeltmeler */
    .cta-buttons {
        width: 100%;
        box-sizing: border-box;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
}

/* Sayfa Yükleme Animasyonu */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

body[data-theme="dark"] .loader-wrapper {
    background-color: #1a1a1a;
}

.loader {
    width: 60px;
    height: 60px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Popup Stili */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    backdrop-filter: blur(5px);
}

/* Active sınıfı eklendiğinde görünürlük ayarları */
.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    width: 90%;
    max-width: 500px;
    transform: translateY(20px);
    transition: all 0.3s ease-out;
    overflow: hidden;
    box-sizing: border-box;
}

/* Active sınıfı eklendiğinde animasyon */
.popup-overlay.active .popup-container {
    transform: translateY(0);
}

/* Popup içerik stilleri */
.popup-content {
    padding: 25px;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.2s ease;
}

.popup-close:hover {
    background-color: #e74c3c;
    color: white;
    transform: rotate(90deg);
}

.popup-header {
    margin-bottom: 15px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.popup-title {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 8px;
    line-height: 1.3;
}

.popup-subtitle {
    font-size: 16px;
    color: #444;
    font-weight: 500;
}

.popup-body {
    padding: 5px 0 15px;
}

.popup-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.popup-text strong {
    color: #e74c3c;
    font-weight: 700;
}

/* Discount badge */
.discount-badge-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #e74c3c;
    color: white;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    vertical-align: middle;
}

/* Countdown container */
.countdown-container {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    gap: 10px;
}

.countdown-item {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 12px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.countdown-number {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
}

/* CTA Butonu stilini güncelle */
.popup-cta {
    margin-top: 20px;
}

.popup-cta .btn {
    width: 100%;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    background-color: #0066cc;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 102, 204, 0.2);
    text-transform: uppercase;
    border: none;
}

.popup-cta .btn:hover {
    background-color: #0055aa;
    box-shadow: 0 6px 15px rgba(0, 102, 204, 0.3);
}

/* Popup kapatma animasyonu */
.popup-overlay.closing {
    opacity: 0;
}

.popup-overlay.closing .popup-container {
    transform: translateY(20px);
}

/* Dark mode uyarlamaları */
body[data-theme="dark"] .popup-container {
    background-color: #222;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-theme="dark"] .popup-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-theme="dark"] .popup-title {
    color: #4a90e2;
}

body[data-theme="dark"] .popup-subtitle {
    color: #ddd;
}

body[data-theme="dark"] .popup-text {
    color: #ccc;
}

body[data-theme="dark"] .countdown-item {
    background-color: #333;
    border-color: #444;
}

body[data-theme="dark"] .countdown-number {
    color: #4a90e2;
}

body[data-theme="dark"] .countdown-label {
    color: #bbb;
}

body[data-theme="dark"] .popup-close {
    background-color: #333;
    color: #ddd;
}

/* Responsive ayarlar */
@media (max-width: 480px) {
    .popup-container {
        width: 95%;
        max-width: 380px;
    }
    
    .popup-content {
        padding: 20px 15px;
    }
    
    .popup-title {
        font-size: 20px;
    }
    
    .popup-subtitle {
        font-size: 14px;
    }
    
    .countdown-item {
        padding: 10px 5px;
    }
    
    .countdown-number {
        font-size: 20px;
    }
    
    .countdown-label {
        font-size: 10px;
    }
    
    .popup-text {
        font-size: 14px;
        margin-bottom: 15px;
    }
}

/* Torbalı Özel Bölümü Stili */
.torbali-special {
    padding: 70px 0;
    background-color: rgba(230, 126, 34, 0.05);
}

body[data-theme="dark"] .torbali-special {
    background-color: rgba(243, 156, 18, 0.05);
}

.torbali-neighborhoods {
    margin-top: 40px;
    text-align: center;
}

.torbali-neighborhoods h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.torbali-neighborhoods h3::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.neighborhoods-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.neighborhood {
    background-color: #fff;
    color: var(--text-color);
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

body[data-theme="dark"] .neighborhood {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.neighborhood:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    background-color: var(--accent-color);
    color: white;
}

@media (max-width: 768px) {
    .neighborhoods-container {
        gap: 10px;
    }
    
    .neighborhood {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/* Service Card CTA Buttons Stili */
.service-card-content .cta-buttons {
    margin-top: auto;
    display: flex;
    gap: 15px;
}

/* Neden Bizi Tercih Etmelisiniz Bölümü */
.why-choose-us {
    background-color: #f9f9f9;
    position: relative;
    overflow: visible;
    z-index: 1;
}

body[data-theme="dark"] .why-choose-us {
    background-color: #1f2937;
}

.why-choose-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 102, 204, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

body[data-theme="dark"] .why-choose-us::before {
    background: radial-gradient(circle at center, rgba(74, 144, 226, 0.05) 0%, rgba(31, 41, 55, 0) 70%);
}

.why-choose-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.why-choose-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

body[data-theme="dark"] .feature-item {
    background-color: #2d3748;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

body[data-theme="dark"] .feature-item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.feature-item:hover::after {
    width: 100%;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    background-color: var(--accent-color);
}

.feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 600;
}

body[data-theme="dark"] .feature-content h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

body[data-theme="dark"] .feature-content p {
    color: var(--text-secondary);
}

.cta-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    position: relative;
    z-index: 50;
}

.cta-container .btn {
    position: relative;
    z-index: 50;
    cursor: pointer;
    pointer-events: auto;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-title {
        font-size: 2rem;
    }
    
    .why-choose-subtitle {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 20px;
    }
}

@keyframes popupFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
}

/* Daha küçük mobil ekranlar için ek düzeltmeler */
@media (max-width: 360px) {
    .popup-container {
        width: 95%;
        max-width: 300px;
    }
    
    .popup-title {
        font-size: 1.1rem;
    }
    
    .popup-subtitle {
        font-size: 0.8rem;
    }
    
    .countdown-number {
        font-size: 1rem;
    }
    
    .countdown-label {
        font-size: 0.55rem;
    }
    
    .discount-badge-inline {
        font-size: 0.75rem;
        padding: 2px 5px;
    }
}

/* Hizmetler Sidebar Stili */
.services-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(to right, rgba(0, 102, 204, 0.95), rgba(0, 102, 204, 0.85));
    padding: 15px;
    border-radius: 0 15px 15px 0;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 220px;
    max-width: 80%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateY(-50%) translateX(-100%);
}

.services-sidebar.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.sidebar-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: center;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-link {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.sidebar-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 0 2px 2px 0;
    transition: all 0.3s ease;
    opacity: 0;
}

.sidebar-link:hover, .sidebar-link.active {
    background-color: rgba(255, 255, 255, 0.15);
}

.sidebar-link:hover::before, .sidebar-link.active::before {
    opacity: 1;
}

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

.sidebar-link.active {
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.sidebar-toggle {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 102, 204, 0.9);
    width: 30px;
    height: 40px;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sidebar-toggle:hover {
    background-color: rgba(0, 102, 204, 1);
}

.sidebar-toggle i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.services-sidebar.collapsed {
    transform: translateY(-50%) translateX(-100%);
}

.services-sidebar.collapsed .sidebar-toggle i {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .services-sidebar {
        width: 180px;
        padding: 12px;
    }
    
    .sidebar-title {
        font-size: 1rem;
    }
    
    .sidebar-link {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .services-sidebar {
        display: none;
    }
}

/* Ürün kartı hover class'ı */
.product-card.hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-card.hover .product-card-icon {
    background-color: var(--primary-color);
}

.product-card.hover .product-card-icon i {
    color: #fff;
}

body[data-theme="dark"] .primary-btn {
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

body[data-theme="dark"] .primary-btn:hover {
    background-color: #3a84d9;
    box-shadow: 0 6px 16px rgba(74, 144, 226, 0.4);
}

/* Footer başlıkları düzeltme */
body[data-theme="dark"] .footer-logo h2,
body[data-theme="dark"] .footer-links h3,
body[data-theme="dark"] .footer-services h3,
body[data-theme="dark"] .footer-locations h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Service kart içindeki başlıklar */
body[data-theme="dark"] .service-feature span,
body[data-theme="dark"] .benefit span {
    color: var(--text-secondary);
}

/* Feature kartları başlık ve metinleri */
body[data-theme="dark"] .feature-box h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

body[data-theme="dark"] .feature-box p {
    color: var(--text-secondary);
}

/* İletişim bilgisi ikonlarının dark mode düzenlemesi */
body[data-theme="dark"] .info-item i {
    color: rgba(255, 255, 255, 0.9);
}

body[data-theme="dark"] .info-item h3 {
    color: var(--heading-dark);
}

body[data-theme="dark"] .info-item p,
body[data-theme="dark"] .info-item a {
    color: var(--text-secondary);
}

/* Footer linkleri iyileştirme */
body[data-theme="dark"] .footer-links a,
body[data-theme="dark"] .footer-services a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

body[data-theme="dark"] .footer-links a:hover,
body[data-theme="dark"] .footer-services a:hover {
    color: var(--primary-color);
}

/* Tüm mobil görünüm düzeltmeleri */
html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        margin: 0 auto;
    }
    
    section {
        width: 100%;
        box-sizing: border-box;
        padding-left: 0;
        padding-right: 0;
    }
    
    .hero .container {
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .hero .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .popup-overlay {
        left: 0;
        right: 0;
        width: 100%;
    }
    
    .popup-container {
        width: 92%;
        max-width: 330px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
    
    /* Düğmeler için düzeltmeler */
    .cta-buttons {
        width: 100%;
        box-sizing: border-box;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
}

/* Torbalı Showcase Bölümü Stilleri */
.torbali-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-bg, #f8f9fa) 0%, var(--secondary-light-bg, #e9ecef) 100%);
    position: relative;
    overflow: hidden;
}

body[data-theme="dark"] .torbali-showcase {
    background: linear-gradient(135deg, var(--dark-bg, #212529) 0%, var(--secondary-dark-bg, #343a40) 100%);
}

.torbali-showcase::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(52, 152, 219, 0.1);
    top: -150px;
    left: -150px;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.torbali-showcase::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.1);
    bottom: -200px;
    right: -200px;
    z-index: 1;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.torbali-showcase .container {
    position: relative;
    z-index: 2;
}

.torbali-showcase-content {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--card-bg, #fff);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

body[data-theme="dark"] .torbali-showcase-content {
    background: var(--card-dark-bg, #2a3441);
}

.torbali-showcase-image {
    flex: 1;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.showcase-badge {
    position: absolute;
    top: 20px;
    right: 0;
    background-color: #25d366;
    color: white;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px 0 0 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
}

.torbali-showcase-content:hover .showcase-image {
    transform: scale(1.05);
}

.torbali-showcase-info {
    flex: 1;
    padding: 40px;
}

.torbali-showcase-info h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--heading-color, #333);
    position: relative;
    padding-bottom: 15px;
}

body[data-theme="dark"] .torbali-showcase-info h2 {
    color: var(--heading-color-dark, #fff);
}

.torbali-showcase-info h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-color, #3498db);
    border-radius: 3px;
}

.torbali-showcase-info p {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color, #666);
}

body[data-theme="dark"] .torbali-showcase-info p {
    color: var(--text-color-dark, #b3b3b3);
}

.torbali-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-item i {
    color: var(--accent-color, #2ecc71);
    font-size: 16px;
    width: 25px;
    height: 25px;
    background: rgba(46, 204, 113, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

body[data-theme="dark"] .benefit-item i {
    background: rgba(46, 204, 113, 0.2);
}

.benefit-item span {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color, #666);
}

body[data-theme="dark"] .benefit-item span {
    color: var(--text-color-dark, #b3b3b3);
}

.torbali-cta {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.torbali-cta .btn {
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.torbali-cta .primary-btn {
    background: var(--primary-color, #3498db);
    color: white;
    border: none;
}

.torbali-cta .primary-btn:hover {
    background: var(--primary-color-hover, #2980b9);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.torbali-cta .secondary-btn {
    background: transparent;
    color: var(--primary-color, #3498db);
    border: 1px solid var(--primary-color, #3498db);
}

.torbali-cta .secondary-btn:hover {
    background: rgba(52, 152, 219, 0.1);
    transform: translateY(-3px);
}

/* Responsive Design for Torbalı Showcase */
@media (max-width: 992px) {
    .torbali-showcase-content {
        flex-direction: column;
    }
    
    .torbali-showcase-image {
        width: 100%;
        min-height: 300px;
    }
    
    .torbali-showcase-info {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .torbali-benefits {
        grid-template-columns: 1fr;
    }
    
    .torbali-showcase-info h2 {
        font-size: 24px;
    }
    
    .torbali-showcase-info p {
        font-size: 15px;
    }
    
    .torbali-cta {
        flex-direction: column;
    }
}

/* Torbalı Kartları Stilleri */
.torbali-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.torbali-card {
    background: var(--card-bg, #fff);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-top: 4px solid var(--primary-color, #3498db);
}

body[data-theme="dark"] .torbali-card {
    background: var(--card-dark-bg, #2a3441);
    border-top: 4px solid var(--primary-color, #3498db);
}

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

.torbali-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.torbali-card:hover .torbali-card-img {
    transform: scale(1.05);
}

.torbali-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.torbali-card-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--heading-color, #333);
}

body[data-theme="dark"] .torbali-card-content h3 {
    color: var(--heading-color-dark, #fff);
}

.torbali-card-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color, #666);
}

body[data-theme="dark"] .torbali-card-content p {
    color: var(--text-color-dark, #b3b3b3);
}

@media (max-width: 992px) {
    .torbali-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .torbali-cards {
        grid-template-columns: 1fr;
    }
}

/* Ürünler Sayfası Stil Tanımlamaları */
.products-page {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-color-light) 0%, var(--bg-color-light-2) 100%);
}

body[data-theme="dark"] .products-page {
    background: linear-gradient(135deg, var(--bg-color-dark) 0%, var(--bg-color-dark-2) 100%);
}

.product-category-nav {
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    padding: 15px;
    position: sticky;
    top: 80px;
    z-index: 10;
    transition: all 0.3s ease;
}

body[data-theme="dark"] .product-category-nav {
    background: var(--card-bg-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.product-category-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.product-category-nav li a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

body[data-theme="dark"] .product-category-nav li a {
    color: var(--text-color-dark);
}

.product-category-nav li a:hover,
.product-category-nav li a.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.product-category-nav li a i {
    font-size: 12px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.product-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

body[data-theme="dark"] .product-item {
    background: #2f3b4d;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.product-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    z-index: 5;
}

.product-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background-color: #ffffff;
    border-radius: 0 0 12px 12px;
}

body[data-theme="dark"] .product-content {
    background-color: #2a3441;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 10px;
}

body[data-theme="dark"] .product-title {
    color: var(--heading-color-dark);
}

.product-description {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.5;
    flex: 1;
}

body[data-theme="dark"] .product-description {
    color: var(--text-color-dark);
}

.product-features {
    margin-bottom: 15px;
}

.product-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    font-size: 13px;
}

.product-feature i {
    color: var(--primary-color);
    font-size: 12px;
}

.product-feature span {
    color: var(--text-color);
}

body[data-theme="dark"] .product-feature span {
    color: var(--text-color-dark);
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.btn-product-detail {
    flex: 1;
    padding: 10px 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-product-detail:hover {
    background: var(--primary-color-dark);
    transform: translateY(-3px);
}

.btn-product-whatsapp {
    padding: 10px 15px;
    background: #25d366;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-product-whatsapp:hover {
    background: #1da851;
    transform: translateY(-3px);
}

/* Ürün Detay Sayfası */
.product-detail-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-color-light) 0%, var(--bg-color-light-2) 100%);
}

body[data-theme="dark"] .product-detail-section {
    background: linear-gradient(135deg, var(--bg-color-dark) 0%, var(--bg-color-dark-2) 100%);
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.product-gallery {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

body[data-theme="dark"] .product-gallery {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-main-image {
    height: 400px;
    overflow: hidden;
}

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

.product-thumbnails {
    display: flex;
    gap: 10px;
    padding: 15px;
    background: var(--white-color);
}

body[data-theme="dark"] .product-thumbnails {
    background: var(--card-bg-dark);
}

.product-thumb {
    height: 80px;
    width: 80px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.product-thumb.active,
.product-thumb:hover {
    opacity: 1;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 20px;
    background: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body[data-theme="dark"] .product-info {
    background: var(--card-bg-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-info-title {
    font-size: 26px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

body[data-theme="dark"] .product-info-title {
    color: var(--heading-color-dark);
    border-bottom: 1px solid var(--border-color-dark);
}

.product-info-description {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

body[data-theme="dark"] .product-info-description {
    color: var(--text-color-dark);
}

.product-info-features {
    margin-bottom: 20px;
}

.product-info-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.product-info-feature i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
}

.product-info-feature span {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.5;
}

body[data-theme="dark"] .product-info-feature span {
    color: var(--text-color-dark);
}

.product-cta {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.btn-request-quote {
    flex: 1;
    padding: 12px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-request-quote:hover {
    background: var(--primary-color-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.btn-call-now {
    padding: 12px 20px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-call-now:hover {
    background: rgba(52, 152, 219, 0.1);
    transform: translateY(-3px);
}

.product-tabs {
    margin-top: 40px;
}

.tab-buttons {
    display: flex;
    gap: 5px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

body[data-theme="dark"] .tab-buttons {
    border-bottom: 1px solid var(--border-color-dark);
}

.tab-button {
    padding: 12px 25px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

body[data-theme="dark"] .tab-button {
    color: var(--text-color-dark);
}

.tab-button.active,
.tab-button:hover {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.tab-content {
    display: none;
    padding: 20px;
    background: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

body[data-theme="dark"] .tab-content {
    background: var(--card-bg-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: 20px;
    color: var(--heading-color);
    margin-bottom: 15px;
}

body[data-theme="dark"] .tab-content h3 {
    color: var(--heading-color-dark);
}

.tab-content p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 15px;
}

body[data-theme="dark"] .tab-content p {
    color: var(--text-color-dark);
}

.tab-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.tab-content ul li {
    margin-bottom: 8px;
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.5;
}

body[data-theme="dark"] .tab-content ul li {
    color: var(--text-color-dark);
}

.faq-item {
    margin-bottom: 15px;
    background: var(--bg-color-light);
    border-radius: 8px;
    overflow: hidden;
}

body[data-theme="dark"] .faq-item {
    background: var(--bg-color-dark);
}

.faq-question {
    position: relative;
    padding: 15px 20px;
    margin-bottom: 1px;
    background-color: #f8f9fa;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

body[data-theme="dark"] .faq-question {
    background-color: #2c3e50;
    color: #ecf0f1;
}

.faq-question:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    transition: all 0.3s ease;
    font-size: 18px;
    color: #3498db;
}

.faq-question.active {
    background-color: #e9f5ff;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

body[data-theme="dark"] .faq-question.active {
    background-color: #34495e;
}

.faq-question.active:after {
    transform: rotate(180deg);
}

.faq-answer { background-color: #fff; padding: 0; max-height: 0; overflow: hidden; transition: all 0.5s ease; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; margin-top: 0; margin-bottom: 0; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); opacity: 0; }

body[data-theme="dark"] .faq-answer { background-color: #fff; padding: 0; max-height: 0; overflow: hidden; transition: all 0.5s ease; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; margin-top: 0; margin-bottom: 0; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); opacity: 0; }

.faq-answer.active { padding: 20px; max-height: 300px; opacity: 1; margin-bottom: 10px; }

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

body[data-theme="dark"] .faq-answer p {
    color: #b3b3b3;
}

.related-products-section {
    padding: 60px 0;
    background: var(--bg-color-light-2);
}

body[data-theme="dark"] .related-products-section {
    background: var(--bg-color-dark-2);
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* Responsive tasarım için media queries */
@media (max-width: 992px) {
    .product-detail-container {
        grid-template-columns: 1fr;
    }
    
    .product-main-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .product-category-nav {
        padding: 10px;
        overflow-x: auto;
        white-space: nowrap;
        justify-content: flex-start;
    }
    
    .product-category-nav ul {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .product-main-image {
        height: 300px;
    }
    
    .product-thumbnails {
        overflow-x: auto;
    }
    
    .product-cta {
        flex-direction: column;
    }
    
    .tab-buttons {
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .tab-button {
        padding: 10px 15px;
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .product-main-image {
        height: 250px;
    }
    
    .product-thumb {
        height: 60px;
        width: 60px;
    }
    
    .product-info-title {
        font-size: 22px;
    }
}

/* Proje resimleri için ek düzenleme */
.projects.clear-images .gallery-item img {
    filter: none !important;
    opacity: 1 !important;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
} 

/* Proje Detay Modalı */
.project-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.project-modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 900px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.4s ease-out;
}

body[data-theme="dark"] .project-modal-content {
    background-color: #2a3441;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.project-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #333;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

body[data-theme="dark"] .project-modal-close {
    color: white;
    background: rgba(0, 0, 0, 0.3);
}

.project-modal-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

#projectModalTitle {
    margin-top: 5px;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

body[data-theme="dark"] #projectModalTitle {
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#projectModalImage {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

body[data-theme="dark"] #projectModalImage {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .project-modal {
        padding-top: 20px;
    }
    
    .project-modal-content {
        width: 95%;
        padding: 15px;
    }
    
    #projectModalTitle {
        font-size: 18px;
        margin-bottom: 15px;
    }
}

/* Müşteri Yorumları */
.testimonials {
    background-color: #fff;
}

body[data-theme="dark"] .testimonials {
    background-color: #1f1f1f;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

body[data-theme="dark"] .testimonial {
    background-color: rgba(42, 52, 65, 0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.quote {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
}

body[data-theme="dark"] .quote i {
    color: rgba(255, 255, 255, 0.1);
}

.testimonial p {
    margin-bottom: 20px;
    margin-top: 10px;
    position: relative;
    z-index: 2;
}

body[data-theme="dark"] .testimonial-text {
    color: var(--text-secondary);
}

.client {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.client-info h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

body[data-theme="dark"] .client-info h4 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.client-info p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

body[data-theme="dark"] .client-name {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

body[data-theme="dark"] .client-location {
    color: rgba(255, 255, 255, 0.7);
}

.rating {
    color: #f39c12;
}

body[data-theme="dark"] .rating i {
    color: #f39c12;
}

/* İletişim Bölümü */
.contact {
    background-color: #f9f9f9;
}

body[data-theme="dark"] .contact {
    background-color: #2a2a2a;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

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

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

body[data-theme="dark"] .info-item h3 {
    color: var(--heading-dark);
}

.contact-form {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

body[data-theme="dark"] .contact-form {
    background-color: var(--secondary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    background-color: #f9f9f9;
    transition: var(--transition);
}

body[data-theme="dark"] .form-group input,
body[data-theme="dark"] .form-group select,
body[data-theme="dark"] .form-group textarea {
    background-color: #333;
    border-color: #444;
    color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
}

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

/* CTA Bölümü */
.cta {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 0.9rem;
}

.footer-links h3,
.footer-services h3,
.footer-social h3,
.footer-locations h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-social h3::after,
.footer-locations h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-services a {
    color: #ddd;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-locations p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #ddd;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
}

.footer-bottom a {
    color: #ddd;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* Floating Buttons */
.floating-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.floating-button a:hover {
    transform: scale(1.1);
}

.floating-button i {
    font-size: 2rem;
}

.whatsapp-button {
    background-color: #25d366;
}

.call-button {
    background-color: #3498db;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
}

/* Mobil için uyumluluk */
@media (max-width: 768px) {
    .floating-button {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-button a {
        width: 50px;
        height: 50px;
    }
    
    .floating-button i {
        font-size: 1.5rem;
    }
}

/* Animasyonlar */
.animate-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Tasarım */
@media (max-width: 991px) {
    .container {
        padding: 0 15px;
    }

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

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

    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .service-card-detailed {
        grid-template-columns: 1fr;
    }
    
    .service-card-image {
        height: 300px;
    }

    .products-slider {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        margin: 0 auto;
    }
    
    section {
        width: 100%;
        box-sizing: border-box;
        padding-left: 0;
        padding-right: 0;
        overflow-x: hidden;
    }
    
    .hero .container {
        width: 100%;
        box-sizing: border-box;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .hero {
        width: 100%;
        overflow-x: hidden;
    }
    
    header {
        padding: 10px 0;
    }
    
    header .container {
        flex-wrap: wrap;
    }
    
    .logo {
        margin-bottom: 0;
        flex: 1;
    }
    
    .logo h1 {
        font-size: 1.4rem;
    }
    
    nav {
        justify-content: flex-end;
        width: auto;
        display: flex;
        align-items: center;
    }
    
    .menu {
        position: fixed;
        top: 60px;
        left: 0;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    body[data-theme="dark"] .menu {
        background-color: #1a1a1a;
    }
    
    .menu.active {
        transform: translateY(0);
    }
    
    .menu li {
        margin: 15px 0;
        text-align: center;
    }
    
    .hamburger {
        display: flex;
        z-index: 1000;
        margin-left: 15px;
    }
    
    .hamburger span {
        transition: all 0.3s ease;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .theme-switch-wrapper {
        position: relative;
        top: 0;
        right: 0;
        margin-right: 10px;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
        width: 100%;
    }
    
    .service-card-detailed {
        grid-template-columns: 1fr;
    }
    
    .service-card-image {
        height: 200px;
    }
    
    .features-container,
    .services-container,
    .testimonials-container {
        grid-template-columns: 1fr;
    }

    .products-slider {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
    }

    .product-card {
        flex: 0 0 85%;
    }
    
    .service-features,
    .service-benefits {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links h3::after,
    .footer-services h3::after,
    .footer-social h3::after,
    .footer-locations h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

@media (max-width: 480px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        width: 100%;
        overflow-x: hidden;
    }
    
    .hero .container {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }
    
    .popup-overlay {
        left: 0;
        right: 0;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    .popup-container {
        width: 95%;
        max-width: 350px;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    /* Düğmeler için düzeltmeler */
    .cta-buttons {
        width: 100%;
        box-sizing: border-box;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
}

/* Sayfa Yükleme Animasyonu */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

body[data-theme="dark"] .loader-wrapper {
    background-color: #1a1a1a;
}

.loader {
    width: 60px;
    height: 60px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Popup Stili */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    backdrop-filter: blur(5px);
}

/* Active sınıfı eklendiğinde görünürlük ayarları */
.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    width: 90%;
    max-width: 500px;
    transform: translateY(20px);
    transition: all 0.3s ease-out;
    overflow: hidden;
    box-sizing: border-box;
}

/* Active sınıfı eklendiğinde animasyon */
.popup-overlay.active .popup-container {
    transform: translateY(0);
}

/* Popup içerik stilleri */
.popup-content {
    padding: 25px;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.2s ease;
}

.popup-close:hover {
    background-color: #e74c3c;
    color: white;
    transform: rotate(90deg);
}

.popup-header {
    margin-bottom: 15px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.popup-title {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 8px;
    line-height: 1.3;
}

.popup-subtitle {
    font-size: 16px;
    color: #444;
    font-weight: 500;
}

.popup-body {
    padding: 5px 0 15px;
}

.popup-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.popup-text strong {
    color: #e74c3c;
    font-weight: 700;
}

/* Discount badge */
.discount-badge-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #e74c3c;
    color: white;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    vertical-align: middle;
}

/* Countdown container */
.countdown-container {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    gap: 10px;
}

.countdown-item {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 12px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.countdown-number {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
}

/* CTA Butonu stilini güncelle */
.popup-cta {
    margin-top: 20px;
}

.popup-cta .btn {
    width: 100%;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    background-color: #0066cc;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 102, 204, 0.2);
    text-transform: uppercase;
    border: none;
}

.popup-cta .btn:hover {
    background-color: #0055aa;
    box-shadow: 0 6px 15px rgba(0, 102, 204, 0.3);
}

/* Popup kapatma animasyonu */
.popup-overlay.closing {
    opacity: 0;
}

.popup-overlay.closing .popup-container {
    transform: translateY(20px);
}

/* Dark mode uyarlamaları */
body[data-theme="dark"] .popup-container {
    background-color: #222;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-theme="dark"] .popup-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-theme="dark"] .popup-title {
    color: #4a90e2;
}

body[data-theme="dark"] .popup-subtitle {
    color: #ddd;
}

body[data-theme="dark"] .popup-text {
    color: #ccc;
}

body[data-theme="dark"] .countdown-item {
    background-color: #333;
    border-color: #444;
}

body[data-theme="dark"] .countdown-number {
    color: #4a90e2;
}

body[data-theme="dark"] .countdown-label {
    color: #bbb;
}

body[data-theme="dark"] .popup-close {
    background-color: #333;
    color: #ddd;
}

/* Responsive ayarlar */
@media (max-width: 480px) {
    .popup-container {
        width: 95%;
        max-width: 380px;
    }
    
    .popup-content {
        padding: 20px 15px;
    }
    
    .popup-title {
        font-size: 20px;
    }
    
    .popup-subtitle {
        font-size: 14px;
    }
    
    .countdown-item {
        padding: 10px 5px;
    }
    
    .countdown-number {
        font-size: 20px;
    }
    
    .countdown-label {
        font-size: 10px;
    }
    
    .popup-text {
        font-size: 14px;
        margin-bottom: 15px;
    }
}

/* Torbalı Özel Bölümü Stili */
.torbali-special {
    padding: 70px 0;
    background-color: rgba(230, 126, 34, 0.05);
}

body[data-theme="dark"] .torbali-special {
    background-color: rgba(243, 156, 18, 0.05);
}

.torbali-neighborhoods {
    margin-top: 40px;
    text-align: center;
}

.torbali-neighborhoods h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.torbali-neighborhoods h3::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.neighborhoods-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.neighborhood {
    background-color: #fff;
    color: var(--text-color);
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

body[data-theme="dark"] .neighborhood {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.neighborhood:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    background-color: var(--accent-color);
    color: white;
}

@media (max-width: 768px) {
    .neighborhoods-container {
        gap: 10px;
    }
    
    .neighborhood {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/* Service Card CTA Buttons Stili */
.service-card-content .cta-buttons {
    margin-top: auto;
    display: flex;
    gap: 15px;
}

/* Neden Bizi Tercih Etmelisiniz Bölümü */
.why-choose-us {
    background-color: #f9f9f9;
    position: relative;
    overflow: visible;
    z-index: 1;
}

body[data-theme="dark"] .why-choose-us {
    background-color: #1f2937;
}

.why-choose-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 102, 204, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

body[data-theme="dark"] .why-choose-us::before {
    background: radial-gradient(circle at center, rgba(74, 144, 226, 0.05) 0%, rgba(31, 41, 55, 0) 70%);
}

.why-choose-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.why-choose-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

body[data-theme="dark"] .feature-item {
    background-color: #2d3748;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

body[data-theme="dark"] .feature-item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.feature-item:hover::after {
    width: 100%;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    background-color: var(--accent-color);
}

.feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 600;
}

body[data-theme="dark"] .feature-content h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

body[data-theme="dark"] .feature-content p {
    color: var(--text-secondary);
}

.cta-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    position: relative;
    z-index: 50;
}

.cta-container .btn {
    position: relative;
    z-index: 50;
    cursor: pointer;
    pointer-events: auto;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-title {
        font-size: 2rem;
    }
    
    .why-choose-subtitle {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 20px;
    }
}

@keyframes popupFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
}

/* Daha küçük mobil ekranlar için ek düzeltmeler */
@media (max-width: 360px) {
    .popup-container {
        width: 95%;
        max-width: 300px;
    }
    
    .popup-title {
        font-size: 1.1rem;
    }
    
    .popup-subtitle {
        font-size: 0.8rem;
    }
    
    .countdown-number {
        font-size: 1rem;
    }
    
    .countdown-label {
        font-size: 0.55rem;
    }
    
    .discount-badge-inline {
        font-size: 0.75rem;
        padding: 2px 5px;
    }
}

/* Hizmetler Sidebar Stili */
.services-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(to right, rgba(0, 102, 204, 0.95), rgba(0, 102, 204, 0.85));
    padding: 15px;
    border-radius: 0 15px 15px 0;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 220px;
    max-width: 80%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateY(-50%) translateX(-100%);
}

.services-sidebar.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.sidebar-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: center;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-link {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.sidebar-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 0 2px 2px 0;
    transition: all 0.3s ease;
    opacity: 0;
}

.sidebar-link:hover, .sidebar-link.active {
    background-color: rgba(255, 255, 255, 0.15);
}

.sidebar-link:hover::before, .sidebar-link.active::before {
    opacity: 1;
}

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

.sidebar-link.active {
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.sidebar-toggle {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 102, 204, 0.9);
    width: 30px;
    height: 40px;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sidebar-toggle:hover {
    background-color: rgba(0, 102, 204, 1);
}

.sidebar-toggle i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.services-sidebar.collapsed {
    transform: translateY(-50%) translateX(-100%);
}

.services-sidebar.collapsed .sidebar-toggle i {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .services-sidebar {
        width: 180px;
        padding: 12px;
    }
    
    .sidebar-title {
        font-size: 1rem;
    }
    
    .sidebar-link {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .services-sidebar {
        display: none;
    }
}

/* Ürün kartı hover class'ı */
.product-card.hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-card.hover .product-card-icon {
    background-color: var(--primary-color);
}

.product-card.hover .product-card-icon i {
    color: #fff;
}

body[data-theme="dark"] .primary-btn {
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

body[data-theme="dark"] .primary-btn:hover {
    background-color: #3a84d9;
    box-shadow: 0 6px 16px rgba(74, 144, 226, 0.4);
}

/* Footer başlıkları düzeltme */
body[data-theme="dark"] .footer-logo h2,
body[data-theme="dark"] .footer-links h3,
body[data-theme="dark"] .footer-services h3,
body[data-theme="dark"] .footer-locations h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Service kart içindeki başlıklar */
body[data-theme="dark"] .service-feature span,
body[data-theme="dark"] .benefit span {
    color: var(--text-secondary);
}

/* Feature kartları başlık ve metinleri */
body[data-theme="dark"] .feature-box h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

body[data-theme="dark"] .feature-box p {
    color: var(--text-secondary);
}

/* İletişim bilgisi ikonlarının dark mode düzenlemesi */
body[data-theme="dark"] .info-item i {
    color: rgba(255, 255, 255, 0.9);
}

body[data-theme="dark"] .info-item h3 {
    color: var(--heading-dark);
}

body[data-theme="dark"] .info-item p,
body[data-theme="dark"] .info-item a {
    color: var(--text-secondary);
}

/* Footer linkleri iyileştirme */
body[data-theme="dark"] .footer-links a,
body[data-theme="dark"] .footer-services a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

body[data-theme="dark"] .footer-links a:hover,
body[data-theme="dark"] .footer-services a:hover {
    color: var(--primary-color);
}

/* Tüm mobil görünüm düzeltmeleri */
html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        margin: 0 auto;
    }
    
    section {
        width: 100%;
        box-sizing: border-box;
        padding-left: 0;
        padding-right: 0;
    }
    
    .hero .container {
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .hero .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .popup-overlay {
        left: 0;
        right: 0;
        width: 100%;
    }
    
    .popup-container {
        width: 92%;
        max-width: 330px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
    
    /* Düğmeler için düzeltmeler */
    .cta-buttons {
        width: 100%;
        box-sizing: border-box;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
}

/* Torbalı Showcase Bölümü Stilleri */
.torbali-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-bg, #f8f9fa) 0%, var(--secondary-light-bg, #e9ecef) 100%);
    position: relative;
    overflow: hidden;
}

body[data-theme="dark"] .torbali-showcase {
    background: linear-gradient(135deg, var(--dark-bg, #212529) 0%, var(--secondary-dark-bg, #343a40) 100%);
}

.torbali-showcase::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(52, 152, 219, 0.1);
    top: -150px;
    left: -150px;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.torbali-showcase::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.1);
    bottom: -200px;
    right: -200px;
    z-index: 1;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.torbali-showcase .container {
    position: relative;
    z-index: 2;
}

.torbali-showcase-content {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--card-bg, #fff);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

body[data-theme="dark"] .torbali-showcase-content {
    background: var(--card-dark-bg, #2a3441);
}

.torbali-showcase-image {
    flex: 1;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.showcase-badge {
    position: absolute;
    top: 20px;
    right: 0;
    background-color: #25d366;
    color: white;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px 0 0 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
}

.torbali-showcase-content:hover .showcase-image {
    transform: scale(1.05);
}

.torbali-showcase-info {
    flex: 1;
    padding: 40px;
}

.torbali-showcase-info h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--heading-color, #333);
    position: relative;
    padding-bottom: 15px;
}

body[data-theme="dark"] .torbali-showcase-info h2 {
    color: var(--heading-color-dark, #fff);
}

.torbali-showcase-info h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-color, #3498db);
    border-radius: 3px;
}

.torbali-showcase-info p {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color, #666);
}

body[data-theme="dark"] .torbali-showcase-info p {
    color: var(--text-color-dark, #b3b3b3);
}

.torbali-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-item i {
    color: var(--accent-color, #2ecc71);
    font-size: 16px;
    width: 25px;
    height: 25px;
    background: rgba(46, 204, 113, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

body[data-theme="dark"] .benefit-item i {
    background: rgba(46, 204, 113, 0.2);
}

.benefit-item span {
    font-size: 15px;
}

/* Genel CSS Reset ve Değişkenler */
:root {
    --primary-color: #0066cc;
    --secondary-color: #2c3e50;
    --accent-color: #e67e22;
    --light-color: #ecf0f1;
    --dark-color: #1a1a1a;
    --text-color: #333;
    --text-light: #f8f9fa;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 5px;
    --container-width: 1200px;
    --heading-dark: #f8f9fa;
    --heading-light: #333;
}

/* Dark Mode */
[data-theme="dark"] {
    --primary-color: #4a90e2;
    --secondary-color: #34495e;
    --accent-color: #f39c12;
    --light-color: #2c3e50;
    --dark-color: #f8f9fa;
    --text-color: #f8f9fa;
    --text-light: #1a1a1a;
    --box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
    --heading-dark: #ffffff;
    --heading-light: #f0f0f0;
    --text-secondary: rgba(255, 255, 255, 0.85);
}

body[data-theme="dark"] h2,
body[data-theme="dark"] h3,
body[data-theme="dark"] h4 {
    color: var(--heading-dark);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

body[data-theme="dark"] p {
    color: var(--text-secondary);
}

/* Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Header Stili */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--box-shadow);
    padding: 15px 0;
    transition: var(--transition);
}

body[data-theme="dark"] header {
    background-color: rgba(26, 26, 26, 0.95);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

nav {
    display: flex;
    align-items: center;
}

.menu {
    display: flex;
}

.menu li {
    margin-left: 30px;
}

.menu a {
    position: relative;
    font-weight: 500;
    padding: 5px 0;
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 2px 0;
    transition: var(--transition);
}

/* Dark/Light Mode Switch */
.theme-switch-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 15px;
    z-index: 1001;
}

.theme-switch {
    display: inline-block;
    height: 26px;
    position: relative;
    width: 50px;
}

.theme-switch input {
    display: none;
}

.slider {
    background-color: #ccc;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
}

.slider .fa-sun {
    color: #f39c12;
    font-size: 14px;
    margin-left: 2px;
}

.slider .fa-moon {
    color: #f8f9fa;
    font-size: 14px;
    margin-right: 2px;
}

.slider:before {
    background-color: #fff;
    bottom: 3px;
    content: "";
    height: 20px;
    left: 3px;
    position: absolute;
    transition: .4s;
    width: 20px;
    z-index: 2;
}

input:checked + .slider {
    background-color: var(--secondary-color);
}

input:checked + .slider:before {
    transform: translateX(24px);
}

.slider.round {
    border-radius: 24px;
}

.slider.round:before {
    border-radius: 50%;
}

.theme-switch-wrapper em {
    margin-left: 10px;
    font-size: 1rem;
    color: var(--text-color);
}

/* Hero Bölümü */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

/* İzmir Hizmet Bölgeleri Stili */
.service-areas {
    background-color: var(--light-color);
    padding: 80px 0;
}

.areas-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.area-column {
    background-color: #fff;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

body[data-theme="dark"] .area-column {
    background-color: rgba(42, 52, 65, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.area-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.area-column h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

body[data-theme="dark"] .area-column h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

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

.area-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.area-column ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.area-column ul li i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

body[data-theme="dark"] .area-column ul li i {
    color: var(--primary-color);
}

body[data-theme="dark"] .area-column ul li {
    color: var(--text-secondary);
}

/* Aşağı doğru check ikonları renk düzeltmesi */
body[data-theme="dark"] .fa-check-circle {
    color: var(--primary-color);
}

/* Butonlar */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.primary-btn {
    background-color: var(--primary-color);
    color: #fff;
}

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

.secondary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.hero .secondary-btn {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

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

.hero .secondary-btn:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.small-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
}

/* Section Stili */
section {
    padding: 80px 0;
    width: 100%;
    box-sizing: border-box;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    color: var(--heading-light);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

body[data-theme="dark"] .section-title h2 {
    color: var(--heading-dark);
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

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

.section-title p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Özellikler Bölümü */
.features {
    background-color: var(--light-color);
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

body[data-theme="dark"] .feature-box {
    background-color: var(--secondary-color);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-box .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
}

.feature-box .icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.feature-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

body[data-theme="dark"] .feature-box h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-box p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

body[data-theme="dark"] .feature-box p {
    color: var(--text-secondary);
}

/* Hizmetler Bölümü - Yeni Detaylı Hizmet Kartları */
.services {
    background-color: #f9f9f9;
}

body[data-theme="dark"] .services {
    background-color: #2a2a2a;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card-detailed {
    display: grid;
    grid-template-columns: 1fr 2fr;
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

body[data-theme="dark"] .service-card-detailed {
    background-color: var(--secondary-color);
}

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

.service-card-image {
    height: 100%;
    overflow: hidden;
}

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

.service-card-detailed:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.service-card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

body[data-theme="dark"] .service-card-content h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-feature i {
    color: var(--primary-color);
    font-size: 1rem;
}

.service-card-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
    background-color: rgba(0, 102, 204, 0.05);
    padding: 15px;
    border-radius: var(--border-radius);
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.service-card-content .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* Eski Hizmet Kartları Stili - Hizmetler Bölümündeki Kartlar için */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

body[data-theme="dark"] .service-card {
    background-color: var(--secondary-color);
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

body[data-theme="dark"] .service-content h3 {
    color: var(--text-light);
}

.service-content p {
    margin-bottom: 15px;
}

/* Ürünler Slider */
.products {
    position: relative;
    overflow: hidden;
}

.products-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin: 40px 0;
    width: 100%;
    overflow: visible;
}

.product-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    padding: 20px 15px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
}

body[data-theme="dark"] .product-card {
    background-color: #2a3441;
    border: 1px solid rgba(255,255,255,0.1);
}

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

.product-card-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    margin-bottom: 15px;
    transition: var(--transition);
}

body[data-theme="dark"] .product-card-icon {
    background-color: rgba(74, 144, 226, 0.2);
}

.product-card-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

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

.product-card:hover .product-card-icon i {
    color: #fff;
}

.product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

body[data-theme="dark"] .product-card h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.product-card p {
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
    flex-grow: 1;
}

body[data-theme="dark"] .product-card p {
    color: rgba(255,255,255,0.8);
}

.product-card .btn {
    margin-top: auto;
    width: 100%;
    padding: 10px 15px;
    font-size: 0.9rem;
}

/* Projeler Galerisi */
.projects {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

body[data-theme="dark"] .projects {
    background-color: #212529;
}

.projects-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.project-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 300px;
    position: relative;
}

body[data-theme="dark"] .project-item {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.project-image {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

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

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

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0) 100%);
    padding: 30px 20px 20px;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

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

.project-info {
    width: 100%;
    text-align: center;
}

.project-info h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: all 0.4s ease;
    opacity: 0;
}

.project-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
    opacity: 0;
}

.project-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
    opacity: 0;
}

.project-btn:hover {
    background-color: #0055b3;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.project-item:hover .project-info h3,
.project-item:hover .project-info p,
.project-item:hover .project-info .project-btn {
    transform: translateY(0);
    opacity: 1;
}

.projects-cta {
    text-align: center;
    margin-top: 40px;
}

/* Responsive tasarım - Projelerimiz */
@media (max-width: 992px) {
    .projects-gallery {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .projects-gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .project-item {
        height: 250px;
    }
    
    .project-info h3 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .projects-gallery {
        grid-template-columns: 1fr;
    }
}

/* Müşteri Yorumları */
.testimonials {
    background-color: #fff;
}

body[data-theme="dark"] .testimonials {
    background-color: #1f1f1f;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

body[data-theme="dark"] .testimonial {
    background-color: rgba(42, 52, 65, 0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.quote {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
}

body[data-theme="dark"] .quote i {
    color: rgba(255, 255, 255, 0.1);
}

.testimonial p {
    margin-bottom: 20px;
    margin-top: 10px;
    position: relative;
    z-index: 2;
}

body[data-theme="dark"] .testimonial-text {
    color: var(--text-secondary);
}

.client {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.client-info h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

body[data-theme="dark"] .client-info h4 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.client-info p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

body[data-theme="dark"] .client-name {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

body[data-theme="dark"] .client-location {
    color: rgba(255, 255, 255, 0.7);
}

.rating {
    color: #f39c12;
}

body[data-theme="dark"] .rating i {
    color: #f39c12;
}

/* İletişim Bölümü */
.contact {
    background-color: #f9f9f9;
}

body[data-theme="dark"] .contact {
    background-color: #2a2a2a;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

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

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

body[data-theme="dark"] .info-item h3 {
    color: var(--heading-dark);
}

.contact-form {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

body[data-theme="dark"] .contact-form {
    background-color: var(--secondary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    background-color: #f9f9f9;
    transition: var(--transition);
}

body[data-theme="dark"] .form-group input,
body[data-theme="dark"] .form-group select,
body[data-theme="dark"] .form-group textarea {
    background-color: #333;
    border-color: #444;
    color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
}

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

/* CTA Bölümü */
.cta {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 0.9rem;
}

.footer-links h3,
.footer-services h3,
.footer-social h3,
.footer-locations h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-social h3::after,
.footer-locations h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-services a {
    color: #ddd;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-locations p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #ddd;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
}

.footer-bottom a {
    color: #ddd;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* Floating Buttons */
.floating-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.floating-button a:hover {
    transform: scale(1.1);
}

.floating-button i {
    font-size: 2rem;
}

.whatsapp-button {
    background-color: #25d366;
}

.call-button {
    background-color: #3498db;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
}

/* Mobil için uyumluluk */
@media (max-width: 768px) {
    .floating-button {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-button a {
        width: 50px;
        height: 50px;
    }
    
    .floating-button i {
        font-size: 1.5rem;
    }
}

/* Animasyonlar */
.animate-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Tasarım */
@media (max-width: 991px) {
    .container {
        padding: 0 15px;
    }

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

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

    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .service-card-detailed {
        grid-template-columns: 1fr;
    }
    
    .service-card-image {
        height: 300px;
    }

    .products-slider {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        margin: 0 auto;
    }
    
    section {
        width: 100%;
        box-sizing: border-box;
        padding-left: 0;
        padding-right: 0;
        overflow-x: hidden;
    }
    
    .hero .container {
        width: 100%;
        box-sizing: border-box;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .hero {
        width: 100%;
        overflow-x: hidden;
    }
    
    header {
        padding: 10px 0;
    }
    
    header .container {
        flex-wrap: wrap;
    }
    
    .logo {
        margin-bottom: 0;
        flex: 1;
    }
    
    .logo h1 {
        font-size: 1.4rem;
    }
    
    nav {
        justify-content: flex-end;
        width: auto;
        display: flex;
        align-items: center;
    }
    
    .menu {
        position: fixed;
        top: 60px;
        left: 0;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    body[data-theme="dark"] .menu {
        background-color: #1a1a1a;
    }
    
    .menu.active {
        transform: translateY(0);
    }
    
    .menu li {
        margin: 15px 0;
        text-align: center;
    }
    
    .hamburger {
        display: flex;
        z-index: 1000;
        margin-left: 15px;
    }
    
    .hamburger span {
        transition: all 0.3s ease;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .theme-switch-wrapper {
        position: relative;
        top: 0;
        right: 0;
        margin-right: 10px;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
        width: 100%;
    }
    
    .service-card-detailed {
        grid-template-columns: 1fr;
    }
    
    .service-card-image {
        height: 200px;
    }
    
    .features-container,
    .services-container,
    .testimonials-container {
        grid-template-columns: 1fr;
    }

    .products-slider {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
    }

    .product-card {
        flex: 0 0 85%;
    }
    
    .service-features,
    .service-benefits {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links h3::after,
    .footer-services h3::after,
    .footer-social h3::after,
    .footer-locations h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

@media (max-width: 480px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        width: 100%;
        overflow-x: hidden;
    }
    
    .hero .container {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }
    
    .popup-overlay {
        left: 0;
        right: 0;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    .popup-container {
        width: 95%;
        max-width: 350px;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    /* Düğmeler için düzeltmeler */
    .cta-buttons {
        width: 100%;
        box-sizing: border-box;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
}

/* Sayfa Yükleme Animasyonu */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

body[data-theme="dark"] .loader-wrapper {
    background-color: #1a1a1a;
}

.loader {
    width: 60px;
    height: 60px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Popup Stili */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    backdrop-filter: blur(5px);
}

/* Active sınıfı eklendiğinde görünürlük ayarları */
.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    width: 90%;
    max-width: 500px;
    transform: translateY(20px);
    transition: all 0.3s ease-out;
    overflow: hidden;
    box-sizing: border-box;
}

/* Active sınıfı eklendiğinde animasyon */
.popup-overlay.active .popup-container {
    transform: translateY(0);
}

/* Popup içerik stilleri */
.popup-content {
    padding: 25px;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.2s ease;
}

.popup-close:hover {
    background-color: #e74c3c;
    color: white;
    transform: rotate(90deg);
}

.popup-header {
    margin-bottom: 15px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.popup-title {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 8px;
    line-height: 1.3;
}

.popup-subtitle {
    font-size: 16px;
    color: #444;
    font-weight: 500;
}

.popup-body {
    padding: 5px 0 15px;
}

.popup-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.popup-text strong {
    color: #e74c3c;
    font-weight: 700;
}

/* Discount badge */
.discount-badge-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #e74c3c;
    color: white;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    vertical-align: middle;
}

/* Countdown container */
.countdown-container {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    gap: 10px;
}

.countdown-item {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 12px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.countdown-number {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
}

/* CTA Butonu stilini güncelle */
.popup-cta {
    margin-top: 20px;
}

.popup-cta .btn {
    width: 100%;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    background-color: #0066cc;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 102, 204, 0.2);
    text-transform: uppercase;
    border: none;
}

.popup-cta .btn:hover {
    background-color: #0055aa;
    box-shadow: 0 6px 15px rgba(0, 102, 204, 0.3);
}

/* Popup kapatma animasyonu */
.popup-overlay.closing {
    opacity: 0;
}

.popup-overlay.closing .popup-container {
    transform: translateY(20px);
}

/* Dark mode uyarlamaları */
body[data-theme="dark"] .popup-container {
    background-color: #222;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-theme="dark"] .popup-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-theme="dark"] .popup-title {
    color: #4a90e2;
}

body[data-theme="dark"] .popup-subtitle {
    color: #ddd;
}

body[data-theme="dark"] .popup-text {
    color: #ccc;
}

body[data-theme="dark"] .countdown-item {
    background-color: #333;
    border-color: #444;
}

body[data-theme="dark"] .countdown-number {
    color: #4a90e2;
}

body[data-theme="dark"] .countdown-label {
    color: #bbb;
}

body[data-theme="dark"] .popup-close {
    background-color: #333;
    color: #ddd;
}

/* Responsive ayarlar */
@media (max-width: 480px) {
    .popup-container {
        width: 95%;
        max-width: 380px;
    }
    
    .popup-content {
        padding: 20px 15px;
    }
    
    .popup-title {
        font-size: 20px;
    }
    
    .popup-subtitle {
        font-size: 14px;
    }
    
    .countdown-item {
        padding: 10px 5px;
    }
    
    .countdown-number {
        font-size: 20px;
    }
    
    .countdown-label {
        font-size: 10px;
    }
    
    .popup-text {
        font-size: 14px;
        margin-bottom: 15px;
    }
}

/* Torbalı Özel Bölümü Stili */
.torbali-special {
    padding: 70px 0;
    background-color: rgba(230, 126, 34, 0.05);
}

body[data-theme="dark"] .torbali-special {
    background-color: rgba(243, 156, 18, 0.05);
}

.torbali-neighborhoods {
    margin-top: 40px;
    text-align: center;
}

.torbali-neighborhoods h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.torbali-neighborhoods h3::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.neighborhoods-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.neighborhood {
    background-color: #fff;
    color: var(--text-color);
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

body[data-theme="dark"] .neighborhood {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.neighborhood:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    background-color: var(--accent-color);
    color: white;
}

@media (max-width: 768px) {
    .neighborhoods-container {
        gap: 10px;
    }
    
    .neighborhood {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/* Service Card CTA Buttons Stili */
.service-card-content .cta-buttons {
    margin-top: auto;
    display: flex;
    gap: 15px;
}

/* Neden Bizi Tercih Etmelisiniz Bölümü */
.why-choose-us {
    background-color: #f9f9f9;
    position: relative;
    overflow: visible;
    z-index: 1;
}

body[data-theme="dark"] .why-choose-us {
    background-color: #1f2937;
}

.why-choose-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 102, 204, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

body[data-theme="dark"] .why-choose-us::before {
    background: radial-gradient(circle at center, rgba(74, 144, 226, 0.05) 0%, rgba(31, 41, 55, 0) 70%);
}

.why-choose-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.why-choose-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

body[data-theme="dark"] .feature-item {
    background-color: #2d3748;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

body[data-theme="dark"] .feature-item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.feature-item:hover::after {
    width: 100%;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    background-color: var(--accent-color);
}

.feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 600;
}

body[data-theme="dark"] .feature-content h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

body[data-theme="dark"] .feature-content p {
    color: var(--text-secondary);
}

.cta-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    position: relative;
    z-index: 50;
}

.cta-container .btn {
    position: relative;
    z-index: 50;
    cursor: pointer;
    pointer-events: auto;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-title {
        font-size: 2rem;
    }
    
    .why-choose-subtitle {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 20px;
    }
}

@keyframes popupFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
}

/* Daha küçük mobil ekranlar için ek düzeltmeler */
@media (max-width: 360px) {
    .popup-container {
        width: 95%;
        max-width: 300px;
    }
    
    .popup-title {
        font-size: 1.1rem;
    }
    
    .popup-subtitle {
        font-size: 0.8rem;
    }
    
    .countdown-number {
        font-size: 1rem;
    }
    
    .countdown-label {
        font-size: 0.55rem;
    }
    
    .discount-badge-inline {
        font-size: 0.75rem;
        padding: 2px 5px;
    }
}

/* Hizmetler Sidebar Stili */
.services-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(to right, rgba(0, 102, 204, 0.95), rgba(0, 102, 204, 0.85));
    padding: 15px;
    border-radius: 0 15px 15px 0;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 220px;
    max-width: 80%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateY(-50%) translateX(-100%);
}

.services-sidebar.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.sidebar-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: center;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-link {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.sidebar-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 0 2px 2px 0;
    transition: all 0.3s ease;
    opacity: 0;
}

.sidebar-link:hover, .sidebar-link.active {
    background-color: rgba(255, 255, 255, 0.15);
}

.sidebar-link:hover::before, .sidebar-link.active::before {
    opacity: 1;
}

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

.sidebar-link.active {
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.sidebar-toggle {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 102, 204, 0.9);
    width: 30px;
    height: 40px;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sidebar-toggle:hover {
    background-color: rgba(0, 102, 204, 1);
}

.sidebar-toggle i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.services-sidebar.collapsed {
    transform: translateY(-50%) translateX(-100%);
}

.services-sidebar.collapsed .sidebar-toggle i {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .services-sidebar {
        width: 180px;
        padding: 12px;
    }
    
    .sidebar-title {
        font-size: 1rem;
    }
    
    .sidebar-link {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .services-sidebar {
        display: none;
    }
}

/* Ürün kartı hover class'ı */
.product-card.hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-card.hover .product-card-icon {
    background-color: var(--primary-color);
}

.product-card.hover .product-card-icon i {
    color: #fff;
}

body[data-theme="dark"] .primary-btn {
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

body[data-theme="dark"] .primary-btn:hover {
    background-color: #3a84d9;
    box-shadow: 0 6px 16px rgba(74, 144, 226, 0.4);
}

/* Footer başlıkları düzeltme */
body[data-theme="dark"] .footer-logo h2,
body[data-theme="dark"] .footer-links h3,
body[data-theme="dark"] .footer-services h3,
body[data-theme="dark"] .footer-locations h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Service kart içindeki başlıklar */
body[data-theme="dark"] .service-feature span,
body[data-theme="dark"] .benefit span {
    color: var(--text-secondary);
}

/* Feature kartları başlık ve metinleri */
body[data-theme="dark"] .feature-box h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

body[data-theme="dark"] .feature-box p {
    color: var(--text-secondary);
}

/* İletişim bilgisi ikonlarının dark mode düzenlemesi */
body[data-theme="dark"] .info-item i {
    color: rgba(255, 255, 255, 0.9);
}

body[data-theme="dark"] .info-item h3 {
    color: var(--heading-dark);
}

body[data-theme="dark"] .info-item p,
body[data-theme="dark"] .info-item a {
    color: var(--text-secondary);
}

/* Footer linkleri iyileştirme */
body[data-theme="dark"] .footer-links a,
body[data-theme="dark"] .footer-services a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

body[data-theme="dark"] .footer-links a:hover,
body[data-theme="dark"] .footer-services a:hover {
    color: var(--primary-color);
}

/* Tüm mobil görünüm düzeltmeleri */
html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        margin: 0 auto;
    }
    
    section {
        width: 100%;
        box-sizing: border-box;
        padding-left: 0;
        padding-right: 0;
    }
    
    .hero .container {
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .hero .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .popup-overlay {
        left: 0;
        right: 0;
        width: 100%;
    }
    
    .popup-container {
        width: 92%;
        max-width: 330px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
    
    /* Düğmeler için düzeltmeler */
    .cta-buttons {
        width: 100%;
        box-sizing: border-box;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
}

/* Torbalı Showcase Bölümü Stilleri */
.torbali-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-bg, #f8f9fa) 0%, var(--secondary-light-bg, #e9ecef) 100%);
    position: relative;
    overflow: hidden;
}

body[data-theme="dark"] .torbali-showcase {
    background: linear-gradient(135deg, var(--dark-bg, #212529) 0%, var(--secondary-dark-bg, #343a40) 100%);
}

.torbali-showcase::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(52, 152, 219, 0.1);
    top: -150px;
    left: -150px;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.torbali-showcase::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.1);
    bottom: -200px;
    right: -200px;
    z-index: 1;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.torbali-showcase .container {
    position: relative;
    z-index: 2;
}

.torbali-showcase-content {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--card-bg, #fff);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

body[data-theme="dark"] .torbali-showcase-content {
    background: var(--card-dark-bg, #2a3441);
}

.torbali-showcase-image {
    flex: 1;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.showcase-badge {
    position: absolute;
    top: 20px;
    right: 0;
    background-color: #25d366;
    color: white;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px 0 0 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
}

.torbali-showcase-content:hover .showcase-image {
    transform: scale(1.05);
}

.torbali-showcase-info {
    flex: 1;
    padding: 40px;
}

.torbali-showcase-info h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--heading-color, #333);
    position: relative;
    padding-bottom: 15px;
}

body[data-theme="dark"] .torbali-showcase-info h2 {
    color: var(--heading-color-dark, #fff);
}

.torbali-showcase-info h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-color, #3498db);
    border-radius: 3px;
}

.torbali-showcase-info p {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color, #666);
}

body[data-theme="dark"] .torbali-showcase-info p {
    color: var(--text-color-dark, #b3b3b3);
}

.torbali-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-item i {
    color: var(--accent-color, #2ecc71);
    font-size: 16px;
    width: 25px;
    height: 25px;
    background: rgba(46, 204, 113, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

body[data-theme="dark"] .benefit-item i {
    background: rgba(46, 204, 113, 0.2);
}

.benefit-item span {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color, #666);
}

body[data-theme="dark"] .benefit-item span {
    color: var(--text-color-dark, #b3b3b3);
}

.torbali-cta {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.torbali-cta .btn {
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.torbali-cta .primary-btn {
    background: var(--primary-color, #3498db);
    color: white;
    border: none;
}

.torbali-cta .primary-btn:hover {
    background: var(--primary-color-hover, #2980b9);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.torbali-cta .secondary-btn {
    background: transparent;
    color: var(--primary-color, #3498db);
    border: 1px solid var(--primary-color, #3498db);
}

.torbali-cta .secondary-btn:hover {
    background: rgba(52, 152, 219, 0.1);
    transform: translateY(-3px);
}

/* Responsive Design for Torbalı Showcase */
@media (max-width: 992px) {
    .torbali-showcase-content {
        flex-direction: column;
    }
    
    .torbali-showcase-image {
        width: 100%;
        min-height: 300px;
    }
    
    .torbali-showcase-info {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .torbali-benefits {
        grid-template-columns: 1fr;
    }
    
    .torbali-showcase-info h2 {
        font-size: 24px;
    }
    
    .torbali-showcase-info p {
        font-size: 15px;
    }
    
    .torbali-cta {
        flex-direction: column;
    }
}

/* Torbalı Kartları Stilleri */
.torbali-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.torbali-card {
    background: var(--card-bg, #fff);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-top: 4px solid var(--primary-color, #3498db);
}

body[data-theme="dark"] .torbali-card {
    background: var(--card-dark-bg, #2a3441);
    border-top: 4px solid var(--primary-color, #3498db);
}

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

.torbali-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.torbali-card:hover .torbali-card-img {
    transform: scale(1.05);
}

.torbali-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.torbali-card-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--heading-color, #333);
}

body[data-theme="dark"] .torbali-card-content h3 {
    color: var(--heading-color-dark, #fff);
}

.torbali-card-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color, #666);
}

body[data-theme="dark"] .torbali-card-content p {
    color: var(--text-color-dark, #b3b3b3);
}

@media (max-width: 992px) {
    .torbali-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .torbali-cards {
        grid-template-columns: 1fr;
    }
}

/* Ürünler Sayfası Stil Tanımlamaları */
.products-page {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-color-light) 0%, var(--bg-color-light-2) 100%);
}

body[data-theme="dark"] .products-page {
    background: linear-gradient(135deg, var(--bg-color-dark) 0%, var(--bg-color-dark-2) 100%);
}

.product-category-nav {
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    padding: 15px;
    position: sticky;
    top: 80px;
    z-index: 10;
    transition: all 0.3s ease;
}

body[data-theme="dark"] .product-category-nav {
    background: var(--card-bg-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.product-category-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.product-category-nav li a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

body[data-theme="dark"] .product-category-nav li a {
    color: var(--text-color-dark);
}

.product-category-nav li a:hover,
.product-category-nav li a.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.product-category-nav li a i {
    font-size: 12px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.product-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

body[data-theme="dark"] .product-item {
    background: #2f3b4d;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.product-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    z-index: 5;
}

.product-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background-color: #ffffff;
    border-radius: 0 0 12px 12px;
}

body[data-theme="dark"] .product-content {
    background-color: #2a3441;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 10px;
}

body[data-theme="dark"] .product-title {
    color: var(--heading-color-dark);
}

.product-description {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.5;
    flex: 1;
}

body[data-theme="dark"] .product-description {
    color: var(--text-color-dark);
}

.product-features {
    margin-bottom: 15px;
}

.product-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    font-size: 13px;
}

.product-feature i {
    color: var(--primary-color);
    font-size: 12px;
}

.product-feature span {
    color: var(--text-color);
}

body[data-theme="dark"] .product-feature span {
    color: var(--text-color-dark);
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.btn-product-detail {
    flex: 1;
    padding: 10px 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-product-detail:hover {
    background: var(--primary-color-dark);
    transform: translateY(-3px);
}

.btn-product-whatsapp {
    padding: 10px 15px;
    background: #25d366;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-product-whatsapp:hover {
    background: #1da851;
    transform: translateY(-3px);
}

/* Ürün Detay Sayfası */
.product-detail-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-color-light) 0%, var(--bg-color-light-2) 100%);
}

body[data-theme="dark"] .product-detail-section {
    background: linear-gradient(135deg, var(--bg-color-dark) 0%, var(--bg-color-dark-2) 100%);
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.product-gallery {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

body[data-theme="dark"] .product-gallery {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-main-image {
    height: 400px;
    overflow: hidden;
}

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

.product-thumbnails {
    display: flex;
    gap: 10px;
    padding: 15px;
    background: var(--white-color);
}

body[data-theme="dark"] .product-thumbnails {
    background: var(--card-bg-dark);
}

.product-thumb {
    height: 80px;
    width: 80px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.product-thumb.active,
.product-thumb:hover {
    opacity: 1;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 20px;
    background: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body[data-theme="dark"] .product-info {
    background: var(--card-bg-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-info-title {
    font-size: 26px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

body[data-theme="dark"] .product-info-title {
    color: var(--heading-color-dark);
    border-bottom: 1px solid var(--border-color-dark);
}

.product-info-description {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

body[data-theme="dark"] .product-info-description {
    color: var(--text-color-dark);
}

.product-info-features {
    margin-bottom: 20px;
}

.product-info-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.product-info-feature i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
}

.product-info-feature span {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.5;
}

body[data-theme="dark"] .product-info-feature span {
    color: var(--text-color-dark);
}

.product-cta {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.btn-request-quote {
    flex: 1;
    padding: 12px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-request-quote:hover {
    background: var(--primary-color-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.btn-call-now {
    padding: 12px 20px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-call-now:hover {
    background: rgba(52, 152, 219, 0.1);
    transform: translateY(-3px);
}

.product-tabs {
    margin-top: 40px;
}

.tab-buttons {
    display: flex;
    gap: 5px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

body[data-theme="dark"] .tab-buttons {
    border-bottom: 1px solid var(--border-color-dark);
}

.tab-button {
    padding: 12px 25px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

body[data-theme="dark"] .tab-button {
    color: var(--text-color-dark);
}

.tab-button.active,
.tab-button:hover {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.tab-content {
    display: none;
    padding: 20px;
    background: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

body[data-theme="dark"] .tab-content {
    background: var(--card-bg-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: 20px;
    color: var(--heading-color);
    margin-bottom: 15px;
}

body[data-theme="dark"] .tab-content h3 {
    color: var(--heading-color-dark);
}

.tab-content p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 15px;
}

body[data-theme="dark"] .tab-content p {
    color: var(--text-color-dark);
}

.tab-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.tab-content ul li {
    margin-bottom: 8px;
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.5;
}

body[data-theme="dark"] .tab-content ul li {
    color: var(--text-color-dark);
}

.faq-item {
    margin-bottom: 15px;
    background: var(--bg-color-light);
    border-radius: 8px;
    overflow: hidden;
}

body[data-theme="dark"] .faq-item {
    background: var(--bg-color-dark);
}

.faq-question {
    position: relative;
    padding: 15px 20px;
    margin-bottom: 1px;
    background-color: #f8f9fa;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

body[data-theme="dark"] .faq-question {
    background-color: #2c3e50;
    color: #ecf0f1;
}

.faq-question:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    transition: all 0.3s ease;
    font-size: 18px;
    color: #3498db;
}

.faq-question.active {
    background-color: #e9f5ff;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

body[data-theme="dark"] .faq-question.active {
    background-color: #34495e;
}

.faq-question.active:after {
    transform: rotate(180deg);
}

.faq-answer { background-color: #fff; padding: 0; max-height: 0; overflow: hidden; transition: all 0.5s ease; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; margin-top: 0; margin-bottom: 0; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); opacity: 0; }

body[data-theme="dark"] .faq-answer { background-color: #fff; padding: 0; max-height: 0; overflow: hidden; transition: all 0.5s ease; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; margin-top: 0; margin-bottom: 0; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); opacity: 0; }

.faq-answer.active { padding: 20px; max-height: 300px; opacity: 1; margin-bottom: 10px; }

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

body[data-theme="dark"] .faq-answer p {
    color: #b3b3b3;
}

.related-products-section {
    padding: 60px 0;
    background: var(--bg-color-light-2);
}

body[data-theme="dark"] .related-products-section {
    background: var(--bg-color-dark-2);
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* Responsive tasarım için media queries */
@media (max-width: 992px) {
    .product-detail-container {
        grid-template-columns: 1fr;
    }
    
    .product-main-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .product-category-nav {
        padding: 10px;
        overflow-x: auto;
        white-space: nowrap;
        justify-content: flex-start;
    }
    
    .product-category-nav ul {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .product-main-image {
        height: 300px;
    }
    
    .product-thumbnails {
        overflow-x: auto;
    }
    
    .product-cta {
        flex-direction: column;
    }
    
    .tab-buttons {
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .tab-button {
        padding: 10px 15px;
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .product-main-image {
        height: 250px;
    }
    
    .product-thumb {
        height: 60px;
        width: 60px;
    }
    
    .product-info-title {
        font-size: 22px;
    }
}

/* Proje resimleri için ek düzenleme */
.projects.clear-images .gallery-item img {
    filter: none !important;
    opacity: 1 !important;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
} 

/* Proje Detay Modalı */
.project-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.project-modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 900px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.4s ease-out;
}

body[data-theme="dark"] .project-modal-content {
    background-color: #2a3441;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.project-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #333;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

body[data-theme="dark"] .project-modal-close {
    color: white;
    background: rgba(0, 0, 0, 0.3);
}

.project-modal-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

#projectModalTitle {
    margin-top: 5px;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

body[data-theme="dark"] #projectModalTitle {
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#projectModalImage {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

body[data-theme="dark"] #projectModalImage {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .project-modal {
        padding-top: 20px;
    }
    
    .project-modal-content {
        width: 95%;
        padding: 15px;
    }
    
    #projectModalTitle {
        font-size: 18px;
        margin-bottom: 15px;
    }
}

/* Müşteri Yorumları */
.testimonials {
    background-color: #fff;
}

body[data-theme="dark"] .testimonials {
    background-color: #1f1f1f;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

body[data-theme="dark"] .testimonial {
    background-color: rgba(42, 52, 65, 0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.quote {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
}

body[data-theme="dark"] .quote i {
    color: rgba(255, 255, 255, 0.1);
}

.testimonial p {
    margin-bottom: 20px;
    margin-top: 10px;
    position: relative;
    z-index: 2;
}

body[data-theme="dark"] .testimonial-text {
    color: var(--text-secondary);
}

.client {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.client-info h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

body[data-theme="dark"] .client-info h4 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.client-info p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

body[data-theme="dark"] .client-name {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

body[data-theme="dark"] .client-location {
    color: rgba(255, 255, 255, 0.7);
}

.rating {
    color: #f39c12;
}

body[data-theme="dark"] .rating i {
    color: #f39c12;
}

/* İletişim Bölümü */
.contact {
    background-color: #f9f9f9;
}

body[data-theme="dark"] .contact {
    background-color: #2a2a2a;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

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

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

body[data-theme="dark"] .info-item h3 {
    color: var(--heading-dark);
}

.contact-form {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

body[data-theme="dark"] .contact-form {
    background-color: var(--secondary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    background-color: #f9f9f9;
    transition: var(--transition);
}

body[data-theme="dark"] .form-group input,
body[data-theme="dark"] .form-group select,
body[data-theme="dark"] .form-group textarea {
    background-color: #333;
    border-color: #444;
    color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
}

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

/* CTA Bölümü */
.cta {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 0.9rem;
}

.footer-links h3,
.footer-services h3,
.footer-social h3,
.footer-locations h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-social h3::after,
.footer-locations h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-services a {
    color: #ddd;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-locations p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #ddd;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
}

.footer-bottom a {
    color: #ddd;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* Floating Buttons */
.floating-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.floating-button a:hover {
    transform: scale(1.1);
}

.floating-button i {
    font-size: 2rem;
}

.whatsapp-button {
    background-color: #25d366;
}

.call-button {
    background-color: #3498db;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
}

/* Mobil için uyumluluk */
@media (max-width: 768px) {
    .floating-button {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-button a {
        width: 50px;
        height: 50px;
    }
    
    .floating-button i {
        font-size: 1.5rem;
    }
}

/* Animasyonlar */
.animate-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Tasarım */
@media (max-width: 991px) {
    .container {
        padding: 0 15px;
    }

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

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

    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .service-card-detailed {
        grid-template-columns: 1fr;
    }
    
    .service-card-image {
        height: 300px;
    }

    .products-slider {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        margin: 0 auto;
    }
    
    section {
        width: 100%;
        box-sizing: border-box;
        padding-left: 0;
        padding-right: 0;
        overflow-x: hidden;
    }
    
    .hero .container {
        width: 100%;
        box-sizing: border-box;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .hero {
        width: 100%;
        overflow-x: hidden;
    }
    
    header {
        padding: 10px 0;
    }
    
    header .container {
        flex-wrap: wrap;
    }
    
    .logo {
        margin-bottom: 0;
        flex: 1;
    }
    
    .logo h1 {
        font-size: 1.4rem;
    }
    
    nav {
        justify-content: flex-end;
        width: auto;
        display: flex;
        align-items: center;
    }
    
    .menu {
        position: fixed;
        top: 60px;
        left: 0;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    body[data-theme="dark"] .menu {
        background-color: #1a1a1a;
    }
    
    .menu.active {
        transform: translateY(0);
    }
    
    .menu li {
        margin: 15px 0;
        text-align: center;
    }
    
    .hamburger {
        display: flex;
        z-index: 1000;
        margin-left: 15px;
    }
    
    .hamburger span {
        transition: all 0.3s ease;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .theme-switch-wrapper {
        position: relative;
        top: 0;
        right: 0;
        margin-right: 10px;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
        width: 100%;
    }
    
    .service-card-detailed {
        grid-template-columns: 1fr;
    }
    
    .service-card-image {
        height: 200px;
    }
    
    .features-container,
    .services-container,
    .testimonials-container {
        grid-template-columns: 1fr;
    }

    .products-slider {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
    }

    .product-card {
        flex: 0 0 85%;
    }
    
    .service-features,
    .service-benefits {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links h3::after,
    .footer-services h3::after,
    .footer-social h3::after,
    .footer-locations h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

@media (max-width: 480px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        width: 100%;
        overflow-x: hidden;
    }
    
    .hero .container {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }
    
    .popup-overlay {
        left: 0;
        right: 0;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    .popup-container {
        width: 95%;
        max-width: 350px;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    /* Düğmeler için düzeltmeler */
    .cta-buttons {
        width: 100%;
        box-sizing: border-box;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
}

/* Sayfa Yükleme Animasyonu */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

body[data-theme="dark"] .loader-wrapper {
    background-color: #1a1a1a;
}

.loader {
    width: 60px;
    height: 60px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Popup Stili */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    backdrop-filter: blur(5px);
}

/* Active sınıfı eklendiğinde görünürlük ayarları */
.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    width: 90%;
    max-width: 500px;
    transform: translateY(20px);
    transition: all 0.3s ease-out;
    overflow: hidden;
    box-sizing: border-box;
}

/* Active sınıfı eklendiğinde animasyon */
.popup-overlay.active .popup-container {
    transform: translateY(0);
}

/* Popup içerik stilleri */
.popup-content {
    padding: 25px;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.2s ease;
}

.popup-close:hover {
    background-color: #e74c3c;
    color: white;
    transform: rotate(90deg);
}

.popup-header {
    margin-bottom: 15px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.popup-title {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 8px;
    line-height: 1.3;
}

.popup-subtitle {
    font-size: 16px;
    color: #444;
    font-weight: 500;
}

.popup-body {
    padding: 5px 0 15px;
}

.popup-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.popup-text strong {
    color: #e74c3c;
    font-weight: 700;
}

/* Discount badge */
.discount-badge-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #e74c3c;
    color: white;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    vertical-align: middle;
}

/* Countdown container */
.countdown-container {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    gap: 10px;
}

.countdown-item {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 12px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.countdown-number {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
}

/* CTA Butonu stilini güncelle */
.popup-cta {
    margin-top: 20px;
}

.popup-cta .btn {
    width: 100%;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    background-color: #0066cc;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 102, 204, 0.2);
    text-transform: uppercase;
    border: none;
}

.popup-cta .btn:hover {
    background-color: #0055aa;
    box-shadow: 0 6px 15px rgba(0, 102, 204, 0.3);
}

/* Popup kapatma animasyonu */
.popup-overlay.closing {
    opacity: 0;
}

.popup-overlay.closing .popup-container {
    transform: translateY(20px);
}

/* Dark mode uyarlamaları */
body[data-theme="dark"] .popup-container {
    background-color: #222;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-theme="dark"] .popup-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-theme="dark"] .popup-title {
    color: #4a90e2;
}

body[data-theme="dark"] .popup-subtitle {
    color: #ddd;
}

body[data-theme="dark"] .popup-text {
    color: #ccc;
}

body[data-theme="dark"] .countdown-item {
    background-color: #333;
    border-color: #444;
}

body[data-theme="dark"] .countdown-number {
    color: #4a90e2;
}

body[data-theme="dark"] .countdown-label {
    color: #bbb;
}

body[data-theme="dark"] .popup-close {
    background-color: #333;
    color: #ddd;
}

/* Responsive ayarlar */
@media (max-width: 480px) {
    .popup-container {
        width: 95%;
        max-width: 380px;
    }
    
    .popup-content {
        padding: 20px 15px;
    }
    
    .popup-title {
        font-size: 20px;
    }
    
    .popup-subtitle {
        font-size: 14px;
    }
    
    .countdown-item {
        padding: 10px 5px;
    }
    
    .countdown-number {
        font-size: 20px;
    }
    
    .countdown-label {
        font-size: 10px;
    }
    
    .popup-text {
        font-size: 14px;
        margin-bottom: 15px;
    }
}

/* Torbalı Özel Bölümü Stili */
.torbali-special {
    padding: 70px 0;
    background-color: rgba(230, 126, 34, 0.05);
}

body[data-theme="dark"] .torbali-special {
    background-color: rgba(243, 156, 18, 0.05);
}

.torbali-neighborhoods {
    margin-top: 40px;
    text-align: center;
}

.torbali-neighborhoods h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.torbali-neighborhoods h3::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.neighborhoods-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.neighborhood {
    background-color: #fff;
    color: var(--text-color);
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

body[data-theme="dark"] .neighborhood {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.neighborhood:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    background-color: var(--accent-color);
    color: white;
}

@media (max-width: 768px) {
    .neighborhoods-container {
        gap: 10px;
    }
    
    .neighborhood {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/* Service Card CTA Buttons Stili */
.service-card-content .cta-buttons {
    margin-top: auto;
    display: flex;
    gap: 15px;
}

/* Neden Bizi Tercih Etmelisiniz Bölümü */
.why-choose-us {
    background-color: #f9f9f9;
    position: relative;
    overflow: visible;
    z-index: 1;
}

body[data-theme="dark"] .why-choose-us {
    background-color: #1f2937;
}

.why-choose-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 102, 204, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

body[data-theme="dark"] .why-choose-us::before {
    background: radial-gradient(circle at center, rgba(74, 144, 226, 0.05) 0%, rgba(31, 41, 55, 0) 70%);
}

.why-choose-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.why-choose-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

body[data-theme="dark"] .feature-item {
    background-color: #2d3748;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

body[data-theme="dark"] .feature-item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.feature-item:hover::after {
    width: 100%;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    background-color: var(--accent-color);
}

.feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 600;
}

body[data-theme="dark"] .feature-content h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

body[data-theme="dark"] .feature-content p {
    color: var(--text-secondary);
}

.cta-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    position: relative;
    z-index: 50;
}

.cta-container .btn {
    position: relative;
    z-index: 50;
    cursor: pointer;
    pointer-events: auto;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-title {
        font-size: 2rem;
    }
    
    .why-choose-subtitle {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 20px;
    }
}

@keyframes popupFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
}

/* Daha küçük mobil ekranlar için ek düzeltmeler */
@media (max-width: 360px) {
    .popup-container {
        width: 95%;
        max-width: 300px;
    }
    
    .popup-title {
        font-size: 1.1rem;
    }
    
    .popup-subtitle {
        font-size: 0.8rem;
    }
    
    .countdown-number {
        font-size: 1rem;
    }
    
    .countdown-label {
        font-size: 0.55rem;
    }
    
    .discount-badge-inline {
        font-size: 0.75rem;
        padding: 2px 5px;
    }
}

/* Hizmetler Sidebar Stili */
.services-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(to right, rgba(0, 102, 204, 0.95), rgba(0, 102, 204, 0.85));
    padding: 15px;
    border-radius: 0 15px 15px 0;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 220px;
    max-width: 80%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateY(-50%) translateX(-100%);
}

.services-sidebar.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.sidebar-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: center;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-link {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.sidebar-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 0 2px 2px 0;
    transition: all 0.3s ease;
    opacity: 0;
}

.sidebar-link:hover, .sidebar-link.active {
    background-color: rgba(255, 255, 255, 0.15);
}

.sidebar-link:hover::before, .sidebar-link.active::before {
    opacity: 1;
}

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

.sidebar-link.active {
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.sidebar-toggle {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 102, 204, 0.9);
    width: 30px;
    height: 40px;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sidebar-toggle:hover {
    background-color: rgba(0, 102, 204, 1);
}

.sidebar-toggle i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.services-sidebar.collapsed {
    transform: translateY(-50%) translateX(-100%);
}

.services-sidebar.collapsed .sidebar-toggle i {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .services-sidebar {
        width: 180px;
        padding: 12px;
    }
    
    .sidebar-title {
        font-size: 1rem;
    }
    
    .sidebar-link {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .services-sidebar {
        display: none;
    }
}

/* Ürün kartı hover class'ı */
.product-card.hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-card.hover .product-card-icon {
    background-color: var(--primary-color);
}

.product-card.hover .product-card-icon i {
    color: #fff;
}

body[data-theme="dark"] .primary-btn {
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

body[data-theme="dark"] .primary-btn:hover {
    background-color: #3a84d9;
    box-shadow: 0 6px 16px rgba(74, 144, 226, 0.4);
}

/* Footer başlıkları düzeltme */
body[data-theme="dark"] .footer-logo h2,
body[data-theme="dark"] .footer-links h3,
body[data-theme="dark"] .footer-services h3,
body[data-theme="dark"] .footer-locations h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Service kart içindeki başlıklar */
body[data-theme="dark"] .service-feature span,
body[data-theme="dark"] .benefit span {
    color: var(--text-secondary);
}

/* Feature kartları başlık ve metinleri */
body[data-theme="dark"] .feature-box h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

body[data-theme="dark"] .feature-box p {
    color: var(--text-secondary);
}

/* İletişim bilgisi ikonlarının dark mode düzenlemesi */
body[data-theme="dark"] .info-item i {
    color: rgba(255, 255, 255, 0.9);
}

body[data-theme="dark"] .info-item h3 {
    color: var(--heading-dark);
}

body[data-theme="dark"] .info-item p,
body[data-theme="dark"] .info-item a {
    color: var(--text-secondary);
}

/* Footer linkleri iyileştirme */
body[data-theme="dark"] .footer-links a,
body[data-theme="dark"] .footer-services a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

body[data-theme="dark"] .footer-links a:hover,
body[data-theme="dark"] .footer-services a:hover {
    color: var(--primary-color);
}

/* Tüm mobil görünüm düzeltmeleri */
html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        margin: 0 auto;
    }
    
    section {
        width: 100%;
        box-sizing: border-box;
        padding-left: 0;
        padding-right: 0;
    }
    
    .hero .container {
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .hero .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .popup-overlay {
        left: 0;
        right: 0;
        width: 100%;
    }
    
    .popup-container {
        width: 92%;
        max-width: 330px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
    
    /* Düğmeler için düzeltmeler */
    .cta-buttons {
        width: 100%;
        box-sizing: border-box;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
}

/* Torbalı Showcase Bölümü Stilleri */
.torbali-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-bg, #f8f9fa) 0%, var(--secondary-light-bg, #e9ecef) 100%);
    position: relative;
    overflow: hidden;
}

body[data-theme="dark"] .torbali-showcase {
    background: linear-gradient(135deg, var(--dark-bg, #212529) 0%, var(--secondary-dark-bg, #343a40) 100%);
}

.torbali-showcase::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(52, 152, 219, 0.1);
    top: -150px;
    left: -150px;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.torbali-showcase::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.1);
    bottom: -200px;
    right: -200px;
    z-index: 1;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.torbali-showcase .container {
    position: relative;
    z-index: 2;
}

.torbali-showcase-content {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--card-bg, #fff);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

body[data-theme="dark"] .torbali-showcase-content {
    background: var(--card-dark-bg, #2a3441);
}

.torbali-showcase-image {
    flex: 1;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.showcase-badge {
    position: absolute;
    top: 20px;
    right: 0;
    background-color: #25d366;
    color: white;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px 0 0 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
}

.torbali-showcase-content:hover .showcase-image {
    transform: scale(1.05);
}

.torbali-showcase-info {
    flex: 1;
    padding: 40px;
}

.torbali-showcase-info h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--heading-color, #333);
    position: relative;
    padding-bottom: 15px;
}

body[data-theme="dark"] .torbali-showcase-info h2 {
    color: var(--heading-color-dark, #fff);
}

.torbali-showcase-info h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-color, #3498db);
    border-radius: 3px;
}

.torbali-showcase-info p {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color, #666);
}

body[data-theme="dark"] .torbali-showcase-info p {
    color: var(--text-color-dark, #b3b3b3);
}

.torbali-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-item i {
    color: var(--accent-color, #2ecc71);
    font-size: 16px;
    width: 25px;
    height: 25px;
    background: rgba(46, 204, 113, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

body[data-theme="dark"] .benefit-item i {
    background: rgba(46, 204, 113, 0.2);
}

.benefit-item span {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color, #666);
}

body[data-theme="dark"] .benefit-item span {
    color: var(--text-color-dark, #b3b3b3);
}

.torbali-cta {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.torbali-cta .btn {
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.torbali-cta .primary-btn {
    background: var(--primary-color, #3498db);
    color: white;
    border: none;
}

.torbali-cta .primary-btn:hover {
    background: var(--primary-color-hover, #2980b9);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.torbali-cta .secondary-btn {
    background: transparent;
    color: var(--primary-color, #3498db);
    border: 1px solid var(--primary-color, #3498db);
}

.torbali-cta .secondary-btn:hover {
    background: rgba(52, 152, 219, 0.1);
    transform: translateY(-3px);
}

/* Responsive Design for Torbalı Showcase */
@media (max-width: 992px) {
    .torbali-showcase-content {
        flex-direction: column;
    }
    
    .torbali-showcase-image {
        width: 100%;
        min-height: 300px;
    }
    
    .torbali-showcase-info {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .torbali-benefits {
        grid-template-columns: 1fr;
    }
    
    .torbali-showcase-info h2 {
        font-size: 24px;
    }
    
    .torbali-showcase-info p {
        font-size: 15px;
    }
    
    .torbali-cta {
        flex-direction: column;
    }
}

/* Torbalı Kartları Stilleri */
.torbali-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.torbali-card {
    background: var(--card-bg, #fff);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-top: 4px solid var(--primary-color, #3498db);
}

body[data-theme="dark"] .torbali-card {
    background: var(--card-dark-bg, #2a3441);
    border-top: 4px solid var(--primary-color, #3498db);
}

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

.torbali-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.torbali-card:hover .torbali-card-img {
    transform: scale(1.05);
}

.torbali-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.torbali-card-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--heading-color, #333);
}

body[data-theme="dark"] .torbali-card-content h3 {
    color: var(--heading-color-dark, #fff);
}

.torbali-card-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color, #666);
}

body[data-theme="dark"] .torbali-card-content p {
    color: var(--text-color-dark, #b3b3b3);
}

@media (max-width: 992px) {
    .torbali-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .torbali-cards {
        grid-template-columns: 1fr;
    }
}

/* Ürünler Sayfası Stil Tanımlamaları */
.products-page {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-color-light) 0%, var(--bg-color-light-2) 100%);
}

body[data-theme="dark"] .products-page {
    background: linear-gradient(135deg, var(--bg-color-dark) 0%, var(--bg-color-dark-2) 100%);
}

.product-category-nav {
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    padding: 15px;
    position: sticky;
    top: 80px;
    z-index: 10;
    transition: all 0.3s ease;
}

body[data-theme="dark"] .product-category-nav {
    background: var(--card-bg-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.product-category-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.product-category-nav li a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

body[data-theme="dark"] .product-category-nav li a {
    color: var(--text-color-dark);
}

.product-category-nav li a:hover,
.product-category-nav li a.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.product-category-nav li a i {
    font-size: 12px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.product-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

body[data-theme="dark"] .product-item {
    background: #2f3b4d;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.product-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    z-index: 5;
}

.product-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background-color: #ffffff;
    border-radius: 0 0 12px 12px;
}

body[data-theme="dark"] .product-content {
    background-color: #2a3441;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 10px;
}

body[data-theme="dark"] .product-title {
    color: var(--heading-color-dark);
}

.product-description {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.5;
    flex: 1;
}

body[data-theme="dark"] .product-description {
    color: var(--text-color-dark);
}

.product-features {
    margin-bottom: 15px;
}

.product-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    font-size: 13px;
}

.product-feature i {
    color: var(--primary-color);
    font-size: 12px;
}

.product-feature span {
    color: var(--text-color);
}

body[data-theme="dark"] .product-feature span {
    color: var(--text-color-dark);
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.btn-product-detail {
    flex: 1;
    padding: 10px 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-product-detail:hover {
    background: var(--primary-color-dark);
    transform: translateY(-3px);
}

.btn-product-whatsapp {
    padding: 10px 15px;
    background: #25d366;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-product-whatsapp:hover {
    background: #1da851;
    transform: translateY(-3px);
}

/* Ürün Detay Sayfası */
.product-detail-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-color-light) 0%, var(--bg-color-light-2) 100%);
}

body[data-theme="dark"] .product-detail-section {
    background: linear-gradient(135deg, var(--bg-color-dark) 0%, var(--bg-color-dark-2) 100%);
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.product-gallery {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

body[data-theme="dark"] .product-gallery {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-main-image {
    height: 400px;
    overflow: hidden;
}

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

.product-thumbnails {
    display: flex;
    gap: 10px;
    padding: 15px;
    background: var(--white-color);
}

body[data-theme="dark"] .product-thumbnails {
    background: var(--card-bg-dark);
}

.product-thumb {
    height: 80px;
    width: 80px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.product-thumb.active,
.product-thumb:hover {
    opacity: 1;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 20px;
    background: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body[data-theme="dark"] .product-info {
    background: var(--card-bg-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-info-title {
    font-size: 26px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

body[data-theme="dark"] .product-info-title {
    color: var(--heading-color-dark);
    border-bottom: 1px solid var(--border-color-dark);
}

.product-info-description {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

body[data-theme="dark"] .product-info-description {
    color: var(--text-color-dark);
}

.product-info-features {
    margin-bottom: 20px;
}

.product-info-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.product-info-feature i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
}

.product-info-feature span {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.5;
}

body[data-theme="dark"] .product-info-feature span {
    color: var(--text-color-dark);
}

.product-cta {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.btn-request-quote {
    flex: 1;
    padding: 12px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-request-quote:hover {
    background: var(--primary-color-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.btn-call-now {
    padding: 12px 20px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-call-now:hover {
    background: rgba(52, 152, 219, 0.1);
    transform: translateY(-3px);
}

.product-tabs {
    margin-top: 40px;
}

.tab-buttons {
    display: flex;
    gap: 5px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

body[data-theme="dark"] .tab-buttons {
    border-bottom: 1px solid var(--border-color-dark);
}

.tab-button {
    padding: 12px 25px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

body[data-theme="dark"] .tab-button {
    color: var(--text-color-dark);
}

.tab-button.active,
.tab-button:hover {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.tab-content {
    display: none;
    padding: 20px;
    background: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

body[data-theme="dark"] .tab-content {
    background: var(--card-bg-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: 20px;
    color: var(--heading-color);
    margin-bottom: 15px;
}

body[data-theme="dark"] .tab-content h3 {
    color: var(--heading-color-dark);
}

.tab-content p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 15px;
}

body[data-theme="dark"] .tab-content p {
    color: var(--text-color-dark);
}

.tab-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.tab-content ul li {
    margin-bottom: 8px;
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.5;
}

body[data-theme="dark"] .tab-content ul li {
    color: var(--text-color-dark);
}

.faq-item {
    margin-bottom: 15px;
    background: var(--bg-color-light);
    border-radius: 8px;
    overflow: hidden;
}

body[data-theme="dark"] .faq-item {
    background: var(--bg-color-dark);
}

.faq-question {
    position: relative;
    padding: 15px 20px;
    margin-bottom: 1px;
    background-color: #f8f9fa;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

body[data-theme="dark"] .faq-question {
    background-color: #2c3e50;
    color: #ecf0f1;
}

.faq-question:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    transition: all 0.3s ease;
    font-size: 18px;
    color: #3498db;
}

.faq-question.active {
    background-color: #e9f5ff;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

body[data-theme="dark"] .faq-question.active {
    background-color: #34495e;
}

.faq-question.active:after {
    transform: rotate(180deg);
}

.faq-answer { background-color: #fff; padding: 0; max-height: 0; overflow: hidden; transition: all 0.5s ease; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; margin-top: 0; margin-bottom: 0; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); opacity: 0; }

body[data-theme="dark"] .faq-answer { background-color: #fff; padding: 0; max-height: 0; overflow: hidden; transition: all 0.5s ease; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; margin-top: 0; margin-bottom: 0; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); opacity: 0; }

.faq-answer.active { padding: 20px; max-height: 300px; opacity: 1; margin-bottom: 10px; }

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

body[data-theme="dark"] .faq-answer p {
    color: #b3b3b3;
}

.related-products-section {
    padding: 60px 0;
    background: var(--bg-color-light-2);
}

body[data-theme="dark"] .related-products-section {
    background: var(--bg-color-dark-2);
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* Responsive tasarım için media queries */
@media (max-width: 992px) {
    .product-detail-container {
        grid-template-columns: 1fr;
    }
    
    .product-main-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .product-category-nav {
        padding: 10px;
        overflow-x: auto;
        white-space: nowrap;
        justify-content: flex-start;
    }
    
    .product-category-nav ul {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .product-main-image {
        height: 300px;
    }
    
    .product-thumbnails {
        overflow-x: auto;
    }
    
    .product-cta {
        flex-direction: column;
    }
    
    .tab-buttons {
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .tab-button {
        padding: 10px 15px;
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .product-main-image {
        height: 250px;
    }
    
    .product-thumb {
        height: 60px;
        width: 60px;
    }
    
    .product-info-title {
        font-size: 22px;
    }
}

/* Proje resimleri için ek düzenleme */
.projects.clear-images .gallery-item img {
    filter: none !important;
    opacity: 1 !important;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
} 

/* Proje Detay Modalı */
.project-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.project-modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 900px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.4s ease-out;
}

body[data-theme="dark"] .project-modal-content {
    background-color: #2a3441;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.project-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #333;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

body[data-theme="dark"] .project-modal-close {
    color: white;
    background: rgba(0, 0, 0, 0.3);
}

.project-modal-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

#projectModalTitle {
    margin-top: 5px;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

body[data-theme="dark"] #projectModalTitle {
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#projectModalImage {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

body[data-theme="dark"] #projectModalImage {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .project-modal {
        padding-top: 20px;
    }
    
    .project-modal-content {
        width: 95%;
        padding: 15px;
    }
    
    #projectModalTitle {
        font-size: 18px;
        margin-bottom: 15px;
    }
}

/* Müşteri Yorumları */
.testimonials {
    background-color: #fff;
}

body[data-theme="dark"] .testimonials {
    background-color: #1f1f1f;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

body[data-theme="dark"] .testimonial {
    background-color: rgba(42, 52, 65, 0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.quote {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
}

body[data-theme="dark"] .quote i {
    color: rgba(255, 255, 255, 0.1);
}

.testimonial p {
    margin-bottom: 20px;
    margin-top: 10px;
    position: relative;
    z-index: 2;
}

body[data-theme="dark"] .testimonial-text {
    color: var(--text-secondary);
}

.client {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.client-info h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

body[data-theme="dark"] .client-info h4 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.client-info p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

body[data-theme="dark"] .client-name {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

body[data-theme="dark"] .client-location {
    color: rgba(255, 255, 255, 0.7);
}

.rating {
    color: #f39c12;
}

body[data-theme="dark"] .rating i {
    color: #f39c12;
}

/* İletişim Bölümü */
.contact {
    background-color: #f9f9f9;
}

body[data-theme="dark"] .contact {
    background-color: #2a2a2a;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

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

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

body[data-theme="dark"] .info-item h3 {
    color: var(--heading-dark);
}

.contact-form {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

body[data-theme="dark"] .contact-form {
    background-color: var(--secondary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    background-color: #f9f9f9;
    transition: var(--transition);
}

body[data-theme="dark"] .form-group input,
body[data-theme="dark"] .form-group select,
body[data-theme="dark"] .form-group textarea {
    background-color: #333;
    border-color: #444;
    color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
}

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

/* CTA Bölümü */
.cta {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 0.9rem;
}

.footer-links h3,
.footer-services h3,
.footer-social h3,
.footer-locations h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-social h3::after,
.footer-locations h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-services a {
    color: #ddd;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-locations p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #ddd;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
}

.footer-bottom a {
    color: #ddd;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* Floating Buttons */
.floating-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.floating-button a:hover {
    transform: scale(1.1);
}

.floating-button i {
    font-size: 2rem;
}

.whatsapp-button {
    background-color: #25d366;
}

.call-button {
    background-color: #3498db;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
}

/* Mobil için uyumluluk */
@media (max-width: 768px) {
    .floating-button {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-button a {
        width: 50px;
        height: 50px;
    }
    
    .floating-button i {
        font-size: 1.5rem;
    }
}

/* Animasyonlar */
.animate-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Tasarım */
@media (max-width: 991px) {
    .container {
        padding: 0 15px;
    }

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

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

    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .service-card-detailed {
        grid-template-columns: 1fr;
    }
    
    .service-card-image {
        height: 300px;
    }

    .products-slider {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        margin: 0 auto;
    }
    
    section {
        width: 100%;
        box-sizing: border-box;
        padding-left: 0;
        padding-right: 0;
        overflow-x: hidden;
    }
    
    .hero .container {
        width: 100%;
        box-sizing: border-box;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .hero {
        width: 100%;
        overflow-x: hidden;
    }
    
    header {
        padding: 10px 0;
    }
    
    header .container {
        flex-wrap: wrap;
    }
    
    .logo {
        margin-bottom: 0;
        flex: 1;
    }
    
    .logo h1 {
        font-size: 1.4rem;
    }
    
    nav {
        justify-content: flex-end;
        width: auto;
        display: flex;
        align-items: center;
    }
    
    .menu {
        position: fixed;
        top: 60px;
        left: 0;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    body[data-theme="dark"] .menu {
        background-color: #1a1a1a;
    }
    
    .menu.active {
        transform: translateY(0);
    }
    
    .menu li {
        margin: 15px 0;
        text-align: center;
    }
    
    .hamburger {
        display: flex;
        z-index: 1000;
        margin-left: 15px;
    }
    
    .hamburger span {
        transition: all 0.3s ease;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .theme-switch-wrapper {
        position: relative;
        top: 0;
        right: 0;
        margin-right: 10px;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
        width: 100%;
    }
    
    .service-card-detailed {
        grid-template-columns: 1fr;
    }
    
    .service-card-image {
        height: 200px;
    }
    
    .features-container,
    .services-container,
    .testimonials-container {
        grid-template-columns: 1fr;
    }

    .products-slider {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
    }

    .product-card {
        flex: 0 0 85%;
    }
    
    .service-features,
    .service-benefits {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links h3::after,
    .footer-services h3::after,
    .footer-social h3::after,
    .footer-locations h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

@media (max-width: 480px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        width: 100%;
        overflow-x: hidden;
    }
    
    .hero .container {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }
    
    .popup-overlay {
        left: 0;
        right: 0;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    .popup-container {
        width: 95%;
        max-width: 350px;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    /* Düğmeler için düzeltmeler */
    .cta-buttons {
        width: 100%;
        box-sizing: border-box;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
}

/* Sayfa Yükleme Animasyonu */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

body[data-theme="dark"] .loader-wrapper {
    background-color: #1a1a1a;
}

.loader {
    width: 60px;
    height: 60px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Popup Stili */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    backdrop-filter: blur(5px);
}

/* Active sınıfı eklendiğinde görünürlük ayarları */
.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    width: 90%;
    max-width: 500px;
    transform: translateY(20px);
    transition: all 0.3s ease-out;
    overflow: hidden;
    box-sizing: border-box;
}

/* Active sınıfı eklendiğinde animasyon */
.popup-overlay.active .popup-container {
    transform: translateY(0);
}

/* Popup içerik stilleri */
.popup-content {
    padding: 25px;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.2s ease;
}

.popup-close:hover {
    background-color: #e74c3c;
    color: white;
    transform: rotate(90deg);
}

.popup-header {
    margin-bottom: 15px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.popup-title {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 8px;
    line-height: 1.3;
}

.popup-subtitle {
    font-size: 16px;
    color: #444;
    font-weight: 500;
}

.popup-body {
    padding: 5px 0 15px;
}

.popup-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.popup-text strong {
    color: #e74c3c;
    font-weight: 700;
}

/* Discount badge */
.discount-badge-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #e74c3c;
    color: white;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    vertical-align: middle;
}

/* Countdown container */
.countdown-container {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    gap: 10px;
}

.countdown-item {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 12px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.countdown-number {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
}

/* CTA Butonu stilini güncelle */
.popup-cta {
    margin-top: 20px;
}

.popup-cta .btn {
    width: 100%;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    background-color: #0066cc;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 102, 204, 0.2);
    text-transform: uppercase;
    border: none;
}

.popup-cta .btn:hover {
    background-color: #0055aa;
    box-shadow: 0 6px 15px rgba(0, 102, 204, 0.3);
}

/* Popup kapatma animasyonu */
.popup-overlay.closing {
    opacity: 0;
}

.popup-overlay.closing .popup-container {
    transform: translateY(20px);
}

/* Dark mode uyarlamaları */
body[data-theme="dark"] .popup-container {
    background-color: #222;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-theme="dark"] .popup-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-theme="dark"] .popup-title {
    color: #4a90e2;
}

body[data-theme="dark"] .popup-subtitle {
    color: #ddd;
}

body[data-theme="dark"] .popup-text {
    color: #ccc;
}

body[data-theme="dark"] .countdown-item {
    background-color: #333;
    border-color: #444;
}

body[data-theme="dark"] .countdown-number {
    color: #4a90e2;
}

body[data-theme="dark"] .countdown-label {
    color: #bbb;
}

body[data-theme="dark"] .popup-close {
    background-color: #333;
    color: #ddd;
}

/* Responsive ayarlar */
@media (max-width: 480px) {
    .popup-container {
        width: 95%;
        max-width: 380px;
    }
    
    .popup-content {
        padding: 20px 15px;
    }
    
    .popup-title {
        font-size: 20px;
    }
    
    .popup-subtitle {
        font-size: 14px;
    }
    
    .countdown-item {
        padding: 10px 5px;
    }
    
    .countdown-number {
        font-size: 20px;
    }
    
    .countdown-label {
        font-size: 10px;
    }
    
    .popup-text {
        font-size: 14px;
        margin-bottom: 15px;
    }
}

/* Torbalı Özel Bölümü Stili */
.torbali-special {
    padding: 70px 0;
    background-color: rgba(230, 126, 34, 0.05);
}

body[data-theme="dark"] .torbali-special {
    background-color: rgba(243, 156, 18, 0.05);
}

.torbali-neighborhoods {
    margin-top: 40px;
    text-align: center;
}

.torbali-neighborhoods h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.torbali-neighborhoods h3::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.neighborhoods-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.neighborhood {
    background-color: #fff;
    color: var(--text-color);
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

body[data-theme="dark"] .neighborhood {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.neighborhood:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    background-color: var(--accent-color);
    color: white;
}

@media (max-width: 768px) {
    .neighborhoods-container {
        gap: 10px;
    }
    
    .neighborhood {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/* Service Card CTA Buttons Stili */
.service-card-content .cta-buttons {
    margin-top: auto;
    display: flex;
    gap: 15px;
}

/* Neden Bizi Tercih Etmelisiniz Bölümü */
.why-choose-us {
    background-color: #f9f9f9;
    position: relative;
    overflow: visible;
    z-index: 1;
}

body[data-theme="dark"] .why-choose-us {
    background-color: #1f2937;
}

.why-choose-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 102, 204, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

body[data-theme="dark"] .why-choose-us::before {
    background: radial-gradient(circle at center, rgba(74, 144, 226, 0.05) 0%, rgba(31, 41, 55, 0) 70%);
}

.why-choose-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.why-choose-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

body[data-theme="dark"] .feature-item {
    background-color: #2d3748;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

body[data-theme="dark"] .feature-item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.feature-item:hover::after {
    width: 100%;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    background-color: var(--accent-color);
}

.feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 600;
}

body[data-theme="dark"] .feature-content h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

body[data-theme="dark"] .feature-content p {
    color: var(--text-secondary);
}

.cta-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    position: relative;
    z-index: 50;
}

.cta-container .btn {
    position: relative;
    z-index: 50;
    cursor: pointer;
    pointer-events: auto;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-title {
        font-size: 2rem;
    }
    
    .why-choose-subtitle {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 20px;
    }
}

@keyframes popupFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
}

/* Daha küçük mobil ekranlar için ek düzeltmeler */
@media (max-width: 360px) {
    .popup-container {
        width: 95%;
        max-width: 300px;
    }
    
    .popup-title {
        font-size: 1.1rem;
    }
    
    .popup-subtitle {
        font-size: 0.8rem;
    }
    
    .countdown-number {
        font-size: 1rem;
    }
    
    .countdown-label {
        font-size: 0.55rem;
    }
    
    .discount-badge-inline {
        font-size: 0.75rem;
        padding: 2px 5px;
    }
}

/* Hizmetler Sidebar Stili */
.services-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(to right, rgba(0, 102, 204, 0.95), rgba(0, 102, 204, 0.85));
    padding: 15px;
    border-radius: 0 15px 15px 0;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 220px;
    max-width: 80%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateY(-50%) translateX(-100%);
}

.services-sidebar.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.sidebar-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: center;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-link {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.sidebar-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 0 2px 2px 0;
    transition: all 0.3s ease;
    opacity: 0;
}

.sidebar-link:hover, .sidebar-link.active {
    background-color: rgba(255, 255, 255, 0.15);
}

.sidebar-link:hover::before, .sidebar-link.active::before {
    opacity: 1;
}

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

.sidebar-link.active {
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.sidebar-toggle {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 102, 204, 0.9);
    width: 30px;
    height: 40px;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sidebar-toggle:hover {
    background-color: rgba(0, 102, 204, 1);
}

.sidebar-toggle i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.services-sidebar.collapsed {
    transform: translateY(-50%) translateX(-100%);
}

.services-sidebar.collapsed .sidebar-toggle i {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .services-sidebar {
        width: 180px;
        padding: 12px;
    }
    
    .sidebar-title {
        font-size: 1rem;
    }
    
    .sidebar-link {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .services-sidebar {
        display: none;
    }
}

/* Ürün kartı hover class'ı */
.product-card.hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-card.hover .product-card-icon {
    background-color: var(--primary-color);
}

.product-card.hover .product-card-icon i {
    color: #fff;
}

body[data-theme="dark"] .primary-btn {
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

body[data-theme="dark"] .primary-btn:hover {
    background-color: #3a84d9;
    box-shadow: 0 6px 16px rgba(74, 144, 226, 0.4);
}

/* Footer başlıkları düzeltme */
body[data-theme="dark"] .footer-logo h2,
body[data-theme="dark"] .footer-links h3,
body[data-theme="dark"] .footer-services h3,
body[data-theme="dark"] .footer-locations h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Service kart içindeki başlıklar */
body[data-theme="dark"] .service-feature span,
body[data-theme="dark"] .benefit span {
    color: var(--text-secondary);
}

/* Feature kartları başlık ve metinleri */
body[data-theme="dark"] .feature-box h3 {
    color: var(--heading-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

body[data-theme="dark"] .feature-box p {
    color: var(--text-secondary);
}

/* İletişim bilgisi ikonlarının dark mode düzenlemesi */
body[data-theme="dark"] .info-item i {
    color: rgba(255, 255, 255, 0.9);
}

body[data-theme="dark"] .info-item h3 {
    color: var(--heading-dark);
}

body[data-theme="dark"] .info-item p,
body[data-theme="dark"] .info-item a {
    color: var(--text-secondary);
}

/* Footer linkleri iyileştirme */
body[data-theme="dark"] .footer-links a,
body[data-theme="dark"] .footer-services a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

body[data-theme="dark"] .footer-links a:hover,
body[data-theme="dark"] .footer-services a:hover {
    color: var(--primary-color);
}

/* Tüm mobil görünüm düzeltmeleri */
html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        margin: 0 auto;
    }
    
    section {
        width: 100%;
        box-sizing: border-box;
        padding-left: 0;
        padding-right: 0;
    }
    
    .hero .container {
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .hero .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .popup-overlay {
        left: 0;
        right: 0;
        width: 100%;
    }
    
    .popup-container {
        width: 92%;
        max-width: 330px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
    
    /* Düğmeler için düzeltmeler */
    .cta-buttons {
        width: 100%;
        box-sizing: border-box;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
}

/* Torbalı Showcase Bölümü Stilleri */
.torbali-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-bg, #f8f9fa) 0%, var(--secondary-light-bg, #e9ecef) 100%);
    position: relative;
    overflow: hidden;
}

body[data-theme="dark"] .torbali-showcase {
    background: linear-gradient(135deg, var(--dark-bg, #212529) 0%, var(--secondary-dark-bg, #343a40) 100%);
}

.torbali-showcase::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(52, 152, 219, 0.1);
    top: -150px;
    left: -150px;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.torbali-showcase::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.1);
    bottom: -200px;
    right: -200px;
    z-index: 1;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.torbali-showcase .container {
    position: relative;
    z-index: 2;
}

.torbali-showcase-content {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--card-bg, #fff);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

body[data-theme="dark"] .torbali-showcase-content {
    background: var(--card-dark-bg, #2a3441);
}

.torbali-showcase-image {
    flex: 1;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.showcase-badge {
    position: absolute;
    top: 20px;
    right: 0;
    background-color: #25d366;
    color: white;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px 0 0 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
}

.torbali-showcase-content:hover .showcase-image {
    transform: scale(1.05);
}

.torbali-showcase-info {
    flex: 1;
    padding: 40px;
}

.torbali-showcase-info h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--heading-color, #333);
    position: relative;
    padding-bottom: 15px;
}

body[data-theme="dark"] .torbali-showcase-info h2 {
    color: var(--heading-color-dark, #fff);
}

.torbali-showcase-info h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-color, #3498db);
    border-radius: 3px;
}

.torbali-showcase-info p {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color, #666);
}

body[data-theme="dark"] .torbali-showcase-info p {
    color: var(--text-color-dark, #b3b3b3);
}

.torbali-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-item i {
    color: var(--accent-color, #2ecc71);
    font-size: 16px;
    width: 25px;
    height: 25px;
    background: rgba(46, 204, 113, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

body[data-theme="dark"] .benefit-item i {
    background: rgba(46, 204, 113, 0.2);
}

.benefit-item span {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color, #666);
}

body[data-theme="dark"] .benefit-item span {
    color: var(--text-color-dark, #b3b3b3);
}

.torbali-cta {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.torbali-cta .btn {
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.torbali-cta .primary-btn {
    background: var(--primary-color, #3498db);
    color: white;
    border: none;
}

.torbali-cta .primary-btn:hover {
    background: var(--primary-color-hover, #2980b9);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.torbali-cta .secondary-btn {
    background: transparent;
    color: var(--primary-color, #3498db);
    border: 1px solid var(--primary-color, #3498db);
}

.torbali-cta .secondary-btn:hover {
    background: rgba(52, 152, 219, 0.1);
    transform: translateY(-3px);
}

/* Responsive Design for Torbalı Showcase */
@media (max-width: 992px) {
    .torbali-showcase-content {
        flex-direction: column;
    }
    
    .torbali-showcase-image {
        width: 100%;
        min-height: 300px;
    }
    
    .torbali-showcase-info {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .torbali-benefits {
        grid-template-columns: 1fr;
    }
    
    .torbali-showcase-info h2 {
        font-size: 24px;
    }
    
    .torbali-showcase-info p {
        font-size: 15px;
    }
    
    .torbali-cta {
        flex-direction: column;
    }
}

/* Torbalı Kartları Stilleri */
.torbali-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.torbali-card {
    background: var(--card-bg, #fff);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-top: 4px solid var(--primary-color, #3498db);
}

body[data-theme="dark"] .torbali-card {
    background: var(--card-dark-bg, #2a3441);
    border-top: 4px solid var(--primary-color, #3498db);
}

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

.torbali-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.torbali-card:hover .torbali-card-img {
    transform: scale(1.05);
}

.torbali-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.torbali-card-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--heading-color, #333);
}

body[data-theme="dark"] .torbali-card-content h3 {
    color: var(--heading-color-dark, #fff);
}

.torbali-card-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color, #666);
}

body[data-theme="dark"] .torbali-card-content p {
    color: var(--text-color-dark, #b3b3b3);
}

@media (max-width: 992px) {
    .torbali-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .torbali-cards {
        grid-template-columns: 1fr;
    }
}

/* Ürünler Sayfası Stil Tanımlamaları */
.products-page {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-color-light) 0%, var(--bg-color-light-2) 100%);
}

body[data-theme="dark"] .products-page {
    background: linear-gradient(135deg, var(--bg-color-dark) 0%, var(--bg-color-dark-2) 100%);
}

.product-category-nav {
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    padding: 15px;
    position: sticky;
    top: 80px;
    z-index: 10;
    transition: all 0.3s ease;
}

body[data-theme="dark"] .product-category-nav {
    background: var(--card-bg-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.product-category-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.product-category-nav li a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

body[data-theme="dark"] .product-category-nav li a {
    color: var(--text-color-dark);
}

.product-category-nav li a:hover,
.product-category-nav li a.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.product-category-nav li a i {
    font-size: 12px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.product-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

body[data-theme="dark"] .product-item {
    background: #2f3b4d;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.product-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    z-index: 5;
}

.product-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background-color: #ffffff;
    border-radius: 0 0 12px 12px;
}

body[data-theme="dark"] .product-content {
    background-color: #2a3441;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 10px;
}

body[data-theme="dark"] .product-title {
    color: var(--heading-color-dark);
}

.product-description {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.5;
    flex: 1;
}

body[data-theme="dark"] .product-description {
    color: var(--text-color-dark);
}

.product-features {
    margin-bottom: 15px;
}

.product-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    font-size: 13px;
}

.product-feature i {
    color: var(--primary-color);
    font-size: 12px;
}

.product-feature span {
    color: var(--text-color);
}

body[data-theme="dark"] .product-feature span {
    color: var(--text-color-dark);
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.btn-product-detail {
    flex: 1;
    padding: 10px 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-product-detail:hover {
    background: var(--primary-color-dark);
    transform: translateY(-3px);
}

.btn-product-whatsapp {
    padding: 10px 15px;
    background: #25d366;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-product-whatsapp:hover {
    background: #1da851;
    transform: translateY(-3px);
}

/* Ürün Detay Sayfası */
.product-detail-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-color-light) 0%, var(--bg-color-light-2) 100%);
}

body[data-theme="dark"] .product-detail-section {
    background: linear-gradient(135deg, var(--bg-color-dark) 0%, var(--bg-color-dark-2) 100%);
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.product-gallery {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

body[data-theme="dark"] .product-gallery {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-main-image {
    height: 400px;
    overflow: hidden;
}

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

.product-thumbnails {
    display: flex;
    gap: 10px;
    padding: 15px;
    background: var(--white-color);
}

body[data-theme="dark"] .product-thumbnails {
    background: var(--card-bg-dark);
}

.product-thumb {
    height: 80px;
    width: 80px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.product-thumb.active,
.product-thumb:hover {
    opacity: 1;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 20px;
    background: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body[data-theme="dark"] .product-info {
    background: var(--card-bg-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-info-title {
    font-size: 26px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

body[data-theme="dark"] .product-info-title {
    color: var(--heading-color-dark);
    border-bottom: 1px solid var(--border-color-dark);
}

.product-info-description {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

body[data-theme="dark"] .product-info-description {
    color: var(--text-color-dark);
}

.product-info-features {
    margin-bottom: 20px;
}

.product-info-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.product-info-feature i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
}

.product-info-feature span {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.5;
}

body[data-theme="dark"] .product-info-feature span {
    color: var(--text-color-dark);
}

.product-cta {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.btn-request-quote {
    flex: 1;
    padding: 12px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-request-quote:hover {
    background: var(--primary-color-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.btn-call-now {
    padding: 12px 20px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-call-now:hover {
    background: rgba(52, 152, 219, 0.1);
    transform: translateY(-3px);
}

.product-tabs {
    margin-top: 40px;
}

.tab-buttons {
    display: flex;
    gap: 5px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

body[data-theme="dark"] .tab-buttons {
    border-bottom: 1px solid var(--border-color-dark);
}

.tab-button {
    padding: 12px 25px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

body[data-theme="dark"] .tab-button {
    color: var(--text-color-dark);
}

.tab-button.active,
.tab-button:hover {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.tab-content {
    display: none;
    padding: 20px;
    background: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

body[data-theme="dark"] .tab-content {
    background: var(--card-bg-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: 20px;
    color: var(--heading-color);
    margin-bottom: 15px;
}

body[data-theme="dark"] .tab-content h3 {
    color: var(--heading-color-dark);
}

.tab-content p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 15px;
}

body[data-theme="dark"] .tab-content p {
    color: var(--text-color-dark);
}

.tab-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.tab-content ul li {
    margin-bottom: 8px;
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.5;
}

body[data-theme="dark"] .tab-content ul li {
    color: var(--text-color-dark);
}

.faq-item {
    margin-bottom: 15px;
    background: var(--bg-color-light);
    border-radius: 8px;
    overflow: hidden;
}

body[data-theme="dark"] .faq-item {
    background: var(--bg-color-dark);
}

.faq-question {
    position: relative;
    padding: 15px 20px;
    margin-bottom: 1px;
    background-color: #f8f9fa;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

body[data-theme="dark"] .faq-question {
    background-color: #2c3e50;
    color: #ecf0f1;
}

.faq-question:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    transition: all 0.3s ease;
    font-size: 18px;
    color: #3498db;
}

.faq-question.active {
    background-color: #e9f5ff;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

body[data-theme="dark"] .faq-question.active {
    background-color: #34495e;
}

.faq-question.active:after {
    transform: rotate(180deg);
}

.faq-answer { background-color: #fff; padding: 0; max-height: 0; overflow: hidden; transition: all 0.5s ease; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; margin-top: 0; margin-bottom: 0; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); opacity: 0; }

body[data-theme="dark"] .faq-answer { background-color: #fff; padding: 0; max-height: 0; overflow: hidden; transition: all 0.5s ease; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; margin-top: 0; margin-bottom: 0; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); opacity: 0; }

.faq-answer.active { padding: 20px; max-height: 300px; opacity: 1; margin-bottom: 10px; }

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

body[data-theme="dark"] .faq-answer p {
    color: #b3b3b3;
}

/* Eski tekrarlanan stilleri kaldırıyoruz */
/* Tekrarlanan stillerin bulunduğu satırları siliyoruz */

/* ... existing code ... */

/* Ana Sayfa Sık Sorulan Sorular Bölümü */
.faq-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

body[data-theme="dark"] .faq-section {
    background-color: #1a2533;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* ... existing code ... */

/* İlgili Ürünler Bölümündeki Kartlar */
.related-products-grid .product-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

body[data-theme="dark"] .related-products-grid .product-item {
    background: #2f3b4d;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Internal Link Stilleri */
.internal-link {
    color: #3498db;
    text-decoration: none;
    border-bottom: 1px dotted #3498db;
    transition: all 0.3s ease;
    font-weight: 500;
}

.internal-link:hover {
    color: #2980b9;
    border-bottom: 1px solid #2980b9;
    background-color: rgba(52, 152, 219, 0.05);
    padding: 2px 4px;
    border-radius: 3px;
}

body[data-theme="dark"] .internal-link {
    color: #5dade2;
    border-bottom-color: #5dade2;
}

body[data-theme="dark"] .internal-link:hover {
    color: #85c1e9;
    border-bottom-color: #85c1e9;
    background-color: rgba(93, 173, 226, 0.1);
}

/* İlgili Hizmetler Bölümü */
.related-services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

body[data-theme="dark"] .related-services {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
}

.related-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.related-service-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #3498db;
}

body[data-theme="dark"] .related-service-card {
    background: #2a3441;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.related-service-card .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.related-service-card .service-icon i {
    font-size: 24px;
    color: #fff;
}

.related-service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

body[data-theme="dark"] .related-service-card h3 {
    color: #fff;
}

.related-service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

body[data-theme="dark"] .related-service-card p {
    color: #b3b3b3;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-link:hover {
    background: #2980b9;
    transform: translateX(5px);
}

/* Tamamlayıcı Hizmetler */
.complementary-services {
    margin-top: 50px;
    padding: 40px 0;
    border-top: 2px dashed #e0e0e0;
}

body[data-theme="dark"] .complementary-services {
    border-top-color: #404040;
}

.complementary-services h3 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
}

body[data-theme="dark"] .complementary-services h3 {
    color: #fff;
}

.service-combination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.combination-item {
    text-align: center;
    padding: 25px;
    background: rgba(52, 152, 219, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

body[data-theme="dark"] .combination-item {
    background: rgba(52, 152, 219, 0.1);
}

.combination-item:hover {
    transform: translateY(-5px);
    background: rgba(52, 152, 219, 0.1);
}

body[data-theme="dark"] .combination-item:hover {
    background: rgba(52, 152, 219, 0.15);
}

.combination-item i {
    font-size: 32px;
    color: #3498db;
    margin-bottom: 15px;
}

.combination-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

body[data-theme="dark"] .combination-item h4 {
    color: #fff;
}

.combination-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

body[data-theme="dark"] .combination-item p {
    color: #b3b3b3;
}

.related-intro {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

body[data-theme="dark"] .related-intro {
    color: #b3b3b3;
}

/* Breadcrumb Stilleri */
.breadcrumb-nav {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

body[data-theme="dark"] .breadcrumb-nav {
    background: #1a1a1a;
    border-bottom-color: #404040;
}

.breadcrumb {
    font-size: 14px;
    color: #666;
}

body[data-theme="dark"] .breadcrumb {
    color: #b3b3b3;
}

.breadcrumb span {
    color: #333;
    font-weight: 500;
}

body[data-theme="dark"] .breadcrumb span {
    color: #fff;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .related-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-combination-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .combination-item {
        padding: 20px;
    }
    
    .related-service-card {
        padding: 25px;
    }
    
    .breadcrumb {
        font-size: 12px;
    }
}

/* ... existing code ... */


