/*
Theme Name: Kocaeli Kombi Servisi
Description: Kocaeli'de kombi tamiri, bakımı, montajı ve petek temizliği hizmetleri için özel tasarlanmış profesyonel WordPress teması. Google Ads optimizasyonu ve SEO dostu.
Author: Kocaeli Kombi Servisi
Version: 1.0
Text Domain: kocaelikombi
*/

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    margin: 0;
    padding: 0;
    padding-top: 60px; /* Header yüksekliği için */
}



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


/* Navigation */
.main-navigation {
    background: #1e3c72;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    padding: 0.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Mobile Menu Toggle - Hidden on Desktop */
.mobile-menu-toggle {
    display: none;
}

/* Mobile Menu - Hidden on Desktop */
.mobile-menu {
    display: none;
}

/* Desktop Phone Link */
@media (min-width: 769px) {
    .phone-link span {
        display: inline !important;
    }
    
    .phone-link {
        padding: 0.8rem 1.5rem !important;
        font-size: 1rem !important;
        background: rgba(255,255,255,0.1) !important;
        border-radius: 25px !important;
    }
}

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

.nav-content .site-logo h1 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

.nav-content .site-logo h1 a {
    color: white;
    text-decoration: none;
}

.nav-menu-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.nav-menu a:hover {
    background: rgba(255,255,255,0.2);
    color: white;
}

.nav-menu li.active a {
    background: rgba(255,255,255,0.3);
    color: white;
    font-weight: 600;
}

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

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #28a745;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.phone-link:hover {
    background: #218838;
    color: white;
    transform: translateY(-2px);
}

.phone-link i {
    font-size: 1.1rem;
}

/* Navbar scroll effect */
.main-navigation.scrolled {
    background: rgba(30, 60, 114, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(30, 60, 114, 0.8), rgba(42, 82, 152, 0.8)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23f8f9fa" width="1200" height="600"/><circle fill="%23e9ecef" cx="200" cy="150" r="80"/><circle fill="%23dee2e6" cx="800" cy="300" r="120"/><circle fill="%23e9ecef" cx="1000" cy="100" r="60"/></svg>');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #28a745;
    color: white;
}

.btn-primary:hover {
    background: #218838;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #25d366;
    color: white;
    border: 2px solid #25d366;
}

.btn-secondary:hover {
    background: #20ba5a;
    border-color: #20ba5a;
    color: white;
}

/* Services Section */
.services-section {
    padding: 2rem 0;
    background: #f8f9fa;
    position: relative;
}


.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.2rem;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

.service-icon {
    font-size: 3rem;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e3c72;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-card .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
}

/* About Section */
.about-section {
    padding: 4rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    color: #1e3c72;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.about-features {
    list-style: none;
    margin-top: 2rem;
}

.about-features li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 2rem;
}

.about-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Contact Section */
.contact-section {
    padding: 2rem 0;
    background: #1e3c72;
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.contact-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    color: #333;
}

.contact-form h3 {
    color: #1e3c72;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

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

/* Footer */
.site-footer {
    background: #2c3e50;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* WhatsApp Sticky Button */
.whatsapp-sticky {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn i {
    font-size: 1.2rem;
}

.whatsapp-btn:hover {
    background: #20ba5a;
    transform: scale(1.05);
    color: white;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Navbar Mobile */
    .nav-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0;
    }
    
    .nav-menu-wrapper {
        display: none !important;
    }
    
    .site-logo {
        order: 1;
        flex: 1;
    }
    
    .site-logo h1 {
        font-size: 1.2rem;
        margin: 0;
    }
    
    .site-logo img {
        height: 35px !important;
        width: auto !important;
    }
    
    .nav-phone {
        order: 2;
    }
    
    .mobile-menu-toggle {
        order: 3;
    }
    
    .phone-link {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        background: rgba(255,255,255,0.15);
        border-radius: 15px;
        display: inline-block;
        white-space: nowrap;
    }
    
    .phone-link span {
        display: inline;
    }
    
    .phone-link i {
        font-size: 1rem;
    }
    
    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.5rem;
    }
    
    
    .mobile-menu-toggle:hover {
        color: #ccc;
    }
    
    /* Mobile Menu */
    .mobile-menu {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1e3c72;
        z-index: 1000;
        padding: 1rem 0;
    }
    
    .mobile-menu.active {
        display: block !important;
    }
    
    .mobile-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-menu li {
        margin: 0;
    }
    
    .mobile-menu a {
        display: block;
        padding: 1rem 2rem;
        color: white;
        text-decoration: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .mobile-menu a:hover {
        background: rgba(255,255,255,0.1);
    }
    
    .mobile-menu li.active a {
        background: rgba(255,255,255,0.2);
        font-weight: 600;
    }
    
    /* Hero Section Mobile */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* About Section Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: center;
    }
    
    .about-features {
        text-align: center;
    }
    
    .about-features li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    /* SEO Content Mobile */
    .seo-content {
        padding: 1.5rem 0;
    }
    
    .seo-content h2 {
        font-size: 1.4rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .seo-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .seo-content p {
        font-size: 0.9rem;
        line-height: 1.6;
        text-align: justify;
    }
    
    /* Contact Content Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    body {
        padding-top: 70px; /* Mobilde navbar yüksekliği */
    }
    
    
    .main-navigation {
        padding: 0.5rem 0;
    }
    
    /* Extra Small Mobile Hero */
    .hero-section {
        padding: 1.5rem 0;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    /* Extra Small Mobile Buttons */
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        max-width: 250px;
    }
    
    /* Extra Small Mobile Services */
    .service-card {
        padding: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
    
    /* Extra Small Mobile About */
    .about-text h2 {
        font-size: 1.3rem;
    }
    
    .about-text p {
        font-size: 0.9rem;
    }
    
    /* Extra Small Mobile SEO */
    .seo-content h2 {
        font-size: 1.2rem;
    }
    
    .seo-content h3 {
        font-size: 1.1rem;
    }
    
    .seo-content p {
        font-size: 0.85rem;
    }
    
    /* Extra Small Mobile WhatsApp */
    .whatsapp-sticky {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-btn {
        padding: 0.7rem;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        font-size: 0.8rem;
    }
    
    .whatsapp-btn span {
        display: none;
    }
    
    .whatsapp-btn i {
        font-size: 1.1rem;
    }
    
    /* Extra Small Mobile Footer */
    .site-footer {
        padding: 2rem 0 1rem;
    }
    
    .site-footer .container > div:first-child {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .site-footer h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .site-footer p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .site-footer ul {
        columns: 1;
    }
    
    .site-footer li {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }
    
    .site-footer .container > div:last-child {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* SEO ve Google Ads Optimizasyonu */
.seo-content {
    padding: 2rem 0;
    background: #f8f9fa;
}

.seo-content h2 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

.seo-content p {
    color: #666;
    line-height: 1.8;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.visible { display: block; }
