/* ===== RESPONSIVE TASARIM CSS DEĞİŞKENLERİ ===== */
:root {
    --responsive-font-size: 16px;
    --animation-duration: 0.3s;
    --transition-duration: 0.3s;
    --container-padding: 40px;
    --border-radius: 8px;
    --box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    --hover-transform: scale(1.02);
    --active-transform: scale(0.98);
}

/* Touch cihazlar için özel değişkenler */
.touch-device {
    --hover-transform: none;
    --animation-duration: 0.2s;
    --transition-duration: 0.2s;
}

/* Reduced motion için özel değişkenler */
@media (prefers-reduced-motion: reduce) {
    :root {
        --animation-duration: 0s;
        --transition-duration: 0s;
        --hover-transform: none;
        --active-transform: none;
    }
}

/* Dark mode için özel değişkenler */
@media (prefers-color-scheme: dark) {
    :root {
        --box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: #f7f7f7;
    color: #222;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
    font-size: var(--responsive-font-size);
}

* {
    box-sizing: border-box;
}

@keyframes phonePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.top-banner {
    margin-bottom: 0;
    padding-bottom: 0;
    position: sticky !important;
    top: 0 !important;
    z-index: 1200 !important;
}

.navbar {
    margin-top: 0;
    padding-top: 0;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky !important;
    top: 40px !important;
    z-index: 1201 !important;
}

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

.nav-brand h2 {
    margin: 0;
    color: #1a237e;
    font-size: 1.5rem;
}

.nav-brand p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.nav-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

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

.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
    margin-top: 10px;
}

.nav-menu .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
}

.nav-menu .dropdown-menu li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu .dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.nav-menu .dropdown-menu a:last-child {
    border-bottom: none;
}

.nav-menu .dropdown-menu a:hover {
    background: #f8f9fa;
    color: #1a237e;
    padding-left: 25px;
}

.nav-menu .dropdown > a::after {
    content: '▼';
    margin-left: 5px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-menu .dropdown:hover > a::after {
    transform: rotate(180deg);
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #1a237e;
}

header {
    background: #1a237e;
    color: #fff;
    padding: 40px 0 30px 0;
    text-align: center;
}

header h1 {
    margin: 0 0 10px 0;
    font-size: 2.5rem;
}

header p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-buttons {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    background: #3949ab;
    color: #fff;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    margin: 0 8px 8px 0;
    font-weight: 600;
    transition: background 0.2s;
}

.btn:hover {
    background: #283593;
}

.btn.whatsapp {
    background: #25d366;
    color: #fff;
}

.btn.whatsapp:hover {
    background: #128c7e;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

section {
    padding: 40px 0;
}

section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #1a237e;
}

#hizmetler ul {
    list-style: disc inside;
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
    font-size: 1.1rem;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    justify-content: center;
}

.product {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.product:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateY(-5px);
    border-color: #1a237e;
}

.product img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
}

.product h3 {
    color: #1a237e;
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.product p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.product .btn {
    background: #1a237e;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 500;
}

.product .btn:hover {
    background: #283593;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 35, 126, 0.3);
}

/* Footer styles moved to css/footer.css */

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

.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
}

.service-card h3 {
    color: #1a237e;
    margin-bottom: 15px;
    text-align: center;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.service-card li:before {
    content: "✓";
    color: #25d366;
    font-weight: bold;
    margin-right: 10px;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    color: #fff;
    padding: 60px 0 40px 0;
    text-align: center;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.about-hero .container {
    max-width: 100%;
    width: 100%;
    padding: 0 30px;
    box-sizing: border-box;
}

.about-hero h1 {
    margin: 0 0 15px 0;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin: 0;
    opacity: 0.9;
    font-weight: 300;
}

.about-content {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
    box-sizing: border-box;
}

.about-content .container {
    max-width: 100%;
    width: 100%;
    padding: 0 30px;
    box-sizing: border-box;
}

.about-text {
    margin-bottom: 50px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #333;
}

.about-text strong {
    color: #1a237e;
    font-weight: 600;
}

.about-stats {
    margin: 50px 0;
    text-align: center;
}

.about-stats h2 {
    color: #1a237e;
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-weight: 600;
}

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

.stat-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.values {
    margin: 60px 0;
}

.values h2 {
    color: #1a237e;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

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

.value-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.value-card h3 {
    color: #1a237e;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-info {
    margin: 60px 0 40px 0;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    text-align: center;
    overflow: hidden;
    box-sizing: border-box;
}

.contact-info h2 {
    color: #1a237e;
    font-size: 2.2rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-details {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.contact-details p {
    font-size: 1.1rem;
    line-height: 2;
    color: #333;
    margin: 0;
}

.contact-details a {
    color: #1a237e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #3949ab;
    text-decoration: underline;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero {
        padding: 40px 0 30px 0;
        width: 100%;
    }
    
    .about-hero .container {
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-content {
        padding: 40px 0;
        width: 100%;
    }
    
    .about-content .container {
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    .about-text p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .value-card {
        padding: 25px 20px;
    }
    
    .contact-info {
        margin: 40px 0 30px 0;
        padding: 30px 20px;
        width: 100%;
    }
    
    .contact-info h2 {
        font-size: 1.8rem;
    }
    
    .contact-details p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .value-card {
        padding: 20px 15px;
    }
    
    .value-icon {
        font-size: 2.5rem;
    }
    
    .contact-info {
        padding: 25px 15px;
    }
    
    .contact-info h2 {
        font-size: 1.6rem;
    }
}

/* İletişim Sayfası */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(30,60,114,0.07);
    align-items: stretch;
    margin-bottom: 30px;
}

.contact-info h2 {
    color: #1a237e;
    margin-bottom: 30px;
    font-size: 2rem;
    text-align: center;
    letter-spacing: 1px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(30,60,114,0.08);
    padding: 24px 20px;
    transition: box-shadow 0.3s, transform 0.3s;
    border-left: 5px solid #1e3c72;
    position: relative;
}

.contact-item:hover {
    box-shadow: 0 8px 32px rgba(30,60,114,0.15);
    transform: translateY(-2px) scale(1.02);
    border-left: 5px solid #25d366;
}

.contact-icon {
    font-size: 2.5rem;
    color: #1e3c72;
    background: #e3eafc;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(30,60,114,0.08);
    margin-right: 0;
    flex-shrink: 0;
    transition: background 0.3s, color 0.3s;
}

.contact-item:hover .contact-icon {
    background: #25d366;
    color: #fff;
}

.contact-icon.whatsapp-logo {
    background: #25D366;
    padding: 8px;
}

.contact-icon.whatsapp-logo svg {
    width: 100%;
    height: 100%;
}

.contact-item:hover .contact-icon.whatsapp-logo {
    background: #128C7E;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-details h3 {
    color: #1a237e;
    margin-bottom: 4px;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-details p, .contact-details a {
    color: #333;
    font-size: 1rem;
    margin: 0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-details a:hover {
    color: #25d366;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-form h2 {
    color: #1a237e;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.map-section {
    margin-top: 50px;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* SSS Sayfası */
.faq-list {
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

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

.faq-question:hover {
    background: #e9ecef;
}

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

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1a237e;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

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

.faq-contact {
    text-align: center;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.faq-contact h2 {
    color: #1a237e;
    margin-bottom: 15px;
}

.faq-contact p {
    margin-bottom: 30px;
    color: #666;
}

/* Google Yorumları Bölümü */
.google-reviews {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 15px 20px;
    z-index: 1000;
    max-width: 300px;
    border-left: 4px solid #4285f4;
    animation: slideInLeft 0.5s ease-out;
    outline: none;
    border: 2px solid transparent;
}

.google-reviews:focus-within {
    border-color: #4285f4;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2), 0 0 0 3px rgba(66, 133, 244, 0.1);
}

.google-reviews h4 {
    margin: 0 0 8px 0;
    color: #1a237e;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.google-reviews p {
    margin: 0 0 12px 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.google-reviews .review-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #4285f4;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
    min-height: 44px;
    min-width: 44px;
    outline: none;
    border: 2px solid transparent;
}

.google-reviews .review-btn:focus {
    border-color: #fff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.google-reviews .review-btn:hover {
    background: #3367d6;
    transform: translateY(-2px);
}

.google-reviews .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    outline: none;
    border-radius: 50%;
    transition: all 0.3s;
}

.google-reviews .close-btn:focus {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
}

.google-reviews .close-btn:hover {
    color: #333;
    background: rgba(0, 0, 0, 0.1);
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* WhatsApp İletişim Butonu */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    min-width: 44px;
    min-height: 44px;
    outline: none;
    border: 2px solid transparent;
}

.whatsapp-float:focus {
    border-color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5), 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893A11.821 11.821 0 0020.885 3.488'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-float:hover {
    background: #128c7e;
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-float:hover::before {
    width: 35px;
    height: 35px;
}

.whatsapp-float:active {
    transform: scale(0.95);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
}

/* Mobil için Google Yorumları */
@media (max-width: 768px) {
    .google-reviews {
        bottom: 85px;
        left: 15px;
        right: 15px;
        max-width: none;
        padding: 15px 18px;
        border-radius: 10px;
        box-shadow: 0 6px 25px rgba(0,0,0,0.2);
        margin-bottom: 0;
    }
    
    .google-reviews h4 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .google-reviews p {
        font-size: 0.9rem;
        margin-bottom: 15px;
        line-height: 1.5;
    }
    
    .google-reviews .review-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
        border-radius: 15px;
        width: 100%;
        text-align: center;
        justify-content: center;
        min-height: 32px;
    }
    
    .google-reviews .close-btn {
        top: 12px;
        right: 12px;
        width: 24px;
        height: 24px;
        font-size: 1.4rem;
        min-height: 44px;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 30px;
        bottom: 20px;
        right: 20px;
        min-height: 44px;
        min-width: 44px;
        z-index: 1001;
    }
    
    .whatsapp-float::before {
        width: 30px;
        height: 30px;
    }
    
    .whatsapp-float:hover::before {
        width: 32px;
        height: 32px;
    }
    
    .whatsapp-float:active {
        transform: scale(0.9);
        background: #128c7e;
    }
    
    .google-reviews .review-btn:active {
        transform: scale(0.98);
        background: #3367d6;
    }
    
    footer {
        margin-bottom: 100px;
    }
}

/* Çok küçük ekranlar için ek optimizasyonlar */
@media (max-width: 480px) {
    .google-reviews {
        bottom: 75px;
        left: 10px;
        right: 10px;
        padding: 12px 15px;
        margin-bottom: 0;
    }
    
    .google-reviews h4 {
        font-size: 0.95rem;
    }
    
    .google-reviews p {
        font-size: 0.85rem;
    }
    
    .google-reviews .review-btn {
        padding: 5px 8px;
        font-size: 0.75rem;
        border-radius: 12px;
        width: 100%;
        justify-content: center;
        min-height: 28px;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 15px;
        right: 15px;
        z-index: 1001;
    }
    
    .whatsapp-float::before {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-float:hover::before {
        width: 30px;
        height: 30px;
    }
    
    footer {
        margin-bottom: 90px;
    }
}

/* Ultra küçük ekranlar için (320px ve altı) */
@media (max-width: 320px) {
    .google-reviews {
        bottom: 70px;
        left: 8px;
        right: 8px;
        padding: 10px 12px;
        margin-bottom: 0;
    }
    
    .google-reviews h4 {
        font-size: 0.9rem;
    }
    
    .google-reviews p {
        font-size: 0.8rem;
    }
    
    .google-reviews .review-btn {
        padding: 4px 6px;
        font-size: 0.7rem;
        border-radius: 10px;
        min-height: 24px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 12px;
        right: 12px;
        z-index: 1001;
    }
    
    .whatsapp-float::before {
        width: 26px;
        height: 26px;
    }
    
    .whatsapp-float:hover::before {
        width: 28px;
        height: 28px;
    }
    
    footer {
        margin-bottom: 80px;
    }
}

/* Yüksek DPI ekranlar için optimizasyon */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .whatsapp-float::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893A11.821 11.821 0 0020.885 3.488'/%3E%3C/svg%3E");
        background-size: 32px 32px;
    }
}

/* Reduced motion için optimizasyon */
@media (prefers-reduced-motion: reduce) {
    .whatsapp-float {
        animation: none;
    }
    
    .whatsapp-float:hover {
        transform: none;
    }
    
    .whatsapp-float:active {
        transform: none;
    }
    
    .google-reviews {
        animation: none;
    }
    
    .google-reviews .review-btn:hover {
        transform: none;
    }
    
    .google-reviews .review-btn:active {
        transform: none;
    }
    
    .whatsapp-float,
    .google-reviews,
    .google-reviews .review-btn,
    .google-reviews .close-btn {
        transition: none;
    }
}

/* Dark mode desteği */
@media (prefers-color-scheme: dark) {
    .google-reviews {
        background: #2d3748;
        color: #e2e8f0;
        border-left-color: #4299e1;
    }
    
    .google-reviews h4 {
        color: #90cdf4;
    }
    
    .google-reviews p {
        color: #a0aec0;
    }
    
    .google-reviews .close-btn {
        color: #a0aec0;
    }
    
    .google-reviews .close-btn:hover,
    .google-reviews .close-btn:focus {
        color: #e2e8f0;
        background: rgba(255, 255, 255, 0.1);
    }
}

/* Mobil Responsive Tasarım */
@media (max-width: 768px) {
    .top-banner {
        position: sticky !important;
        top: 0 !important;
        z-index: 1200 !important;
    }
    .navbar {
        padding: 8px 0;
        position: sticky !important;
        top: 40px !important;
        z-index: 1201 !important;
    }
    .banner-content {
        flex-direction: column;
        gap: 8px;
        padding: 0 15px;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    .phone-number {
        order: 1;
        width: 100%;
        justify-content: center;
    }
    .marquee {
        order: 2;
        margin-left: 0;
        width: 100%;
    }
    .marquee span {
        font-size: 12px;
        margin-right: 30px;
    }
    header {
        padding: 30px 0 20px 0;
    }
    header h1 {
        font-size: 2rem;
    }
    header p {
        font-size: 1rem;
    }
    .cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
        margin: 0;
    }
}
@media (max-width: 480px) {
    .top-banner {
        position: sticky !important;
        top: 0 !important;
        z-index: 1200 !important;
    }
    .navbar {
        padding: 6px 0;
        position: sticky !important;
        top: 40px !important;
        z-index: 1201 !important;
    }
    .banner-content {
        padding: 0 10px;
        gap: 6px;
    }
    .phone-number {
        padding: 4px 8px;
    }
    .phone-link {
        font-size: 12px;
    }
    .phone-text {
        font-size: 10px;
    }
    .marquee span {
        font-size: 10px;
        margin-right: 20px;
    }
    .nav-brand h2 {
        font-size: 1.1rem;
    }
    .nav-brand p {
        font-size: 0.7rem;
    }
    .nav-menu {
        margin-top: 8px;
    }
    .nav-menu a {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    header h1 {
        font-size: 1.8rem;
    }
    header p {
        font-size: 0.9rem;
    }
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
@media (max-width: 800px) {
    .products {
        flex-direction: column;
        align-items: center;
    }
    .product {
        width: 90%;
        margin-bottom: 18px;
    }
    .about-content {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .service-grid {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .about-stats {
        grid-template-columns: 1fr;
    }
}
/* Tablet için optimizasyonlar */
@media (min-width: 769px) and (max-width: 1024px) {
    .google-reviews {
        bottom: 20px;
        left: 20px;
        max-width: 350px;
        padding: 18px 22px;
    }
    .whatsapp-float {
        width: 65px;
        height: 65px;
        font-size: 32px;
        bottom: 25px;
        right: 25px;
    }
    .whatsapp-float::before {
        width: 34px;
        height: 34px;
    }
}
/* Touch cihazlar için özel optimizasyonlar */
@media (hover: none) and (pointer: coarse) {
    .whatsapp-float:hover {
        transform: none;
        background: #25d366;
    }
    .whatsapp-float:hover::before {
        width: 30px;
        height: 30px;
    }
    .google-reviews .review-btn:hover {
        transform: none;
        background: #4285f4;
    }
    /* Touch feedback için active states */
    .whatsapp-float:active {
        transform: scale(0.95);
        background: #128c7e;
    }
    .google-reviews .review-btn:active {
        transform: scale(0.98);
        background: #3367d6;
    }
}
/* Landscape orientation için optimizasyonlar */
@media (max-width: 768px) and (orientation: landscape) {
    .google-reviews {
        bottom: 70px;
        left: 10px;
        right: 10px;
        padding: 10px 15px;
        margin-bottom: 0;
    }
    .google-reviews h4 {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    .google-reviews p {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    .google-reviews .review-btn {
        padding: 4px 8px;
        font-size: 0.75rem;
        border-radius: 12px;
        min-height: 26px;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 10px;
        right: 10px;
        z-index: 1001;
    }
    .whatsapp-float::before {
        width: 26px;
        height: 26px;
    }
    footer {
        margin-bottom: 80px;
    }
}
/* Service Description Section */
.service-description {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    padding: 25px 0;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 0;
}
.service-description .container {
    max-width: 1000px;
}
.service-description h1 {
    margin: 0 0 15px 0;
    font-size: 1.4rem;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}
.service-description p {
    margin: 0;
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.service-description strong {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
/* Mobil için Service Description */
@media (max-width: 768px) {
    .service-description {
        padding: 20px 0;
    }
    .service-description h1 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    .service-description p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}
@media (max-width: 480px) {
    .service-description {
        padding: 15px 0;
    }
    .service-description h1 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    .service-description p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}
/* Services Dropdown Menu */
.services-dropdown {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    margin: 30px auto;
    max-width: 800px;
    overflow: hidden;
}
.services-dropdown .service-item {
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}
.services-dropdown .service-item:last-child {
    border-bottom: none;
}
.services-dropdown .service-header {
    background: #f8f9fa;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}
.services-dropdown .service-header:hover {
    background: #e9ecef;
}
.services-dropdown .service-header h3 {
    margin: 0;
    color: #1a237e;
    font-size: 1.1rem;
    font-weight: 600;
}
.services-dropdown .service-header .icon {
    font-size: 1.2rem;
    color: #1a237e;
    transition: transform 0.3s ease;
}
.services-dropdown .service-item.active .service-header .icon {
    transform: rotate(180deg);
}
.services-dropdown .service-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fff;
}
.services-dropdown .service-item.active .service-content {
    max-height: 300px;
}
.services-dropdown .service-content-inner {
    padding: 20px;
}
.services-dropdown .service-content p {
    margin: 0 0 15px 0;
    color: #495057;
    line-height: 1.6;
}
.services-dropdown .service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.services-dropdown .service-features li {
    padding: 8px 0;
    color: #495057;
    position: relative;
    padding-left: 20px;
}
.services-dropdown .service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}
.services-dropdown .service-cta {
    margin-top: 15px;
    text-align: center;
}
.services-dropdown .service-cta .btn {
    display: inline-block;
    background: #1a237e;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    margin: 0 5px;
}
.services-dropdown .service-cta .btn:hover {
    background: #283593;
    transform: translateY(-2px);
}
.services-dropdown .service-cta .btn.whatsapp {
    background: #25d366;
}
.services-dropdown .service-cta .btn.whatsapp:hover {
    background: #128c7e;
}
/* Mobil için Services Dropdown */
@media (max-width: 768px) {
    .services-dropdown {
        margin: 20px 15px;
        border-radius: 8px;
    }
    .services-dropdown .service-header {
        padding: 15px;
    }
    .services-dropdown .service-header h3 {
        font-size: 1rem;
    }
    .services-dropdown .service-content-inner {
        padding: 15px;
    }
    .services-dropdown .service-cta .btn {
        display: block;
        margin: 5px 0;
        text-align: center;
    }
}
/* Slideshow Styles */
#slideshow {
    padding: 60px 0;
    background: #f8f9fa;
}
.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}
.slideshow-container {
    position: relative;
    max-width: 1300px;
    height: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.slide {
    display: none;
    position: relative;
}
.slide.active {
    display: block;
}
.slide img {
    width: 100%;
    height: 800px;
    object-fit: cover;
    display: block;
    background-color: #f8f9fa;
}
/* SVG specific styles */
.slide img[src*=".svg"] {
    object-fit: contain;
    background-color: #ffffff;
    padding: 30px;
}
.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
}
/* Navigation arrows */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background: rgba(0,0,0,0.5);
    text-decoration: none;
    z-index: 10;
    border: none;
    outline: none;
}
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}
/* Navigation dots */
.dots-container {
    text-align: center;
    padding: 20px 0;
    background: white;
}
.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    border: none;
    outline: none;
}
.dot.active, .dot:hover {
    background-color: #1a237e;
}
/* Fade animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}
@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}
/* Responsive design for slideshow */
@media (max-width: 768px) {
    .slideshow-container {
        max-width: 100%;
        height: 650px;
        margin: 0 15px;
    }
    .slide img {
        height: 550px;
    }
    .slide-caption {
        font-size: 1rem;
        padding: 15px;
    }
    .prev, .next {
        padding: 12px;
        font-size: 16px;
    }
    .dot {
        height: 10px;
        width: 10px;
        margin: 0 3px;
    }
}
@media (max-width: 480px) {
    .slide img {
        height: 280px;
    }
    .slide-caption {
        font-size: 0.9rem;
        padding: 12px;
    }
    .prev, .next {
        padding: 10px;
        font-size: 14px;
    }
}
/* SEO için eklenen stiller */
.faq-intro {
    margin-bottom: 40px;
    text-align: center;
}
.faq-intro h2 {
    color: #1a237e;
    margin-bottom: 20px;
    font-size: 1.8rem;
}
.faq-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}
.faq-category {
    margin: 30px 0 20px 0;
    padding: 15px 20px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 8px;
    color: white;
}
.faq-category h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}
.seo-content {
    margin-top: 50px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #1e3c72;
}
.seo-content h2 {
    color: #1a237e;
    margin-bottom: 20px;
    font-size: 1.6rem;
}
.seo-content h3 {
    color: #1a237e;
    margin: 25px 0 15px 0;
    font-size: 1.3rem;
}
.seo-content p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}
.seo-content ul {
    margin: 15px 0;
    padding-left: 20px;
}
.seo-content li {
    margin: 8px 0;
    line-height: 1.5;
    color: #555;
}
/* WhatsApp number styles */
.whatsapp-number {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 211, 102, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 211, 102, 0.2);
    animation: whatsappPulse 2s ease-in-out infinite;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}
.whatsapp-number:hover {
    background: rgba(37, 211, 102, 0.2);
    transform: scale(1.05);
}
.whatsapp-icon {
    font-size: 16px;
    animation: whatsappRing 1.5s ease-in-out infinite;
}
.whatsapp-link {
    color: #25d366;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}
.whatsapp-link:hover {
    color: #128c7e;
    text-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
}
.whatsapp-text {
    font-size: 12px;
    opacity: 0.9;
    font-weight: 500;
    color: #25d366;
}
@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
@keyframes whatsappRing {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}
/* Responsive tasarım için SEO stilleri */
@media (max-width: 768px) {
    .faq-intro h2 {
        font-size: 1.5rem;
    }
    .faq-intro p {
        font-size: 1rem;
    }
    .faq-category h3 {
        font-size: 1.1rem;
    }
    .seo-content {
        padding: 25px;
        margin-top: 30px;
    }
    .seo-content h2 {
        font-size: 1.4rem;
    }
    .seo-content h3 {
        font-size: 1.2rem;
    }
}
@media (max-width: 480px) {
    .faq-intro h2 {
        font-size: 1.3rem;
    }
    .faq-category {
        padding: 12px 15px;
    }
    .faq-category h3 {
        font-size: 1rem;
    }
    .seo-content {
        padding: 20px;
    }
    .seo-content h2 {
        font-size: 1.3rem;
    }
    .seo-content h3 {
        font-size: 1.1rem;
    }
}
/* Modern Hizmet Box'ları */
.products.modern-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 32px;
    margin-top: 40px;
}
.product.modern-box {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(30,60,114,0.08);
    padding: 38px 28px 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s, transform 0.3s;
    border: 1.5px solid #f0f4ff;
    position: relative;
    overflow: hidden;
    min-height: 320px;
}
.product.modern-box:hover {
    box-shadow: 0 8px 32px rgba(30,60,114,0.16);
    transform: translateY(-4px) scale(1.03);
    border-color: #1a237e22;
}
.icon-box {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    font-size: 2.7rem;
    box-shadow: 0 2px 12px rgba(30,60,114,0.10);
    background: #f8f9fa;
    transition: background 0.3s, box-shadow 0.3s;
}
.product.modern-box.ekran .icon-box { background: linear-gradient(135deg, #1a237e 60%, #3949ab 100%); color: #fff; }
.product.modern-box.led .icon-box { background: linear-gradient(135deg, #ffd600 60%, #fffde7 100%); color: #bfa600; }
.product.modern-box.koruyucu .icon-box { background: linear-gradient(135deg, #43cea2 60%, #185a9d 100%); color: #fff; }
.product.modern-box.askiaparati .icon-box { background: linear-gradient(135deg, #ff512f 60%, #dd2476 100%); color: #fff; }
.product.modern-box.kumanda .icon-box { background: linear-gradient(135deg, #00c6ff 60%, #0072ff 100%); color: #fff; }
.product.modern-box.kart .icon-box { background: linear-gradient(135deg, #f7971e 60%, #ffd200 100%); color: #fff; }
.icon {
    font-size: 2.5rem;
    display: block;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(30,60,114,0.10);
}
.product.modern-box h3 {
    color: #1a237e;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 14px;
    text-align: center;
}
.product.modern-box p {
    color: #444;
    font-size: 1.05rem;
    text-align: center;
    margin-bottom: 22px;
    line-height: 1.6;
}
.product.modern-box .btn {
    margin-top: auto;
    width: 100%;
    max-width: 220px;
    font-size: 1rem;
    border-radius: 22px;
    padding: 12px 0;
    font-weight: 600;
}
@media (max-width: 900px) {
    .products.modern-boxes {
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }
}
@media (max-width: 600px) {
    .products.modern-boxes {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .product.modern-box {
        padding: 28px 12px 22px 12px;
        min-height: 220px;
    }
    .icon-box {
        width: 56px;
        height: 56px;
        font-size: 1.7rem;
        margin-bottom: 14px;
    }
    .product.modern-box h3 {
        font-size: 1.08rem;
    }
    .product.modern-box p {
        font-size: 0.97rem;
    }
} 

/* ===== KAPSAMLI RESPONSIVE TASARIM KURALLARI ===== */

/* Tablet ve küçük ekranlar için genel kurallar */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .products.modern-boxes {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-content .container {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-text {
        flex: 1;
    }
}

/* Tablet için özel kurallar */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Header responsive */
    .top-banner {
        padding: 6px 0;
    }
    
    .banner-content {
        padding: 0 15px;
        flex-direction: column;
        gap: 10px;
    }
    
    .phone-number {
        padding: 4px 10px;
        font-size: 12px;
    }
    
    .marquee {
        margin-left: 0;
        height: 16px;
    }
    
    .marquee span {
        font-size: 12px;
    }
    
    /* Navbar responsive */
    .navbar {
        padding: 10px 0;
    }
    
    .navbar .container {
        flex-direction: row;
        gap: 10px;
    }
    
    .nav-brand h2 {
        font-size: 1.3rem;
    }
    
    .nav-brand p {
        font-size: 0.8rem;
    }
    
    .nav-menu {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .nav-menu li {
        width: auto;
    }
    
    .nav-menu a {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .nav-menu .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.02);
        margin-top: 5px;
        border-radius: 8px;
        padding: 10px;
    }
    
    /* Ana içerik responsive */
    .service-description {
        padding: 40px 0;
    }
    
    .service-description h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .service-description p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Ürün kartları responsive */
    .product.modern-box {
        padding: 20px;
        min-height: auto;
    }
    
    .icon-box {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .product.modern-box h3 {
        font-size: 1.2rem;
        margin: 15px 0 10px;
    }
    
    .product.modern-box p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .product.modern-box .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Servis kartları responsive */
    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-card ul {
        font-size: 0.9rem;
    }
    
    /* İstatistik kartları responsive */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* Değer kartları responsive */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-card {
        padding: 20px;
    }
    
    .value-card h3 {
        font-size: 1.2rem;
    }
    
    .value-card p {
        font-size: 0.9rem;
    }
    
    /* İletişim responsive */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info {
        padding: 30px 20px;
    }
    
    .contact-item {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .contact-details h3 {
        font-size: 1.1rem;
    }
    
    .contact-details p, .contact-details a {
        font-size: 0.9rem;
    }
    
    /* Form responsive */
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    /* Slideshow responsive */
    .slideshow-container {
        height: 300px;
    }
    
    .slide img {
        max-height: 250px;
    }
    
    .slide-caption {
        padding: 15px;
        font-size: 0.9rem;
    }
    
    .prev, .next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
        margin: 0 5px;
    }
    
    /* FAQ responsive */
    .faq-list {
        gap: 15px;
    }
    
    .faq-item {
        padding: 15px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Google Reviews responsive */
    .google-reviews {
        padding: 20px;
        margin: 20px 15px;
    }
    
    .google-reviews h4 {
        font-size: 1.2rem;
    }
    
    .google-reviews p {
        font-size: 0.9rem;
    }
    
    .google-reviews .review-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* WhatsApp float responsive */
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float::before {
        font-size: 28px;
    }
}

/* Mobil cihazlar için özel kurallar */
@media (max-width: 480px) {
    body {
        font-size: 13px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    /* Header responsive */
    .top-banner {
        padding: 4px 0;
    }
    
    .banner-content {
        padding: 0 10px;
    }
    
    .phone-number {
        padding: 3px 8px;
        font-size: 11px;
    }
    
    .phone-link {
        font-size: 12px;
    }
    
    .phone-text {
        font-size: 10px;
    }
    
    .marquee span {
        font-size: 11px;
    }
    
    /* Navbar responsive */
    .navbar {
        padding: 8px 0;
    }
    
    .nav-brand h2 {
        font-size: 1.1rem;
    }
    
    .nav-brand p {
        font-size: 0.7rem;
    }
    
    .nav-menu a {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    /* Ana içerik responsive */
    .service-description {
        padding: 30px 0;
    }
    
    .service-description h1 {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .service-description p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Ürün kartları responsive */
    .product.modern-box {
        padding: 15px;
    }
    
    .icon-box {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .product.modern-box h3 {
        font-size: 1.1rem;
        margin: 12px 0 8px;
    }
    
    .product.modern-box p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .product.modern-box .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    /* Servis kartları responsive */
    .service-card {
        padding: 15px;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card ul {
        font-size: 0.8rem;
    }
    
    /* İstatistik kartları responsive */
    .stat-item {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Değer kartları responsive */
    .value-card {
        padding: 15px;
    }
    
    .value-card h3 {
        font-size: 1.1rem;
    }
    
    .value-card p {
        font-size: 0.8rem;
    }
    
    /* İletişim responsive */
    .contact-info {
        padding: 20px 15px;
    }
    
    .contact-item {
        padding: 12px;
        margin-bottom: 12px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .contact-details h3 {
        font-size: 1rem;
    }
    
    .contact-details p, .contact-details a {
        font-size: 0.8rem;
    }
    
    /* Form responsive */
    .contact-form {
        padding: 20px 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    /* Slideshow responsive */
    .slideshow-container {
        height: 250px;
    }
    
    .slide img {
        max-height: 200px;
    }
    
    .slide-caption {
        padding: 12px;
        font-size: 0.8rem;
    }
    
    .prev, .next {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
        margin: 0 3px;
    }
    
    /* FAQ responsive */
    .faq-item {
        padding: 12px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        font-size: 0.8rem;
    }
    
    /* Google Reviews responsive */
    .google-reviews {
        padding: 15px;
        margin: 15px 10px;
    }
    
    .google-reviews h4 {
        font-size: 1.1rem;
    }
    
    .google-reviews p {
        font-size: 0.8rem;
    }
    
    .google-reviews .review-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    /* WhatsApp float responsive */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float::before {
        font-size: 24px;
    }
}

/* Çok küçük ekranlar için özel kurallar */
@media (max-width: 320px) {
    body {
        font-size: 12px;
    }
    
    .container {
        padding: 0 8px;
    }
    
    /* Header responsive */
    .banner-content {
        padding: 0 8px;
    }
    
    .phone-number {
        padding: 2px 6px;
        font-size: 10px;
    }
    
    .phone-link {
        font-size: 11px;
    }
    
    .phone-text {
        font-size: 9px;
    }
    
    .marquee span {
        font-size: 10px;
    }
    
    /* Navbar responsive */
    .nav-brand h2 {
        font-size: 1rem;
    }
    
    .nav-brand p {
        font-size: 0.6rem;
    }
    
    .nav-menu a {
        padding: 8px 10px;
        font-size: 0.8rem;
    }
    
    /* Ana içerik responsive */
    .service-description {
        padding: 25px 0;
    }
    
    .service-description h1 {
        font-size: 1.3rem;
    }
    
    .service-description p {
        font-size: 0.8rem;
    }
    
    /* Ürün kartları responsive */
    .product.modern-box {
        padding: 12px;
    }
    
    .icon-box {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .product.modern-box h3 {
        font-size: 1rem;
    }
    
    .product.modern-box p {
        font-size: 0.7rem;
    }
    
    .product.modern-box .btn {
        padding: 6px 12px;
        font-size: 0.7rem;
    }
    
    /* Servis kartları responsive */
    .service-card {
        padding: 12px;
    }
    
    .service-card h3 {
        font-size: 1rem;
    }
    
    .service-card ul {
        font-size: 0.7rem;
    }
    
    /* İstatistik kartları responsive */
    .stat-item {
        padding: 12px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    /* Değer kartları responsive */
    .value-card {
        padding: 12px;
    }
    
    .value-card h3 {
        font-size: 1rem;
    }
    
    .value-card p {
        font-size: 0.7rem;
    }
    
    /* İletişim responsive */
    .contact-info {
        padding: 15px 12px;
    }
    
    .contact-item {
        padding: 10px;
        margin-bottom: 10px;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .contact-details h3 {
        font-size: 0.9rem;
    }
    
    .contact-details p, .contact-details a {
        font-size: 0.7rem;
    }
    
    /* Form responsive */
    .contact-form {
        padding: 15px 12px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    /* Slideshow responsive */
    .slideshow-container {
        height: 200px;
    }
    
    .slide img {
        max-height: 160px;
    }
    
    .slide-caption {
        padding: 10px;
        font-size: 0.7rem;
    }
    
    .prev, .next {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .dot {
        width: 6px;
        height: 6px;
        margin: 0 2px;
    }
    
    /* FAQ responsive */
    .faq-item {
        padding: 10px;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .faq-answer {
        font-size: 0.7rem;
    }
    
    /* Google Reviews responsive */
    .google-reviews {
        padding: 12px;
        margin: 12px 8px;
    }
    
    .google-reviews h4 {
        font-size: 1rem;
    }
    
    .google-reviews p {
        font-size: 0.7rem;
    }
    
    .google-reviews .review-btn {
        padding: 6px 12px;
        font-size: 0.7rem;
    }
    
    /* WhatsApp float responsive */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 12px;
        right: 12px;
    }
    
    .whatsapp-float::before {
        font-size: 20px;
    }
}

/* Yatay mobil cihazlar için özel kurallar */
@media (max-width: 768px) and (orientation: landscape) {
    .top-banner {
        padding: 3px 0;
    }
    
    .banner-content {
        flex-direction: row;
        gap: 15px;
    }
    
    .marquee {
        margin-left: 15px;
    }
    
    .navbar {
        padding: 5px 0;
    }
    
    .navbar .container {
        flex-direction: row;
        gap: 10px;
    }
    
    .nav-menu {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .nav-menu li {
        width: auto;
    }
    
    .nav-menu a {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .service-description {
        padding: 20px 0;
    }
    
    .service-description h1 {
        font-size: 1.4rem;
    }
    
    .slideshow-container {
        height: 180px;
    }
    
    .slide img {
        max-height: 140px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 10px;
        right: 10px;
    }
    
    .whatsapp-float::before {
        font-size: 20px;
    }
}

/* Touch cihazlar için özel kurallar */
@media (hover: none) and (pointer: coarse) {
    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .product.modern-box:hover {
        transform: none;
    }
    
    .service-card:hover {
        transform: none;
    }
    
    .stat-item:hover {
        transform: none;
    }
    
    .value-card:hover {
        transform: none;
    }
    
    .contact-item:hover {
        transform: none;
    }
    
    .whatsapp-float:hover {
        transform: scale(1.1);
    }
    
    .google-reviews .review-btn:hover {
        transform: none;
    }
}

/* Yüksek DPI ekranlar için özel kurallar */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icon-box {
        background-size: cover;
    }
    
    .product.modern-box img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced motion tercihi için özel kurallar */
@media (prefers-reduced-motion: reduce) {
    .whatsapp-float {
        animation: none;
    }
    
    .whatsapp-float:hover {
        transform: none;
    }
    
    .whatsapp-float:active {
        transform: none;
    }
    
    .google-reviews {
        animation: none;
    }
    
    .google-reviews .review-btn:hover {
        transform: none;
    }
    
    .google-reviews .review-btn:active {
        transform: none;
    }
    
    .whatsapp-float,
    .google-reviews .review-btn {
        transition: none;
    }
}

/* Dark mode desteği */
@media (prefers-color-scheme: dark) {
    .google-reviews {
        background: rgba(0, 0, 0, 0.9);
        color: #fff;
    }
    
    .google-reviews h4 {
        color: #ffd700;
    }
    
    .google-reviews p {
        color: #ccc;
    }
    
    .google-reviews .close-btn {
        color: #fff;
    }
    
    .google-reviews .close-btn:hover,
    .google-reviews .close-btn:focus {
        color: #ffd700;
    }
}

/* Print için özel kurallar */
@media print {
    .top-banner,
    .navbar,
    .whatsapp-float,
    .google-reviews {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    .product.modern-box,
    .service-card,
    .stat-item,
    .value-card,
    .contact-item {
        break-inside: avoid;
        page-break-inside: avoid;
    }
} 