/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Address labels in contact page */
.address-label {
    font-weight: 700;
    color: #000;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
    background-color: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: #1a1a1a;
    color: white;
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    z-index: 100;
    line-height: 1;
    box-sizing: border-box;
    height: 32px;
    margin: 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: -120px;
}

.top-bar-left .contact-info {
    display: flex;
    gap: 20px;
}

/* TOP BAR SOCIAL LINK - ORIGINAL STYLES */
.top-bar-right .social-link {
    color: white !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
    background: rgba(255, 255, 255, 0.1) !important;
    position: relative !important;
    z-index: 100 !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

.top-bar-right .social-link:hover {
    color: #e74c3c !important;
    background: rgba(255, 255, 255, 0.2) !important;
    transform: scale(1.1) !important;
}

.top-bar-right .social-link i {
    font-size: 1.2rem !important;
    display: block !important;
    line-height: 1 !important;
    color: inherit !important;
    margin: 0 !important;
    padding: 0 !important;
}

.top-bar .top-bar-right .social-link:hover,
.top-bar .top-bar-right a.social-link:hover,
.top-bar .top-bar-right .social-link[href*="instagram"]:hover,
.top-bar .top-bar-right .instagram-link:hover,
body .top-bar .top-bar-right .social-link:hover,
body .top-bar .top-bar-right a.social-link:hover,
body .top-bar .top-bar-right .instagram-link:hover,
html body .top-bar .top-bar-right .social-link:hover,
html body .top-bar .top-bar-right a.social-link:hover,
html body .top-bar .top-bar-right .instagram-link:hover,
html body .top-bar .top-bar-right a[href*="instagram"]:hover {
    color: #e74c3c !important;
    background: rgba(255, 255, 255, 0.2) !important;
    transform: scale(1.1) !important;
}

.top-bar .top-bar-right .social-link i,
.top-bar .top-bar-right a.social-link i,
.top-bar .top-bar-right .social-link[href*="instagram"] i,
.top-bar .top-bar-right .instagram-link i,
body .top-bar .top-bar-right .social-link i,
body .top-bar .top-bar-right a.social-link i,
body .top-bar .top-bar-right .instagram-link i,
html body .top-bar .top-bar-right .social-link i,
html body .top-bar .top-bar-right a.social-link i,
html body .top-bar .top-bar-right .instagram-link i,
html body .top-bar .top-bar-right a[href*="instagram"] i {
    font-size: 1.2rem !important;
    display: block !important;
    line-height: 1 !important;
    color: inherit !important;
    margin: 0 !important;
    padding: 0 !important;
}

.contact-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: white;
    opacity: 0.8;
}

.contact-link i {
    font-size: 0.9rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 32px; /* Top bar height - exact calculation */
    width: 100%;
    max-width: 100vw;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.2rem 0;
    transition: top 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    overflow-x: visible;
    margin: 0;
}

/* Mobil için güçlendirilmiş navbar kuralları */
@media (max-width: 768px) {
    .navbar {
        position: fixed !important;
        top: 32px !important; /* Topbar'ın altında */
        transition: top 0.3s ease !important;
        padding: 0.6rem 0 !important; /* Mobilde padding'i biraz daha artır */
        margin-top: 0 !important; /* Margin'i sıfırla */
        border-top: none !important; /* Üst border'ı kaldır */
        background: rgba(255, 255, 255, 0.98) !important; /* Arka plan rengini güçlendir */
        overflow: visible !important; /* Mobil menünün görünmesi için */
        min-height: 65px !important; /* Minimum yüksekliği artır */
    }
    
    /* Mobilde topbar'ı göster */
    .top-bar {
        display: block !important;
        height: 32px !important;
        padding: 4px 0 !important; /* Topbar padding'ini azalt */
    }
    
    /* Mobilde navbar container'ın padding'ini de azalt */
    .nav-container {
        padding: 0 15px !important;
    }
}



.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: visible;
    gap: 40px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: -120px;
}

.nav-logo:hover {
    transform: translateY(-1px);
}

.logo-icon {
    width: 300px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
}

.logo-link {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.nav-logo:hover .logo-icon {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text h2 {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: -0.5px;
    margin: 0;
    line-height: 1.2;
}

.logo-tagline {
    color: #666;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-left: auto;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: #1a1a1a;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -8px;
    left: 50%;
    background-color: #1a1a1a;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
    position: relative;
}



.bar {
    width: 25px;
    height: 3px;
    background-color: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 0; /* Top bar ile arasındaki boşluğu kaldırdık */
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    display: block;
    visibility: visible;
    opacity: 1;
    background: #000;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    z-index: 3;
    pointer-events: none;
}

.hero-content {
    z-index: 4;
    max-width: 800px;
    padding: 0 20px;
    position: relative;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 4px 16px rgba(0, 0, 0, 0.4);
    letter-spacing: -3px;
    color: white;
    position: relative;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.1;
    background: rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    display: inline-block;
}



.hero p {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: 1.3rem !important;
    margin-bottom: 2.5rem !important;
    opacity: 0.85;
    font-weight: 300;
    line-height: 1.6;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 36px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 500;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary {
    background: #1a1a1a;
    color: white;
    border-color: #1a1a1a;
}

.btn-primary:hover {
    background: transparent;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(26, 26, 26, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.3);
}

/* Features Section */
.features {
    padding: 120px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: white;
    padding: 50px 40px;
    border-radius: 0;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: #1a1a1a;
    transform: rotate(5deg);
}

.feature-icon i {
    font-size: 1.8rem;
    color: #666;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon i {
    color: white;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: -0.5px;
}

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

/* Brand Slider Section */
.brand-slider-section {
    padding: 100px 0;
    background: #fafafa;
    width: 100%;
    overflow: hidden;
}

.brand-slider {
    position: relative;
    overflow: hidden;
    margin-top: 60px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.brand-slider-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: calc(320px * 8); /* 8 brands with optimized spacing */
}

.brand-item {
    flex-shrink: 0;
    width: 280px;
    height: 180px;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

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

.brand-item:hover::before {
    left: 100%;
}

.brand-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.1);
}

.brand-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0;
    transition: all 0.3s ease;
    border-radius: 15px;
    background: transparent;
    box-shadow: none;
    filter: grayscale(0%);
    opacity: 1;
}

.brand-item:hover img {
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-320px * 8)); /* Move by total width of all brands */
    }
}

/* Pause animation on hover */
.brand-slider:hover .brand-slider-track {
    animation-play-state: paused;
}

/* Mobile responsive for brand slider */
@media (max-width: 768px) {
    .brand-slider-section {
        padding: 60px 0;
    }
    
    .brand-slider {
        margin-top: 40px;
    }
    
    .brand-slider-track {
        width: calc(150px * 16); /* Bigger width for mobile */
        animation: scroll 35s linear infinite; /* Slower animation for mobile */
    }
    
    .brand-item {
        width: 150px; /* Bigger width for mobile */
        height: 150px; /* Bigger height for mobile */
        margin: 0 25px; /* Bigger margin for mobile */
        border-radius: 15px;
    }
    
    .brand-item img {
        padding: 0; /* No padding for mobile */
        border-radius: 10px;
        background: transparent;
        box-shadow: none;
    }
}

@media (max-width: 480px) {
    .brand-slider-track {
        width: calc(130px * 16); /* Bigger width for small mobile */
        animation: scroll 30s linear infinite; /* Slower animation */
    }
    
    .brand-item {
        width: 130px; /* Bigger width for small mobile */
        height: 130px; /* Bigger height for small mobile */
        margin: 0 20px; /* Bigger margin for small mobile */
    }
    
    .brand-item img {
        padding: 0; /* No padding for small mobile */
        background: transparent;
        box-shadow: none;
    }
}

/* Products Preview */
.products-preview {
    padding: 120px 0;
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.product-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.1);
}

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

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

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

.product-content {
    padding: 25px;
}

.product-content h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: -0.5px;
}

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

/* Google Reviews Section */
.google-reviews {
    padding: 100px 0;
    background: #f8f9fa;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-details h4 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 5px;
    font-weight: 600;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #ffd700;
    font-size: 0.9rem;
}

.google-logo {
    color: #4285f4;
    font-size: 1.5rem;
}

.review-content {
    margin-bottom: 20px;
}

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

.review-date {
    text-align: right;
}

.review-date span {
    color: #999;
    font-size: 0.85rem;
}

.reviews-cta {
    text-align: center;
    margin-top: 50px;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: #1a1a1a;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    font-weight: 400;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 40px;
    justify-content: space-between;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #ecf0f1;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 15px;
}

/* Footer section'larını dikey olarak ortala */
.footer-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 200px;
}

/* Ritim Yapı bölümünü ortaya hizala */
.footer-section:nth-child(2) {
    text-align: center;
}

.footer-section:nth-child(2) h3,
.footer-section:nth-child(2) p {
    text-align: center;
}

/* Hızlı Linkler bölümünü sağa kaydır */
.footer-section:nth-child(1) {
    text-align: right;
}

.footer-section:nth-child(1) h4,
.footer-section:nth-child(1) ul,
.footer-section:nth-child(1) ul li {
    text-align: right;
}

/* Brands sayfası için özel düzenleme (3 bölüm) */
.brands-footer {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 60px !important;
    justify-content: space-between !important;
}

/* Brands sayfasında Hızlı Linkler sağa kaydır */
.brands-footer .footer-section:nth-child(1) {
    text-align: right;
}

.brands-footer .footer-section:nth-child(1) h3,
.brands-footer .footer-section:nth-child(1) ul,
.brands-footer .footer-section:nth-child(1) ul li {
    text-align: right;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

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

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



.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-info i {
    color: #fff;
    width: 20px;
}

.contact-info a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: white;
    opacity: 0.8;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #bdc3c7;
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center !important;
    }
    
    .footer-section {
        min-height: auto !important;
        text-align: center !important;
    }
    
    .footer-section:nth-child(1),
    .footer-section:nth-child(2) {
        display: none !important;
    }
    
    .footer-section:nth-child(3) {
        display: block !important;
        text-align: center !important;
    }
    
    .footer-section:nth-child(3) h3,
    .footer-section:nth-child(3) p {
        text-align: center !important;
    }
    
    .footer-bottom {
        text-align: center !important;
        padding-top: 15px !important;
    }
}

/* Responsive Design */
/* Large Tablets */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .brand-slider-track {
        gap: 25px;
    }
}

/* Tablet and Mobile */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .brand-slider-track {
        gap: 20px;
    }
    
    .brand-item img {
        width: 120px;
        height: 80px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .top-bar {
        padding: 4px 0;
        font-size: 0.75rem;
        line-height: 1;
        height: 28px;
    }
    
    .top-bar-left .contact-info {
        gap: 15px;
    }
    
    .top-bar-content {
        margin-left: 0;
    }
    

    
    .contact-link span {
        display: none;
    }
    
    .navbar {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        top: 28px !important; /* Adjusted for mobile top bar - exact calculation */
    }
    
    .nav-container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        position: relative;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-menu {
        display: none !important;
        list-style: none;
    }
    
    .nav-menu li {
        list-style: none;
    }
    
    .nav-logo {
        order: 0;
        margin-left: 0;
    }
    
    .mobile-menu-toggle {
        order: 1;
        z-index: 10000 !important; /* Çok yüksek z-index */
        margin-left: 0;
    }
    
    .nav-logo {
        gap: 8px;
    }
    
    .logo-icon {
        width: 200px;
        height: 35px;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        background-color: #f8f9fa;
        border: 1px solid #ddd;
        border-radius: 4px;
        padding: 8px 12px;
        cursor: pointer;
        z-index: 10000 !important;
        font-size: 12px;
        font-weight: 500;
        color: #333;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    /* Mobil menü açıkken menü butonunun z-index'ini düşür */
    .mobile-nav-menu.active ~ .mobile-menu-toggle {
        z-index: 9998 !important; /* Hamburger menünün arkasında */
    }
    
    /* Mobil menü açıkken menü butonunu gizle */
    .mobile-nav-menu.active ~ .mobile-menu-toggle {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: scale(0) !important;
        transition: all 0.3s ease !important;
    }
    
    /* Mobil menü açıkken menü butonunu tamamen gizle */
    .mobile-nav-menu.active ~ .mobile-menu-toggle,
    .mobile-nav-menu.active + .mobile-menu-toggle {
        display: none !important;
    }
    
    .nav-logo {
        gap: 8px;
    }
    
    .logo-icon {
        width: 200px;
        height: 35px;
    }
    
    .mobile-menu-toggle:hover,
    .mobile-menu-toggle.active {
        background-color: #e9ecef;
        border-color: #adb5bd;
        transform: scale(1.05);
    }
    
    .mobile-nav-menu {
        display: none;
        position: fixed !important;
        top: 32px !important; /* Topbar'ın altından başla */
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: 80px !important; /* Yüksekliği azalt */
        flex-direction: row;
        flex-wrap: nowrap;
        background-color: white !important;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        padding: 0.5rem 3rem 1rem 1rem; /* Alt tarafta daha fazla padding, sağ tarafta close button için */
        z-index: 9999 !important; /* Çok yüksek z-index */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        border: none;
        justify-content: center;
        align-items: flex-end;
        gap: 6px;
        box-sizing: border-box;
        overflow: visible;
        pointer-events: auto !important;
    }
    
    /* Mobil menü açıkken navbar'ı tamamen gizle */
    .mobile-nav-menu.active {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
    
    /* Mobil menü başlığı kaldırıldı - yan yana düzen için */

    .mobile-nav-menu.active {
        display: flex;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    /* Mobil menü açıkken navbar içindeki diğer elementleri gizle */
    .mobile-nav-menu.active ~ .nav-logo,
    .mobile-nav-menu.active ~ .nav-menu {
        opacity: 0 !important;
        visibility: hidden !important;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    /* Mobil menü açıkken navbar içindeki tüm elementleri gizle - daha güçlü kural */
    .mobile-nav-menu.active ~ * {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
    
    /* Mobil menü açıkken navbar'ın kendisini de gizle */
    .mobile-nav-menu.active ~ .navbar {
        background: transparent !important;
        backdrop-filter: none !important;
    }
    
    /* Mobil menü açıkken navbar içindeki tüm elementleri gizle */
    .mobile-nav-menu.active ~ .navbar * {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
    
    .mobile-nav-item {
        border-bottom: none;
        list-style: none;
    }
    
    .mobile-nav-item:last-child {
        border-bottom: none;
    }
    
    .mobile-nav-item:last-child .mobile-nav-link {
        border-bottom: none;
    }
    
    /* Mobil menü close butonu stilleri */
    .mobile-nav-close {
        position: absolute;
        top: 8px;
        right: 8px;
        width: 32px;
        height: 32px;
        background: rgba(0, 0, 0, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 1px solid rgba(0, 0, 0, 0.2);
        font-size: 18px;
        color: #333;
        z-index: 10000;
    }
    
    .mobile-nav-close:hover {
        background: rgba(0, 0, 0, 0.2);
        transform: scale(1.1);
        color: #e74c3c;
    }
    
    .mobile-nav-link {
        display: inline-block;
        width: auto;
        min-width: 45px;
        max-width: 70px;
        padding: 8px 10px;
        color: #333;
        text-decoration: none;
        font-size: 11px;
        font-weight: 500;
        transition: all 0.3s ease;
        border-radius: 6px;
        margin: 0;
        white-space: nowrap;
        border: none;
        background-color: #f8f9fa;
        line-height: 1.2;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        text-overflow: ellipsis;
        position: relative;
        z-index: 1;
    }
    
    .mobile-nav-link:hover,
    .mobile-nav-link.active {
        background-color: #007bff;
        color: white;
        transform: scale(1.02);
        box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
    }
    
    .page-header {
        padding: 120px 0 60px;
        margin-top: 0;
    }

    .hero h1 {
        font-size: 3rem;
        font-weight: 800;
        letter-spacing: -1px;
    }
    
    .hero-video {
        object-position: center;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        padding: 0 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn {
        width: 250px;
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .company-logo-text .logo-image {
        width: 150px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
        padding: 0 20px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.2;
        text-align: center;
        white-space: nowrap;
    }

    .features-grid,
    .products-grid,
    .product-features .features-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .brand-slider-track {
        animation-duration: 20s;
    }

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


    
    .top-bar .top-bar-right .social-link,
    .top-bar .top-bar-right a.social-link,
    .top-bar .top-bar-right .social-link[href*="instagram"],
    .top-bar .top-bar-right .instagram-link,
    body .top-bar .top-bar-right .social-link,
    body .top-bar .top-bar-right a.social-link,
    body .top-bar .top-bar-right .instagram-link {
        width: 25px !important;
        height: 25px !important;
    }
    
    .top-bar .top-bar-right .social-link i,
    .top-bar .top-bar-right a.social-link i,
    .top-bar .top-bar-right .social-link[href*="instagram"] i,
    .top-bar .top-bar-right .instagram-link i,
    body .top-bar .top-bar-right .social-link i,
    body .top-bar .top-bar-right a.social-link i,
    body .top-bar .top-bar-right .instagram-link i {
        font-size: 1rem !important;
    }

    /* İletişim Sayfası Responsive */
    .contact-info-section {
        padding: 60px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Maps Section Responsive */
    .maps-section {
        padding: 60px 0;
    }
    .maps-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    .map-card {
        padding: 20px;
    }
    .map-card h3 {
        font-size: 1.3rem;
    }
    .address-text {
        font-size: 0.9rem;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
    }

    .contact-icon i {
        font-size: 1.5rem;
    }

    .contact-card h3 {
        font-size: 1.2rem;
    }

    .contact-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .contact-form-section {
        padding: 60px 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-container h2,
    .map-container h2 {
        font-size: 2rem;
    }

    .contact-form-container p {
        font-size: 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 0.95rem;
    }

    .map {
        height: 300px;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-grid {
        gap: 20px;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .top-bar {
        padding: 3px 0;
        font-size: 0.7rem;
        line-height: 1;
        height: 24px;
    }
    
    .navbar {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        top: 24px !important; /* Adjusted for small mobile top bar - exact calculation */
    }
    
    .nav-container {
        padding: 0 10px;
        width: 100%;
        max-width: 100%;
    }
    
    .nav-logo {
        gap: 6px;
    }
    
    .logo-icon {
        width: 200px;
        height: 35px;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        background-color: #f8f9fa;
        border: 1px solid #ddd;
        border-radius: 4px;
        padding: 8px 12px;
        cursor: pointer;
        z-index: 1001;
        font-size: 12px;
        font-weight: 500;
        color: #333;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .mobile-nav-link {
        font-size: 11px;
        padding: 7px 10px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem !important;
        padding: 0 15px;
    }
    
    .btn {
        width: 200px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .page-header h1 {
        font-size: 1.2rem;
        padding: 0 20px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.3;
        text-align: center !important;
        white-space: normal;
        width: 100% !important;
        max-width: 100%;
        margin: 0 auto;
        display: block !important;
        box-sizing: border-box;
    }
    
    .page-header {
        padding: 80px 0 50px;
        text-align: center !important;
        width: 100% !important;
        overflow: hidden;
    }
    
    .page-header .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 auto !important;
    }
    
    .page-header .header-content {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 auto !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .company-logo-text .logo-image {
        width: 120px;
    }
    
    .brand-item img {
        width: 100px;
        height: 70px;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Maps grid için küçük mobil */
    .maps-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    /* S20 ve küçük ekranlar için özel düzenlemeler */
    @media (max-width: 360px) {
        .top-bar {
            padding: 2px 0;
            font-size: 0.65rem;
            line-height: 1;
            height: 20px;
        }
        
        .navbar {
            width: 100%;
            max-width: 100vw;
            overflow-x: hidden;
            top: 20px !important; /* Adjusted for tiny mobile top bar - exact calculation */
        }
        
        .nav-container {
            padding: 0 8px;
            width: 100%;
            max-width: 100%;
        }
        
        .container {
            padding: 0 10px;
        }
        
        .nav-logo {
            gap: 4px;
        }
        
        .logo-icon {
            width: 180px;
            height: 30px;
        }
        
        .mobile-menu-toggle {
            display: flex !important;
            background-color: #f8f9fa;
            border: 1px solid #ddd;
            border-radius: 4px;
            padding: 8px 12px;
            cursor: pointer;
            z-index: 1001;
            font-size: 12px;
            font-weight: 500;
            color: #333;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .mobile-nav-link {
            font-size: 10px;
            padding: 5px 8px;
        }
        
        .hero h1 {
            font-size: 2rem;
            letter-spacing: -0.5px;
        }
        
        .hero p {
            font-size: 1rem;
        }
        
        .hero-subtitle {
            font-size: 0.9rem !important;
            padding: 0 10px;
        }
        
        .btn {
            width: 160px;
            padding: 8px 16px;
            font-size: 0.85rem;
        }
        
        .page-header h1 {
            font-size: 1.2rem;
            padding: 0 10px;
            word-wrap: break-word;
            overflow-wrap: break-word;
            line-height: 1.2;
            white-space: nowrap;
        }
        
        .page-header {
            padding: 80px 0 40px;
        }
        
        .company-logo-text .logo-image {
            width: 100px;
        }
        
        .brand-item img {
            width: 80px;
            height: 60px;
        }
        
        .btn {
            padding: 10px 16px;
            font-size: 0.8rem;
        }
        
        .brands-grid {
            grid-template-columns: 1fr;
            gap: 10px;
        }
        
        .services-grid {
            grid-template-columns: 1fr;
            gap: 10px;
        }
        
        .contact-grid {
            grid-template-columns: 1fr;
            gap: 10px;
        }
        
        .hero-buttons {
            gap: 10px;
        }
        
        .section-header h2 {
            font-size: 1.6rem;
        }
        
        .feature-card,
        .product-card,
        .service-card {
            padding: 20px 15px;
        }
        
        .brand-slider-track {
            gap: 15px;
        }
        
        .brand-item {
            width: 120px;
            height: 80px;
        }
        
        .footer-content {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .footer-section {
            text-align: center;
        }
        
        /* Maps grid için çok küçük mobil */
        .maps-grid {
            grid-template-columns: 1fr !important;
            gap: 15px;
        }
    }
    
    /* Extra small screens */
    @media (max-width: 320px) {
        .page-header h1 {
            font-size: 1rem;
            padding: 0 8px;
            white-space: nowrap;
        }
        
        .page-header {
            padding: 60px 0 30px;
        }
        
        .company-logo-text .logo-image {
            width: 80px;
        }
    }
    
    /* Ultra small screens */
    @media (max-width: 280px) {
        .page-header h1 {
            font-size: 0.9rem;
            padding: 0 5px;
            white-space: nowrap;
        }
        
        .page-header {
            padding: 50px 0 25px;
        }
        
        .company-logo-text .logo-image {
            width: 70px;
        }
    }
    
    /* Micro screens */
    @media (max-width: 240px) {
        .page-header h1 {
            font-size: 0.8rem;
            padding: 0 3px;
            white-space: nowrap;
        }
        
        .page-header {
            padding: 40px 0 20px;
        }
        
        .company-logo-text .logo-image {
            width: 60px;
        }
    }
    
    /* Nano screens */
    @media (max-width: 200px) {
        .page-header h1 {
            font-size: 0.7rem;
            padding: 0 2px;
            white-space: nowrap;
        }
        
        .page-header {
            padding: 30px 0 15px;
        }
        
        .company-logo-text .logo-image {
            width: 50px;
        }
    }
    
    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .btn {
        width: 180px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .feature-card,
    .product-card,
    .service-card {
        padding: 25px 20px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header .header-subtitle {
        font-size: 1.1rem;
    }
    
    .header-highlights {
        gap: 15px;
    }
    
    .highlight-item {
        padding: 10px 15px;
    }
    
    .story-content,
    .service-detail,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-highlights {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container h2,
    .map-container h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    /* İletişim Sayfası Küçük Ekran Responsive */
    .contact-info-section {
        padding: 40px 0;
    }

    .contact-grid {
        gap: 20px;
    }

    .top-bar .top-bar-right .social-link,
    .top-bar .top-bar-right a.social-link,
    .top-bar .top-bar-right .social-link[href*="instagram"],
    .top-bar .top-bar-right .instagram-link,
    body .top-bar .top-bar-right .social-link,
    body .top-bar .top-bar-right a.social-link,
    body .top-bar .top-bar-right .instagram-link {
        width: 22px !important;
        height: 22px !important;
    }
    
    .top-bar .top-bar-right .social-link i,
    .top-bar .top-bar-right a.social-link i,
    .top-bar .top-bar-right .social-link[href*="instagram"] i,
    .top-bar .top-bar-right .instagram-link i,
    body .top-bar .top-bar-right .social-link i,
    body .top-bar .top-bar-right a.social-link i,
    body .top-bar .top-bar-right .instagram-link i {
        font-size: 0.9rem !important;
    }
    
    .contact-card {
        padding: 25px 15px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .contact-icon i {
        font-size: 1.2rem;
    }

    .contact-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .contact-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .contact-form-section {
        padding: 40px 0;
    }

    .contact-content {
        gap: 30px;
    }

    .contact-form-container h2,
    .map-container h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .contact-form-container p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .form-group {
        gap: 8px;
    }

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .map {
        height: 250px;
        border-radius: 10px;
    }

    .faq-section {
        padding: 40px 0;
    }

    .faq-question {
        padding: 15px 20px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer {
        padding: 15px 20px;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }
    
    /* Certificates Section Small Screen Responsive */
    .certificates {
        padding: 40px 0;
    }
    .certificates-grid {
        gap: 20px;
    }
    .certificate {
        padding: 25px 15px;
    }
    .certificate i {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    .certificate h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    .certificate p {
        font-size: 0.85rem;
    }
    
    /* Certificates Section Responsive */
    .certificates {
        padding: 60px 0;
    }
    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .certificate {
        padding: 30px 20px;
    }
    .certificate i {
        font-size: 2.5rem;
    }
    .certificate h3 {
        font-size: 1.2rem;
    }
    .certificate p {
        font-size: 0.9rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced animations */
.page-header .header-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.page-header .highlight-item {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: all 0.6s ease;
}

/* Smooth section reveals */
section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Text reveal animations */
h1, h2, h3, p {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

h1.visible, h2.visible, h3.visible, p.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Floating animation for cards */
@keyframes floating {
    /* REMOVED */
}

.floating-animation {
    /* REMOVED */
}

/* Particle animations - REMOVED */

/* Ripple effect */
@keyframes ripple {
    to { transform: scale(4); opacity: 0; }
}

/* Enhanced card animations */
.feature-card, .product-card, .service-card, .value-card, .review-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover, .product-card:hover, .service-card:hover, .value-card:hover, .review-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}



/* Enhanced button animations */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Magnetic effect for buttons */
.btn.magnetic {
    transition: transform 0.1s ease;
}

/* Scroll progress bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #e74c3c, #f39c12);
    z-index: 1000;
    transition: width 0.1s ease;
}

/* Enhanced loading screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
    color: #1a1a1a;
}

.loading-logo-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circular-progress {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring-circle {
    transition: stroke-dashoffset 0.1s ease;
    stroke-width: 6;
    filter: drop-shadow(0 0 5px rgba(231, 76, 60, 0.5));
}

.logo-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.loading-bar-container {
    margin-top: 30px;
    text-align: center;
}

.loading-bar {
    width: 300px;
    height: 6px;
    background: rgba(26, 26, 26, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto 15px;
    position: relative;
}

.loading-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #e74c3c, #f39c12);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 3px;
    position: relative;
}

.loading-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 1.5s infinite;
}



        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
        
        .loading-text {
            font-size: 14px;
            color: #666;
            font-weight: 500;
            margin-top: 10px;
        }

/* Card animations */
.feature-card,
.product-card,
.service-card {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.feature-card.visible,
.product-card.visible,
.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero title animation - REMOVED */

/* Loading animation */
.loading {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.loaded {
    opacity: 1;
} 

/* Product Accordion Styles */
.product-accordion {
    padding: 100px 0;
    background: white;
}

.accordion {
    max-width: 1000px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    text-align: left;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.header-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.accordion-header:hover .header-image img {
    transform: scale(1.1);
}

.accordion-header:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.accordion-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.5px;
}

.accordion-header i {
    font-size: 1.2rem;
    color: #666;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

.accordion-details {
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.accordion-text p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.accordion-image {
    text-align: center;
}

.accordion-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .accordion-details {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .accordion-header {
        padding: 20px 25px;
    }
    
    .accordion-header h3 {
        font-size: 1.2rem;
    }
    
    .accordion-details {
        padding: 25px;
    }
    
    .header-content {
        gap: 15px;
    }
    
    .header-image {
        width: 50px;
        height: 50px;
    }
} 

/* Maps Section Styles */
.maps-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.maps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.map-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.map-card h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

.address-text {
    color: #6c757d;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.5;
}

.address-text a {
    color: #e74c3c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.address-text a:hover {
    color: #c0392b;
    text-decoration: underline;
}

.map-card .map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
} 

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.header-content {
    position: relative;
    z-index: 2;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
}

.page-header h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: block !important;
    text-align: center !important;
    width: 100% !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.2;
    white-space: nowrap;
}

.page-header .header-subtitle {
    font-size: 1.4rem;
    opacity: 0.95;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    color: #f8f9fa;
    display: block !important;
    text-align: center !important;
    width: 100% !important;
}

.page-header .header-highlights {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 30px !important;
    margin-top: 2rem !important;
    flex-wrap: wrap !important;
}

.page-header .header-highlights .highlight-item span {
    color: #000000 !important;
    font-weight: 600 !important;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.highlight-item i {
    font-size: 1.2rem;
    color: #ffd700;
}

.highlight-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #000000 !important;
    text-shadow: none !important;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-container h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.contact-form-container p {
    color: #7f8c8d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #1a1a1a;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
}

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

.map-container h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.faq-grid {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin: 0;
}

.faq-question i {
    color: #e74c3c;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 200px;
}

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

/* Contact Information */
.contact-info-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.contact-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

.contact-card p a {
    color: #e74c3c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card p a:hover {
    color: #c0392b;
    text-decoration: underline;
}

/* Company Story */
.company-story {
    padding: 3px 0;
    background: white;
}

/* Simple About Section */
.simple-about {
    padding: 80px 0;
    background: #ffffff;
}

/* Logo and Company Info */
.logo-company-section {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
    padding: 60px;
    background: #f8f9fa;
    border-radius: 20px;
}

.logo-container {
    flex: 0 0 auto;
}

.company-logo-simple {
    width: 450px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
}

.company-logo-simple:hover {
    transform: scale(1.05);
    box-shadow: none;
}

.logo-simple-image {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    padding: 0;
    border-radius: 10px;
    object-fit: contain;
    object-position: center;
}

/* Company Info */
.company-info {
    flex: 1;
}

.company-name-simple {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.1;
}

.company-description {
    font-size: 1.3rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.company-details {
    display: flex;
    gap: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.detail-item i {
    font-size: 1.2rem;
    color: #e74c3c;
    width: 20px;
    text-align: center;
}

.detail-item span {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #f39c12, #e74c3c);
    border-radius: 25px 25px 0 0;
}

.hero-logo {
    flex: 0 0 auto;
    position: relative;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 193, 7, 0.1), rgba(255, 235, 59, 0.08));
    border-radius: 30px;
    box-shadow: 
        0 20px 40px rgba(255, 215, 0, 0.2),
        0 0 0 1px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 215, 0, 0.4),
        inset 0 4px 12px rgba(0, 0, 0, 0.08),
        inset 0 -3px 8px rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.4);
    transition: all 0.4s ease;
    overflow: hidden;
}

/* Hero logo üzerine soluk gold overlay */
.hero-logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.05) 0%, 
        rgba(255, 193, 7, 0.03) 25%, 
        rgba(255, 235, 59, 0.02) 50%, 
        rgba(255, 215, 0, 0.04) 75%, 
        rgba(255, 193, 7, 0.05) 100%);
    border-radius: 30px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.hero-logo::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #e74c3c, #f39c12, #e67e22, #e74c3c);
    border-radius: 32px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-logo:hover::before {
    opacity: 1;
}

.hero-logo:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(255, 215, 0, 0.15),
        0 0 0 1px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 215, 0, 0.9);
    border-color: rgba(255, 215, 0, 0.5);
}

.hero-logo:hover::after {
    opacity: 1;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.1) 0%, 
        rgba(255, 193, 7, 0.08) 25%, 
        rgba(255, 235, 59, 0.05) 50%, 
        rgba(255, 215, 0, 0.08) 75%, 
        rgba(255, 193, 7, 0.1) 100%);
}

/* Simple Story */
.simple-story {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.story-title-simple {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 600;
}

.story-content-simple {
    margin-bottom: 60px;
}

.story-paragraph {
    margin-bottom: 30px;
}

.story-paragraph p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    text-align: left;
}

/* Simple Stats */
.simple-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.stat-item-simple {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item-simple:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number-simple {
    font-size: 3rem;
    font-weight: 800;
    color: #e74c3c;
    margin-bottom: 15px;
    display: block;
}

.stat-text {
    font-size: 1.1rem;
    color: #7f8c8d;
    font-weight: 600;
}

.title-container {
    margin-bottom: 40px;
}

.creative-company-name {
    font-size: 4rem;
    font-weight: 900;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.1;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, #2c3e50, #34495e, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

.title-line:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, #e74c3c, #f39c12, #2c3e50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-decoration {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.decoration-line {
    height: 3px;
    background: linear-gradient(90deg, #e74c3c, #f39c12);
    border-radius: 2px;
}

.decoration-line:first-child {
    width: 60px;
}

.decoration-line:last-child {
    width: 60px;
}

.decoration-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(231, 76, 60, 0.5);
}

.creative-tagline {
    font-size: 1.6rem;
    color: #7f8c8d;
    margin-bottom: 40px;
    font-weight: 500;
    line-height: 1.6;
}

/* Animated Badges */
.animated-badges {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.8));
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(231, 76, 60, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.badge-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(231, 76, 60, 0.3);
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #e74c3c;
    line-height: 1;
}

.badge-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.2;
}

.badge-subtext {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-weight: 500;
}

.company-name {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.company-tagline {
    font-size: 1.4rem;
    color: #7f8c8d;
    margin-bottom: 25px;
    font-weight: 500;
    line-height: 1.6;
}

.company-badge {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.badge-year, .badge-location {
    padding: 8px 16px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

/* Clean Story Section */
.clean-story-section {
    margin-top: 80px;
}

.story-header-clean {
    text-align: center;
    margin-bottom: 60px;
}

.story-title-clean {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.story-description {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-weight: 500;
}

/* Clean Content Layout */
.clean-content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Story Content */
.story-content-clean {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.story-item {
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.8));
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #e74c3c;
    transition: all 0.3s ease;
}

.story-item:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.item-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.item-header i {
    font-size: 1.5rem;
    color: #e74c3c;
    width: 30px;
    text-align: center;
}

.item-header h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    font-weight: 600;
    margin: 0;
}

.story-item p {
    color: #555;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.story-left {
    text-align: left;
}

.story-header-left {
    margin-bottom: 50px;
    position: relative;
}

.story-icon-left {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.story-icon-left i {
    font-size: 1.8rem;
    color: white;
}

.story-header-left h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.story-line-left {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #f39c12);
    border-radius: 2px;
}

.story-content-left {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.story-paragraph-left {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8), rgba(255, 255, 255, 0.9));
    border-radius: 15px;
    border-left: 4px solid #e74c3c;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-paragraph-left:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.paragraph-icon-left {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.paragraph-icon-left i {
    font-size: 1.1rem;
    color: white;
}

.paragraph-content h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 600;
}

.paragraph-content p {
    margin: 0;
    font-size: 1.05rem;
    color: #34495e;
    line-height: 1.7;
    font-weight: 400;
}

.story-right {
    text-align: left;
}

.stats-section-right {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.8));
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(231, 76, 60, 0.1);
    margin-bottom: 40px;
}

.stats-header-right {
    text-align: center;
    margin-bottom: 35px;
}

.stats-header-right h3 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
}

.stats-header-right p {
    font-size: 1.1rem;
    color: #7f8c8d;
    font-weight: 500;
}

.stats-grid-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-item-right {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item-right:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.stat-icon-right {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.stat-icon-right i {
    font-size: 1.3rem;
    color: white;
}

.stat-content h3 {
    font-size: 2.2rem;
    color: #e74c3c;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-content p {
    color: #7f8c8d;
    font-weight: 500;
    font-size: 1rem;
}

.company-features {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.8));
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(231, 76, 60, 0.1);
}

.company-features h4 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: center;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    color: #27ae60;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item span {
    color: #2c3e50;
    font-weight: 500;
    font-size: 1.05rem;
}

.story-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

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

.story-header h2 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.story-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #f39c12);
    margin: 0 auto;
    border-radius: 2px;
}

.story-text h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    text-align: center;
}

.story-text p {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-paragraph {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    text-align: left;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #e74c3c;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-paragraph:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.paragraph-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.paragraph-icon i {
    font-size: 1.2rem;
    color: white;
}

.story-paragraph p {
    margin: 0;
    font-size: 1.1rem;
    color: #2c3e50;
    line-height: 1.8;
    font-weight: 400;
}

.stats-section {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.stats-header {
    text-align: center;
    margin-bottom: 40px;
}

.stats-header h3 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.stats-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-weight: 500;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 0;
    justify-items: center;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #e74c3c;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

.stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #e74c3c;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #7f8c8d;
    font-weight: 500;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.company-logo-text {
    width: 100%;
    max-width: 600px;
    height: auto;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.2) 0%, rgba(255, 193, 7, 0.1) 40%, transparent 80%);
    border-radius: 25px;
    box-shadow: 
        0 15px 35px rgba(255, 215, 0, 0.15),
        0 0 0 1px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 215, 0, 0.3),
        inset 0 3px 8px rgba(0, 0, 0, 0.05),
        inset 0 -2px 6px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.4s ease;
    animation: logoFloat 6s ease-in-out infinite;
}

/* Logo container üzerine soluk gold overlay */
.company-logo-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.06) 0%, 
        rgba(255, 193, 7, 0.04) 30%, 
        rgba(255, 235, 59, 0.03) 60%, 
        rgba(255, 215, 0, 0.05) 100%);
    border-radius: 25px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.8;
    transition: opacity 0.4s ease;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes logo3DFloat {
    0%, 100% {
        transform: translateY(0px) rotateY(0deg);
    }
    25% {
        transform: translateY(-10px) rotateY(2deg);
    }
    50% {
        transform: translateY(-5px) rotateY(0deg);
    }
    75% {
        transform: translateY(-15px) rotateY(-2deg);
    }
}

@keyframes logoGlow {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

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

.company-logo-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.company-logo-text:hover::after {
    left: 100%;
}

/* Gold particles container */
.gold-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Gold sparkles container */
.gold-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}





.company-logo-text .logo-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    position: relative;
    z-index: 2;
    margin: 0;
    filter: none;
    transition: all 0.4s ease;
    box-shadow: 
        0 10px 25px rgba(255, 215, 0, 0.25),
        0 0 0 1px rgba(255, 215, 0, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 193, 7, 0.1), rgba(255, 235, 59, 0.08));
    border: 2px solid rgba(255, 215, 0, 0.3);
    overflow: visible;
    object-fit: contain;
    backdrop-filter: blur(5px);
}

/* Logo üzerine soluk gold overlay */
.company-logo-text .logo-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.08) 0%, 
        rgba(255, 193, 7, 0.06) 25%, 
        rgba(255, 235, 59, 0.04) 50%, 
        rgba(255, 215, 0, 0.06) 75%, 
        rgba(255, 193, 7, 0.08) 100%);
    border-radius: 20px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

.company-logo-text .logo-image::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #e74c3c, #f39c12, #e67e22);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.company-logo-text:hover .logo-image {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 
        0 20px 40px rgba(255, 215, 0, 0.4),
        0 0 0 2px rgba(255, 215, 0, 0.5),
        0 10px 25px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 3px 6px rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 193, 7, 0.2), rgba(255, 235, 59, 0.15));
}

.company-logo-text:hover .logo-image::after {
    opacity: 1;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.15) 0%, 
        rgba(255, 193, 7, 0.12) 25%, 
        rgba(255, 235, 59, 0.08) 50%, 
        rgba(255, 215, 0, 0.12) 75%, 
        rgba(255, 193, 7, 0.15) 100%);
}

.company-logo-text:hover .logo-image::before {
    opacity: 1;
}







/* Animasyonlar */
@keyframes borderGlow {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.02);
    }
}

@keyframes cornerPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

@keyframes logoGlow {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes logoSparkle {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Mobil responsive stiller */
@media (max-width: 768px) {
    .simple-about {
        padding: 60px 0;
    }
    
    .logo-company-section {
        flex-direction: column;
        gap: 50px;
        padding: 40px 20px;
        margin-bottom: 60px;
        text-align: center;
    }
    
    .company-logo-simple {
        width: 350px;
        height: 270px;
    }
    
    .logo-simple-image {
        max-width: 100%;
        max-height: 100%;
        padding: 0;
        object-fit: contain;
        object-position: center;
    }
    
    .company-name-simple {
        font-size: 2.8rem;
    }
    
    .company-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .company-details {
        justify-content: center;
        gap: 20px;
    }
    
    .detail-item {
        padding: 12px 20px;
    }
    
    .simple-story {
        padding: 0 20px;
    }
    
    .story-title-simple {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }
    
    .story-paragraph p {
        font-size: 1rem;
        text-align: center;
    }
    
    .simple-stats {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .stat-item-simple {
        padding: 25px 20px;
    }
    
    .stat-number-simple {
        font-size: 2.5rem;
    }
}
    
    .company-logo-text {
        height: auto;
        min-height: 180px;
        max-width: 500px;
        border-radius: 15px;
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .company-logo-text .logo-image {
        width: 100%;
        max-width: 450px;
        filter: none;
        box-shadow: none;
        border-radius: 12px;
        padding: 8px;
        background: transparent;
        border: none;
        object-fit: contain;
    }
    
    .company-logo-text:hover .logo-image {
        transform: scale(1.03);
        filter: none;
        box-shadow: none;
        background: transparent;
        border: none;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .company-name {
        font-size: 2.2rem;
    }
    
    .company-tagline {
        font-size: 1.1rem;
    }
    
    .company-badge {
        flex-direction: column;
        align-items: center;
    }
    
    .story-layout {
        gap: 40px;
        margin-top: 30px;
    }
    
    .story-header-left h2 {
        font-size: 2rem;
    }
    
    .story-icon-left {
        width: 60px;
        height: 60px;
    }
    
    .story-icon-left i {
        font-size: 1.5rem;
    }
    
    .story-paragraph-left {
        padding: 20px;
    }
    
    .stats-section-right {
        padding: 20px;
    }
    
    .stats-header-right h3 {
        font-size: 1.8rem;
    }
    
    .company-features {
        padding: 20px;
    }
    
    .company-features h4 {
        font-size: 1.5rem;
    }
    
    .feature-item {
        padding: 12px 15px;
    }
}
    
    .company-logo-text {
        height: auto;
        min-height: 250px;
        border-radius: 12px;
        padding: 12px;
        margin: 0 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .company-logo-text .logo-image {
        width: 100%;
        max-width: 100%;
        filter: none;
        box-shadow: 
            0 8px 20px rgba(255, 215, 0, 0.2),
            0 0 0 1px rgba(255, 215, 0, 0.15),
            0 3px 10px rgba(0, 0, 0, 0.08),
            inset 0 1px 3px rgba(255, 255, 255, 0.2);
        border-radius: 15px;
        padding: 15px;
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 193, 7, 0.1), rgba(255, 235, 59, 0.08));
        border: 2px solid rgba(255, 215, 0, 0.25);
        object-fit: contain;
        backdrop-filter: blur(5px);
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .story-text h2 {
        font-size: 2rem;
    }
    
    .story-text p {
        font-size: 1rem;
    }
}
    
    .company-logo-text:hover .logo-image {
        transform: scale(1.02);
        filter: none;
        box-shadow: none;
        background: transparent;
        border: none;
    }
}



/* Stats and Features Clean */
.stats-features-clean {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Statistics */
.stats-clean {
    text-align: center;
}

.stats-clean h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
}

.stats-grid-clean {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item-clean {
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.8));
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(231, 76, 60, 0.1);
    transition: all 0.3s ease;
}

.stat-item-clean:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: rgba(231, 76, 60, 0.3);
}

.stat-number-clean {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e74c3c;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: #7f8c8d;
    font-weight: 600;
}

/* Features */
.features-clean {
    text-align: center;
}

.features-clean h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
}

.features-list-clean {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item-clean {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.8));
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(231, 76, 60, 0.1);
    transition: all 0.3s ease;
}

.feature-item-clean:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(231, 76, 60, 0.3);
}

.feature-item-clean i {
    font-size: 1.2rem;
    color: #27ae60;
    width: 20px;
    text-align: center;
}

.feature-item-clean span {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

/* Values Section */
.values {
    padding: 100px 0;
    background: #f8f9fa;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.value-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.value-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Services Overview */
.services-overview {
    padding: 100px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: white;
    padding: 60px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

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

.service-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-card p {
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.service-features li {
    color: #7f8c8d;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

/* Detailed Services */
.detailed-services {
    padding: 100px 0;
    background: white;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse .service-content {
    direction: ltr;
}

.service-content h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.service-content p {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.highlight i {
    color: #e74c3c;
    font-size: 1.2rem;
}

.highlight span {
    color: #1a1a1a;
    font-weight: 500;
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Product Features Section */
.product-features {
    padding: 100px 0;
    background: white;
}

.product-features .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .product-features {
        padding: 60px 0;
    }
    
    .product-features .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 40px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .product-features {
        padding: 40px 0;
    }
    
    .product-features .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
        padding: 0 15px;
    }
}

.feature-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.feature-item .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(26, 26, 26, 0.3);
}

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

.feature-item h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

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

@media (max-width: 768px) {
    .feature-item {
        padding: 30px 25px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .feature-item .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .feature-item .feature-icon i {
        font-size: 1.8rem;
    }
    
    .feature-item h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .feature-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .feature-item {
        padding: 25px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .feature-item .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 18px;
    }
    
    .feature-item .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-item h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .feature-item p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* Section Header Responsive */
@media (max-width: 768px) {
    .section-header {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .section-header p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .section-header p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* Process Section */
.process {
    padding: 100px 0;
    background: #f8f9fa;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-content h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.step-content p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Clickable Service Cards */
.service-card {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 40px 30px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.service-icon {
    margin-bottom: 25px;
}

/* Service Card Overlay */
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.service-card {
    position: relative;
    z-index: 2;
}

.service-card h3,
.service-card .service-icon {
    position: relative;
    z-index: 3;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9), 1px 1px 2px rgba(0, 0, 0, 0.7);
    font-weight: 700;
    letter-spacing: 1px;
}

.service-card .service-icon i {
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9), 1px 1px 2px rgba(0, 0, 0, 0.7);
    font-size: 2.5rem;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9), 1px 1px 2px rgba(0, 0, 0, 0.7);
    padding: 6px 12px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: calc(100% - 24px);
    text-align: center;
    z-index: 3;
}

.service-card .click-hint {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: absolute;
    bottom: 1px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    text-align: center;
    z-index: 3;
}

.service-card .click-hint:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.click-hint {
    margin-top: 20px;
    padding: 10px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 8px;
    text-align: center;
    color: #e74c3c;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.click-hint i {
    margin-right: 5px;
}

.service-card:hover .click-hint {
    background: rgba(231, 76, 60, 0.15);
    transform: scale(1.02);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: white;
    margin: 0;
    padding: 0;
    border-radius: 0;
    width: 100%;
    max-width: none;
    height: 100vh;
    max-height: none;
    box-shadow: none;
    animation: slideIn 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 50%, #34495e 100%);
    color: white;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    flex-shrink: 0;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
}

.modal-header-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.modal-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-icon i {
    font-size: 18px;
    color: white;
}

.modal-title-section h2 {
    margin: 0 0 3px 0;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.modal-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 400;
}

.close {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.close i {
    font-size: 18px;
    color: white;
}

.modal-body {
    padding: 0;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Ensure modal covers everything */
.modal.active {
    z-index: 99999;
}

.modal.active ~ * {
    z-index: 1;
}

.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.product-details {
    color: #333;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.product-hero {
    display: flex;
    flex-direction: column;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    height: 100%;
    flex: 1;
}



.product-overview {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    justify-content: space-between;
    flex-shrink: 0;
}



.product-description h3 {
    color: #1a1a1a;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.product-description p {
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
    margin: 0;
    flex: 1;
}

.product-highlights h3 {
    color: #1a1a1a;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.highlights-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
}

.highlight-item {
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 180px;
    max-width: 280px;
}

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

.highlight-item i {
    color: #1a1a1a;
    font-size: 20px;
    margin-bottom: 10px;
}

.highlight-item h4 {
    margin: 10px 0 5px 0;
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 600;
}

.highlight-item p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.product-features-section {
    padding: 25px;
    background: white;
    flex-shrink: 0;
}

.product-features-section .section-header {
    text-align: center;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.product-features-section .section-header h3 {
    color: #1a1a1a;
    font-size: 1.6rem;
    margin-bottom: 0;
    font-weight: 700;
}

.product-features-section .section-header h3 i {
    color: #1a1a1a;
    margin-right: 10px;
}

.product-features-section .section-header p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
    margin-top: 0;
}

.product-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.product-features-list .feature-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #1a1a1a;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.product-features-list .feature-item:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
}

.product-cta {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 30px 25px;
    text-align: center;
    flex-shrink: 0;
    border-radius: 15px;
    margin-top: 20px;
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.cta-content h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.cta-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
    justify-content: center;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border: none;
}

.cta-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}





@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 100%;
        margin: 0;
        border-radius: 0;
        height: 100vh;
        max-height: none;
        max-width: none;
    }
    
    .modal-header {
        padding: 20px 25px;
    }
    
    .modal-header-content {
        gap: 12px;
    }
    
    .modal-icon {
        width: 45px;
        height: 45px;
    }
    
    .modal-icon i {
        font-size: 18px;
    }
    
    .modal-title-section h2 {
        font-size: 1.6rem;
    }
    
    .modal-subtitle {
        font-size: 0.85rem;
    }
    
    .product-hero {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        height: auto;
        min-height: auto;
    }
    
    .product-image {
        width: 100%;
        height: auto;
    }
    
    .product-image img {
        height: 250px;
        max-height: 250px;
    }
    

    
    .product-description h3 {
        font-size: 1.4rem;
    }
    
    .product-description p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .product-overview {
        width: 100%;
        justify-content: flex-start;
        gap: 20px;
    }
    
    .product-highlights h3 {
        font-size: 1.3rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .highlight-item {
        padding: 15px;
    }
    
    .product-features-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .product-features-section .section-header h3 {
        font-size: 1.4rem;
    }
    
    .product-features-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .product-features-list .feature-item {
        padding: 15px;
        font-size: 0.9rem;
    }
    
    .product-cta {
        padding: 20px 15px;
        margin-top: 15px;
    }
    
    .cta-content h3 {
        font-size: 1.4rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 100%;
        margin: 0;
        border-radius: 0;
        height: 100vh;
        max-height: none;
        max-width: none;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-header-content {
        gap: 10px;
    }
    
    .modal-icon {
        width: 35px;
        height: 35px;
    }
    
    .modal-icon i {
        font-size: 14px;
    }
    
    .modal-title-section h2 {
        font-size: 1.3rem;
    }
    
    .modal-subtitle {
        font-size: 0.8rem;
    }
    
    .product-hero {
        padding: 15px;
        gap: 15px;
        height: auto;
        flex-direction: column;
    }
    

    

    
    .product-description h3 {
        font-size: 1.2rem;
    }
    
    .product-description p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .product-overview {
        width: 100%;
        justify-content: flex-start;
        gap: 15px;
    }
    
    .product-highlights h3 {
        font-size: 1.1rem;
    }
    
    .highlights-grid {
        gap: 10px;
    }
    
    .highlight-item {
        padding: 12px;
        font-size: 0.85rem;
    }
    
    .product-features-section {
        padding: 15px;
    }
    
    .product-features-section .section-header h3 {
        font-size: 1.2rem;
    }
    
    .product-features-list .feature-item {
        padding: 12px;
        font-size: 0.85rem;
    }
    
    .product-cta {
        padding: 15px 10px;
        margin-top: 10px;
    }
    
    .cta-content h3 {
        font-size: 1.2rem;
    }
    
    .cta-content p {
        font-size: 0.85rem;
    }
    
    .cta-buttons {
        gap: 10px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
        padding: 10px 15px;
        font-size: 0.85rem;
    }
} 

/* Brands Section */
.brands-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    position: relative;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 1 !important;
    overflow: visible !important;
}

.brands-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.brands-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;
}

.brand-card {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 1 !important;
}

.brand-card::before {
    display: none;
}

.brand-card:hover {
    /* Hover efekti kaldırıldı - performans için */
}

.brand-card img {
    width: 140px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 25px;
    filter: grayscale(0%);
}

.brand-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.brand-card h3::after {
    display: none;
}

.brand-card:hover h3::after {
    display: none;
}

.brand-card p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    transition: color 0.3s ease;
}

.brand-card:hover p {
    color: #495057;
}

@media (max-width: 768px) {
    .brands-section {
        padding: 80px 0;
    }
    
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }
    
    .brand-card {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .brand-card img {
        width: 120px;
        height: 75px;
        margin-bottom: 20px;
    }
    
    .brand-card h3 {
        font-size: 1.1rem;
        letter-spacing: 0.8px;
    }
    
    .brand-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .brands-section {
        padding: 60px 0;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .brand-card {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .brand-card::before {
        display: none;
    }
    
    .brand-card img {
        width: 100px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .brand-card h3 {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }
    
    .brand-card p {
        font-size: 0.85rem;
    }
    
    .brand-card:hover {
        background-color: white;
    }
}



/* Certificates Section */
.certificates {
    padding: 100px 0;
    background: #f8f9fa;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.certificate {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificate:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.certificate i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.certificate h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.certificate p {
    color: #7f8c8d;
} 

/* Rotating Logos for Yapı Kimyasalları */
.rotating-logos {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 15px;
}

.rotating-logo {
    position: absolute;
    width: 120px;
    height: 120px;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: brightness(1.2) contrast(1.1) drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.rotating-logo.active {
    opacity: 1;
}

/* Animation for logo slide - 2s duration */
@keyframes logoSlide {
    0% {
        opacity: 0;
        transform: translate(-100px, -50%);
    }
    15%, 75% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
    85%, 100% {
        opacity: 0;
        transform: translate(100px, -50%);
    }
}

/* Genel animasyon kuralları - vitrifiye kartı hariç */
.rotating-logo:nth-child(1):not(.static-logo) { animation: logoSlide 5s infinite 0s; }
.rotating-logo:nth-child(2):not(.static-logo) { animation: logoSlide 5s infinite 5s; }
.rotating-logo:nth-child(3):not(.static-logo) { animation: logoSlide 5s infinite 10s; }
.rotating-logo:nth-child(4):not(.static-logo) { animation: logoSlide 5s infinite 15s; }
.rotating-logo:nth-child(5):not(.static-logo) { animation: logoSlide 5s infinite 20s; }

/* Ensure service card content stays on top */
.service-card .service-icon,
.service-card h3,
.service-card .click-hint {
    position: relative;
    z-index: 3;
}

/* Responsive adjustments for rotating logos */
@media (max-width: 768px) {
    .rotating-logo {
        width: 100px;
        height: 100px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 12px;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .rotating-logo {
        width: 90px;
        height: 90px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 10px;
        border-radius: 6px;
    }
}

/* Override for click-hint positioning - highest specificity */
.services-overview .services-grid .service-card .click-hint {
    position: absolute !important;
    bottom: 1px !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
    width: fit-content !important;
    text-align: center !important;
    z-index: 10 !important;
}

/* Specific animation rules for different service cards - perfect loop */
.service-card[onclick*="boya-grubu"] .rotating-logo:nth-child(1) { animation: logoSlide 15s infinite 0s; }
.service-card[onclick*="boya-grubu"] .rotating-logo:nth-child(2) { animation: logoSlide 15s infinite 5s; }
.service-card[onclick*="boya-grubu"] .rotating-logo:nth-child(3) { animation: logoSlide 15s infinite 10s; }

.service-card[onclick*="hirdavat"] .rotating-logo:nth-child(1) { animation: logoSlide 20s infinite 0s; }
.service-card[onclick*="hirdavat"] .rotating-logo:nth-child(2) { animation: logoSlide 20s infinite 5s; }
.service-card[onclick*="hirdavat"] .rotating-logo:nth-child(3) { animation: logoSlide 20s infinite 10s; }
.service-card[onclick*="hirdavat"] .rotating-logo:nth-child(4) { animation: logoSlide 20s infinite 15s; }

.service-card[onclick*="yalitim-urunleri"] .rotating-logo:nth-child(1) { animation: logoSlide 20s infinite 0s; }
.service-card[onclick*="yalitim-urunleri"] .rotating-logo:nth-child(2) { animation: logoSlide 20s infinite 5s; }
.service-card[onclick*="yalitim-urunleri"] .rotating-logo:nth-child(3) { animation: logoSlide 20s infinite 10s; }
.service-card[onclick*="yalitim-urunleri"] .rotating-logo:nth-child(4) { animation: logoSlide 20s infinite 15s; }

.service-card[onclick*="tesisat"] .rotating-logo:nth-child(1) { animation: logoSlide 5s infinite 0s; }

/* Altyapı ürünleri kartı için eski animasyon kuralları kaldırıldı - sabit logo */

/* Vitrifiye kartı için eski animasyon kuralları kaldırıldı - sabit logo */

.service-card[onclick*="is-guvenligi"] .rotating-logo:nth-child(1) { animation: logoSlide 15s infinite 0s; }
.service-card[onclick*="is-guvenligi"] .rotating-logo:nth-child(2) { animation: logoSlide 15s infinite 5s; }
.service-card[onclick*="is-guvenligi"] .rotating-logo:nth-child(3) { animation: logoSlide 15s infinite 10s; }

/* Responsive adjustments for service cards */
@media (max-width: 768px) {
    .service-card {
        min-height: 300px;
        padding: 50px 25px;
    }
}

@media (max-width: 480px) {
    .service-card {
        min-height: 280px;
        padding: 40px 20px;
    }
}

/* Dark overlay for service cards with background images */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
    border-radius: 15px;
}

.service-card {
    background: white;
    padding: 60px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

/* Ensure all service cards with background images have dark overlay */
.service-card[style*="background-image"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
    border-radius: 15px;
}

/* Specific animation rules for yapi-kimyasallari card */
.service-card[onclick*="yapi-kimyasallari"] .rotating-logo:nth-child(1) { animation: logoSlide 25s infinite 0s; }
.service-card[onclick*="yapi-kimyasallari"] .rotating-logo:nth-child(2) { animation: logoSlide 25s infinite 5s; }
.service-card[onclick*="yapi-kimyasallari"] .rotating-logo:nth-child(3) { animation: logoSlide 25s infinite 10s; }
.service-card[onclick*="yapi-kimyasallari"] .rotating-logo:nth-child(4) { animation: logoSlide 25s infinite 15s; }
.service-card[onclick*="yapi-kimyasallari"] .rotating-logo:nth-child(5) { animation: logoSlide 25s infinite 20s; }

/* Rotating Logos for Service Cards - Enhanced Version */
.rotating-logos {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
}

.rotating-logo {
    position: absolute;
    width: 140px;
    height: 140px;
    object-fit: contain;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.3) contrast(1.1) drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    z-index: 3;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.rotating-logo.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    filter: brightness(1.4) contrast(1.05) drop-shadow(0 1px 2px rgba(0,0,0,0.05));
}

/* Sabit logo stili - animasyon yok */
.static-logo {
    opacity: 1 !important;
    transform: translate(-50%, -50%) scale(1) !important;
    animation: none !important;
    visibility: visible !important;
    display: block !important;
}

/* Vitrifiye kartındaki sabit logo için özel stil */
.service-card[onclick*="vitrifiye"] .static-logo {
    opacity: 1 !important;
    transform: translate(-50%, -50%) scale(1) !important;
    animation: none !important;
    visibility: visible !important;
    display: block !important;
    z-index: 10 !important;
}

/* SENKRONİZE LOGO ANİMASYONU - Tüm kartlar için tek animasyon */

@keyframes logoSlide {
    0%, 95% { 
        opacity: 0; 
        transform: translate(-50%, -50%) scale(0.8); 
    }
    5%, 25% { 
        opacity: 1; 
        transform: translate(-50%, -50%) scale(1); 
    }
}

/* İlk logolar için uzun görünürlük (4 saniye) */
@keyframes logoSlideFirst {
    0%, 90% { 
        opacity: 0; 
        transform: translate(-50%, -50%) scale(0.8); 
    }
    10%, 50% { 
        opacity: 1; 
        transform: translate(-50%, -50%) scale(1); 
    }
}

/* SENKRONİZE LOGO DÖNGÜSÜ - Tüm kartlar için aynı animasyon */

/* TÜM KARTLAR İÇİN AYNI ANİMASYON - 5 logo, her 1.6 saniyede bir değişir */

/* YAPI MALZEMELERİ */
.service-card[onclick*="yapi-malzemeleri"] .rotating-logo:nth-child(1) { animation: logoSlideFirst 8s infinite 0s; }
.service-card[onclick*="yapi-malzemeleri"] .rotating-logo:nth-child(2) { animation: logoSlide 8s infinite 1.6s; }
.service-card[onclick*="yapi-malzemeleri"] .rotating-logo:nth-child(3) { animation: logoSlide 8s infinite 3.2s; }
.service-card[onclick*="yapi-malzemeleri"] .rotating-logo:nth-child(4) { animation: logoSlide 8s infinite 4.8s; }
.service-card[onclick*="yapi-malzemeleri"] .rotating-logo:nth-child(5) { animation: logoSlide 8s infinite 6.4s; }

/* YAPI KİMYASALLARI */
.service-card[onclick*="yapi-kimyasallari"] .rotating-logo:nth-child(1) { animation: logoSlideFirst 8s infinite 0s; }
.service-card[onclick*="yapi-kimyasallari"] .rotating-logo:nth-child(2) { animation: logoSlide 8s infinite 1.6s; }
.service-card[onclick*="yapi-kimyasallari"] .rotating-logo:nth-child(3) { animation: logoSlide 8s infinite 3.2s; }
.service-card[onclick*="yapi-kimyasallari"] .rotating-logo:nth-child(4) { animation: logoSlide 8s infinite 4.8s; }
.service-card[onclick*="yapi-kimyasallari"] .rotating-logo:nth-child(5) { animation: logoSlide 8s infinite 6.4s; }

/* BOYA GRUBU - 3 logo */
.service-card[onclick*="boya-grubu"] .rotating-logo:nth-child(1) { animation: logoSlideFirst 8s infinite 0s; }
.service-card[onclick*="boya-grubu"] .rotating-logo:nth-child(2) { animation: logoSlide 8s infinite 2.67s; }
.service-card[onclick*="boya-grubu"] .rotating-logo:nth-child(3) { animation: logoSlide 8s infinite 5.33s; }

/* HIRDAVAT */
.service-card[onclick*="hirdavat"] .rotating-logo:nth-child(1) { animation: logoSlideFirst 8s infinite 0s; }
.service-card[onclick*="hirdavat"] .rotating-logo:nth-child(2) { animation: logoSlide 8s infinite 1.6s; }
.service-card[onclick*="hirdavat"] .rotating-logo:nth-child(3) { animation: logoSlide 8s infinite 3.2s; }
.service-card[onclick*="hirdavat"] .rotating-logo:nth-child(4) { animation: logoSlide 8s infinite 4.8s; }
.service-card[onclick*="hirdavat"] .rotating-logo:nth-child(5) { animation: logoSlide 8s infinite 6.4s; }

/* YALITIM ÜRÜNLERİ */
.service-card[onclick*="yalitim-urunleri"] .rotating-logo:nth-child(1) { animation: logoSlideFirst 8s infinite 0s; }
.service-card[onclick*="yalitim-urunleri"] .rotating-logo:nth-child(2) { animation: logoSlide 8s infinite 1.6s; }
.service-card[onclick*="yalitim-urunleri"] .rotating-logo:nth-child(3) { animation: logoSlide 8s infinite 3.2s; }
.service-card[onclick*="yalitim-urunleri"] .rotating-logo:nth-child(4) { animation: logoSlide 8s infinite 4.8s; }
.service-card[onclick*="yalitim-urunleri"] .rotating-logo:nth-child(5) { animation: logoSlide 8s infinite 6.4s; }

/* TESİSAT */
.service-card[onclick*="tesisat"] .rotating-logo:nth-child(1) { animation: logoSlideFirst 8s infinite 0s; }
.service-card[onclick*="tesisat"] .rotating-logo:nth-child(2) { animation: logoSlide 8s infinite 1.6s; }
.service-card[onclick*="tesisat"] .rotating-logo:nth-child(3) { animation: logoSlide 8s infinite 3.2s; }
.service-card[onclick*="tesisat"] .rotating-logo:nth-child(4) { animation: logoSlide 8s infinite 4.8s; }
.service-card[onclick*="tesisat"] .rotating-logo:nth-child(5) { animation: logoSlide 8s infinite 6.4s; }

/* ALTYAPI ÜRÜNLERİ - Tamamen yeni sabit logo sistemi */
.static-logo-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 2;
}

.permanent-logo {
    width: 80px !important;
    height: 80px !important;
    object-fit: contain;
    opacity: 1;
    filter: brightness(1.3) contrast(1.1) drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    background: rgba(255, 255, 255, 0.98);
    border-radius: 10px;
    padding: 12px;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.9);
    z-index: 3;
}


/* ALTYAPI ÜRÜNLERİ - SABİT LOGO */
.service-card[onclick*="altyapi-urunleri"] .rotating-logo {
    width: 120px !important;
    height: 120px !important;
    padding: 15px !important;
    border-radius: 10px !important;
    animation: none !important;
    animation-name: none !important;
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    animation-fill-mode: none !important;
    animation-play-state: paused !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    transform: translate(-50%, -50%) scale(1) !important;
    z-index: 999 !important;
    transition: none !important;
    transition-delay: 0s !important;
    transition-duration: 0s !important;
    transition-property: none !important;
    transition-timing-function: none !important;
}

/* Altyapı ürünleri kartı boyutunu yapı kimyasalları kartı ile aynı yap */
.service-card[onclick*="altyapi-urunleri"] {
    min-height: 350px !important;
    height: auto !important;
    width: 100% !important;
    max-width: none !important;
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    aspect-ratio: auto !important;
    padding: 60px 30px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

/* Responsive adjustments for permanent logo */
@media (max-width: 768px) {
    .permanent-logo {
        width: 60px !important;
        height: 60px !important;
        padding: 8px !important;
        border-radius: 8px !important;
    }
    
    .service-card[onclick*="altyapi-urunleri"] .rotating-logo {
        width: 100px !important;
        height: 100px !important;
        padding: 12px !important;
        border-radius: 8px !important;
        animation: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        transform: translate(-50%, -50%) scale(1) !important;
    }
}

@media (max-width: 480px) {
    .permanent-logo {
        width: 50px !important;
        height: 50px !important;
        padding: 6px !important;
        border-radius: 6px !important;
    }
    
    .service-card[onclick*="altyapi-urunleri"] .rotating-logo {
        width: 90px !important;
        height: 90px !important;
        padding: 10px !important;
        border-radius: 6px !important;
        animation: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        transform: translate(-50%, -50%) scale(1) !important;
    }
}

/* VİTRİFİYE */
/* Vitrifiye kartı için animasyon yok - sabit logo */
.service-card[onclick*="vitrifiye"] .rotating-logo {
    animation: none !important;
    opacity: 1 !important;
    transform: translate(-50%, -50%) scale(1) !important;
    visibility: visible !important;
    display: block !important;
}

/* İŞ GÜVENLİĞİ */
.service-card[onclick*="is-guvenligi"] .rotating-logo:nth-child(1) { animation: logoSlideFirst 8s infinite 0s; }
.service-card[onclick*="is-guvenligi"] .rotating-logo:nth-child(2) { animation: logoSlide 8s infinite 1.6s; }
.service-card[onclick*="is-guvenligi"] .rotating-logo:nth-child(3) { animation: logoSlide 8s infinite 3.2s; }
.service-card[onclick*="is-guvenligi"] .rotating-logo:nth-child(4) { animation: logoSlide 8s infinite 4.8s; }
.service-card[onclick*="is-guvenligi"] .rotating-logo:nth-child(5) { animation: logoSlide 8s infinite 6.4s; }

/* ALTYAPI ÜRÜNLERİ - ANİMASYON YOK */
.service-card[onclick*="altyapi-urunleri"] .rotating-logo:nth-child(1),
.service-card[onclick*="altyapi-urunleri"] .rotating-logo:nth-child(2),
.service-card[onclick*="altyapi-urunleri"] .rotating-logo:nth-child(3),
.service-card[onclick*="altyapi-urunleri"] .rotating-logo:nth-child(4),
.service-card[onclick*="altyapi-urunleri"] .rotating-logo:nth-child(5) {
    animation: none !important;
    animation-name: none !important;
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    animation-fill-mode: none !important;
    animation-play-state: paused !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    transform: translate(-50%, -50%) scale(1) !important;
    z-index: 999 !important;
}

/* Ensure service card content stays on top */
.service-card .service-icon,
.service-card h3,
.service-card .click-hint {
    position: relative;
    z-index: 4;
}

/* Enhanced hover effects for rotating logos */
.service-card:hover .rotating-logo {
    filter: brightness(1.5) contrast(1.05) drop-shadow(0 2px 4px rgba(0,0,0,0.08));
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.1),
        0 3px 10px rgba(0, 0, 0, 0.05);
}

/* Responsive adjustments for rotating logos */
@media (max-width: 768px) {
    .rotating-logo {
        width: 120px;
        height: 120px;
        padding: 15px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .rotating-logo {
        width: 100px;
        height: 100px;
        padding: 12px;
        border-radius: 10px;
    }
}

/* Override for click-hint positioning - highest specificity */
.services-overview .services-grid .service-card .click-hint {
    position: absolute !important;
    bottom: 1px !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
    z-index: 5 !important;
} 











































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































