/* --- Genel Stiller --- */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

h1, h2, h3 {
    font-family: 'Roboto', sans-serif;
    color: #34495e;
    margin-bottom: 20px;
}

h1 {
    font-size: 48px;
    text-align: center;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    font-size: 36px;
}

h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background-color: #e74c3c;
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    border-radius: 3px;
}

h3 {
    font-size: 24px;
    margin-top: 0;
}

a {
    text-decoration: none;
    color: #e74c3c;
    transition: color 0.3s ease;
}

a:hover {
    color: #c0392b;
}

/* --- Header --- */
header {
    background-color: #5d6165;
    color: #ecf0f1;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

header .logo a {
    color: #ecf0f1;
    font-size: 24px;
    font-weight: bold;
}

/* --- Mobil Menü Stilleri --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    top: 10px;
    right: 20px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.4s;
}

.menu {
    display: flex;
    justify-content: flex-end;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: #ecf0f1;
    font-weight: 600;
    padding: 10px 0;
    position: relative;
}

header nav ul li a::after {
    content: '';
    width: 0;
    height: 2px;
    background-color: #e74c3c;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: width 0.3s ease;
}

header nav ul li a:hover::after {
    width: 100%;
}



.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

/* --- Hero Section --- */
.hero {
    background: url('../img/hero-bg.png') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    margin-top: 60px;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-blog {
    background: url('../img/hero-bg2.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
    position: relative;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-blog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-blog .container {
    position: relative;
    z-index: 1;
}

.hero-blog h1 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-blog p {
    font-size: 20px;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}


.btn-whatsapp {
    display: inline-block;
    background-color: #25d366;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-3px);
}

/* --- Sections Padding --- */
.services,
.gallery,
.why-us,
.contact,
.blog-section {
    padding: 60px 0;
}

/* --- Services Section --- */
.services .service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.services .service-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border-bottom: 4px solid #e74c3c;
}

.services .service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.services .service-item h3 {
    color: #e74c3c;
    margin-top: 10px;
}

/* --- Gallery Section --- */
.gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery .gallery-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
}

.gallery .gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery .gallery-item:hover img {
    transform: scale(1.05);
}

.gallery .gallery-item .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    margin: 0;
    text-align: center;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery .gallery-item:hover .gallery-caption {
    opacity: 1;
}

/* --- Why Us Section --- */
.why-us .reason-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-us .reason-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 4px solid #3498db;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-us .reason-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.why-us .reason-item h3 {
    color: #3498db;
    margin-top: 10px;
}

/* --- Blog Section --- */
.blog-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.blog-card h3 {
    margin-bottom: 15px;
}

.blog-card p {
    color: #555;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    color: #007bff;
    font-weight: bold;
}

.read-more:hover {
    text-decoration: underline;
}

/* --- Contact Section --- */
.contact {
    background-color: #f0f0f0;
}

.contact-info {
    text-align: center;
    margin-bottom: 30px;
}

.contact-info p {
    margin-bottom: 10px;
}

.btn-whatsapp-large {
    display: block;
    margin: 20px auto;
    background-color: #25d366;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease;
}

.btn-whatsapp-large:hover {
    background-color: #128c7e;
}

.map-container {
    margin-top: 40px;
}

/* --- Footer --- */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
}

footer a {
    color: #fff;
}

/* --- Blog Post Styles (style2.css içeriği) --- */
.blog-post h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.blog-post p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.blog-post p strong {
    font-weight: bold;
    color: #333;
}

.blog-post a {
    color: #1e90ff;
    text-decoration: none;
}

.blog-post a:hover {
    text-decoration: underline;
}

.blog-post ul {
    list-style-type: none;
    padding-left: 0;
}

.blog-post ul li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

.blog-post ul li::before {
    content: "•";
    color: #e74c3c;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.blog-post img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.blog-post blockquote {
    border-left: 5px solid #ccc;
    padding: 10px;
    font-style: italic;
    color: #777;
}
    /* Blog Post Başlık Stili */
    .blog-post h2 {
        font-size: 2rem;
        color: #333;
        margin-bottom: 15px;
        font-weight: bold;
    }

    /* Blog Post Paragraflarının Stili */
    .blog-post p {
        font-size: 1rem;
        line-height: 1.6;
        color: #555;
        margin-bottom: 15px;
    }

    .blog-post p strong {
        font-weight: bold;
        color: #333;
    }

    /* Blog Post Link Stili */
    .blog-post a {
        color: #1e90ff;
        text-decoration: none;
    }

    .blog-post a:hover {
        text-decoration: underline;
    }

    /* Blog Post Liste Stili */
    .blog-post ul {
        list-style-type: none;
        padding-left: 0;
    }

    .blog-post ul li {
        font-size: 1rem;
        color: #555;
        margin-bottom: 10px;
    }

    /* Blog Post İçerik Alanı */
    .blog-post {
        background-color: #f9f9f9;
        border-radius: 8px;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
    }

    /* Blog Post Başlık Altı */
    .blog-post .date {
        font-size: 0.9rem;
        color: #888;
        margin-top: -10px;
    }

    /* Blog Post İçeriği Altında Kaynaklar */
    .blog-post .sources {
        font-size: 0.9rem;
        color: #666;
        margin-top: 20px;
    }
* Blog Post İçerik Alanı */
    .blog-post {
        background-color: #f9f9f9;
        border-radius: 8px;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
    }

    /* Blog Post Başlık Altı */
    .blog-post .date {
        font-size: 0.9rem;
        color: #888;
        margin-top: -10px;
    }

    /* Blog Post İçeriği Altında Kaynaklar */
    .blog-post .sources {
        font-size: 0.9rem;
        color: #666;
        margin-top: 20px;
    }

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
    .container {
        width: 95%;
    }

    h1 {
        font-size: 36px;
    }

    .hero {
        padding: 80px 20px;
        margin-top: 50px;
        min-height: 300px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

/* Mobil Görünümde Menü Düzeni */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #004d99;
        text-align: center;
        flex-direction: column;
    }

    .menu.active {
        display: flex;
    }

    .menu ul {
        flex-direction: column;
        padding: 20px 0;
    }

    .menu ul li {
        margin: 10px 0;
    }

    header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .hero-blog { padding: 40px 20px; margin-top: 100px; min-height: 40px; } /* Mobil Hero düzenlemesi */
    .hero-blog h1 { font-size: 32px; }
    .hero-blog p { font-size: 16px; }

    h2 { font-size: 28px; margin-bottom: 30px; }
    h3 { font-size: 20px; }

    .services .service-item,
    .why-us .reason-item {
         padding: 20px; /* Mobil padding */
    }
}

.image-container video {
    max-width: 100%;
    height: auto;
    display: inline-block;
  }

    .services .service-item,
    .why-us .reason-item {
        padding: 20px;
    }

    .btn-whatsapp,
    .btn-whatsapp-large