/* Reset and 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: #f8f9fa;
}

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

/* Header Styles */
.header, .site-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

/* Logo Styles */
.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.logo-image {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

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

.logo h1, .logo-text h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.tagline {
    font-size: 0.9rem;
    opacity: 0.9;
}

.phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ff6b35;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.phone-btn:hover {
    background-color: #ff5722;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    margin-left: 10px;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Social Media Icons */
.social-media-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.social-media-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    color: white;
}

.social-media-icons a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px) scale(1.1);
}

.social-media-icons a:nth-child(1):hover {
    background: #1877f2; /* Facebook */
}

.social-media-icons a:nth-child(2):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); /* Instagram */
}

.social-media-icons a:nth-child(3):hover {
    background: #000000; /* Twitter/X */
}

.social-media-icons a:nth-child(4):hover {
    background: #ff0000; /* YouTube */
}

.social-media-icons a:nth-child(5):hover {
    background: #0077b5; /* LinkedIn */
}

.social-media-icons a:nth-child(6):hover {
    background: #25D366; /* WhatsApp */
}

/* Navigation Styles */
.nav {relativeound-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 15px 25px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    background-color: #1e3c72;
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

.btn {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #ff6b35;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    background-color: #ff5722;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
    background-color: white;
    color: #667eea;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.btn-large {
    font-size: 1.3rem;
    padding: 20px 40px;
}

/* Table of Contents */
.toc-section {
    padding: 40px 0;
    background-color: #fff;
}

.toc-box {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.toc-box h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1e3c72;
}

.toc-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}

.toc-list li {
    padding: 0;
}

.toc-list a {
    display: block;
    padding: 12px 20px;
    background-color: white;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid #1e3c72;
}

.toc-list a:hover {
    background-color: #1e3c72;
    color: white;
    transform: translateX(5px);
}

/* Main Content */
.main-content {
    padding: 60px 0;
    background-color: #fff;
}

.content-article {
    max-width: 900px;
    margin: 0 auto;
}

.content-article h2 {
    font-size: 2.2rem;
    color: #1e3c72;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #ff6b35;
}

.content-article h3 {
    font-size: 1.8rem;
    color: #2a5298;
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-article h4 {
    font-size: 1.4rem;
    color: #1e3c72;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-article p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: justify;
}

.content-article strong {
    color: #1e3c72;
    font-weight: 600;
}

.service-list {
    list-style: none;
    margin: 20px 0;
}

.service-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.3rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 5px solid #1e3c72;
    position: relative;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

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

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

.service-card h4 {
    font-size: 1.4rem;
    color: #1e3c72;
    margin-bottom: 15px;
    margin-top: 0;
    text-align: center;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.feature-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    margin-top: 0;
    color: white;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    margin: 40px 0;
}

.faq-item {
    background-color: #f8f9fa;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-left: 5px solid #ff6b35;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h4 {
    color: #1e3c72;
    margin-bottom: 15px;
    margin-top: 0;
    font-size: 1.2rem;
}

.faq-item p {
    margin-bottom: 0;
    text-align: left;
}

/* Reviews Section */
.reviews-section {
    padding: 60px 0;
    background-color: #fff;
}

.reviews-section h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #1e3c72;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

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

.review-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 5px solid #ff6b35;
}

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

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

.reviewer-info strong {
    color: #1e3c72;
    font-size: 1.1rem;
}

.review-stars {
    color: #ffa500;
    font-size: 1.2rem;
    margin-top: 5px;
}

.highlight-text {
    color: #ff6b35;
    font-weight: 600;
    margin-top: 5px;
}

/* Service Guarantees Section */
.service-guarantees {
    margin: 50px 0;
    padding: 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
}

.section-title {
    font-size: 2rem;
    color: #1e3c72;
    text-align: center;
    margin-bottom: 40px;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.guarantee-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
    border-top: 5px solid #ff6b35;
}

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

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.guarantee-card h4 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-bottom: 15px;
    margin-top: 0;
}

.guarantee-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    text-align: center;
}

/* Service Info Table */
.service-info-table {
    margin: 50px 0;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

.info-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.info-table tr:last-child {
    border-bottom: none;
}

.info-table td {
    padding: 20px 15px;
    font-size: 1.05rem;
}

.info-table td:first-child {
    width: 40%;
    color: #1e3c72;
}

.info-table td a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
}

.info-table td a:hover {
    text-decoration: underline;
}

.status-open {
    color: #28a745;
    font-weight: 600;
    background: #d4edda;
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
}

.review-text {
    color: #444;
    line-height: 1.7;
    font-size: 1rem;
    font-style: italic;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.contact-section h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #1e3c72;
    margin-bottom: 50px;
}

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

.contact-info h3 {
    font-size: 1.8rem;
    color: #1e3c72;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-item svg {
    flex-shrink: 0;
    color: #ff6b35;
}

.contact-item strong {
    display: block;
    color: #1e3c72;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-item a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form-container {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-form-container h3 {
    font-size: 1.8rem;
    color: #1e3c72;
    margin-bottom: 20px;
}

.contact-form-container p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #666;
}

/* Footer */
.footer {
    background-color: #1e3c72;
    color: white;
    padding: 50px 0 20px;
}

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

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ff6b35;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
}

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

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

.footer-section a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: #ff6b35;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 1001;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    }

    .nav-menu {
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        padding: 10px 0;
        overflow-x: auto;
    }

    .nav-menu li {
        flex-shrink: 0;
    }

    .nav-menu a {
        border-bottom: none;
        width: auto;
        text-align: center;
    
    /* Mobilde içerik için alt boşluk ekle (menü için) */
    body {
        padding-bottom: 60px;
    }
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .social-media-icons {
        justify-content: center;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }

    .content-article h2 {
        font-size: 1.8rem;
    }
,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .toc-list {
        grid-template-columns: 1fr;
    }
    
    .review-card {
        min-width: auto;
    }
    
    .guarantee-grid {
        grid-template-columns: 1fr;
    }
    
    .info-table {
        font-size: 0.9rem;
    }
    
    .info-table td {
        padding: 15px 10px;
        display: block;
        width: 100% !important;
    }
    
    .info-table tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid #e0e0e0;
        border-radius: 10px;
        padding: 10px;
    }
    
    .whatsapp-btn {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }
    
    .header-contact {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    .phone-btn {
        width: 100%;
        justify-content: center;
    }
    
    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .toc-list {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background-color: #ff6b35;
    color: white;
}

/* Print Styles */
@media print {
    .header,
    .nav,
    .hero,
    .footer {
        display: none;
    }
}