:root {
    --primary-color: #bc6c25; /* Sıcak kahverengi tonu */
    --secondary-color: #f4f1de; /* Açık kum tonu arka plan */
    --accent-color: #dda15e; /* Yumuşak toprak turuncusu vurgu */
    --text-color: #3f5526; /* Koyu orman yeşili metin */
    --light-text: #606c38; /* Açık haki gri metin */
    --white: #ffffff;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    --transition: all 0.35s  ease;
    --font-main: 'Poppins', sans-serif;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

body {
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(94, 96, 206, 0.3);
    font-size: 16px;
    letter-spacing: 0.5px;
}

.btn:hover {
    background-color: var(--accent-color);
    color: var(--text-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(100, 223, 223, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 5px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo span {
    color: var(--accent-color);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 35px;
}

nav ul li a {
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

#mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, #f6f8ff 0%, #f0f4ff 100%);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    width: 50%;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--primary-color);
    line-height: 1.2;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 35px;
    color: var(--light-text);
    max-width: 90%;
}

.hero-image {
    width: 45%;
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.hero-image::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-color);
    border-radius: 20px;
    z-index: -1;
}

/* About Section */
.about {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: "";
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--accent-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    font-size: 18px;
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: top;
}

.about-image {
    width: 40%;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.experience-badge span {
    font-size: 36px;
    line-height: 1;
}

.about-text {
    width: 55%;
    padding-left: 40px;
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.qualification {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
}

.qualification-item {
    background-color: var(--secondary-color);
    padding: 15px 20px;
    border-radius: 10px;
    margin-right: 15px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.qualification-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

/* Services Section */
.services {
    padding: 120px 0;
    background-color: var(--secondary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    opacity: 0.1;
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-15px);
}

.service-card:hover::before {
    height: 100%;
}

.service-card i {
    font-size: 50px;
    color: var(--accent-color);
    margin-bottom: 25px;
    display: block;
    transition: var(--transition);
}

.service-card:hover i {
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
    transition: var(--transition);
}

/* Approach Section */
.approach {
    padding: 120px 0;
}

.approach-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.tab-btn {
    padding: 15px 25px;
    background-color: var(--white);
    color: var(--light-text);
    border: none;
    cursor: pointer;
    margin: 0 5px;
    font-weight: 600;
    border-radius: 5px;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.tab-content.active {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.approach-image {
    width: 45%;
}

.approach-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.approach-text {
    width: 50%;
    padding: 30px;
}

.approach-text h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, #f6f8ff 0%, #f0f4ff 100%);
}

.testimonial-slider {
    margin-top: 60px;
    position: relative;
    padding: 0 70px;
}

.testimonial-slides {
    display: flex;
    overflow: hidden;
}

.testimonial-slide {
    flex: 0 0 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
    display: flex;
    position: relative;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-slide::before {
    content: '\201C';
    font-size: 150px;
    color: rgba(94, 96, 206, 0.1);
    position: absolute;
    top: 20px;
    left: 20px;
    line-height: 0.8;
    font-family: serif;
}

.client-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 30px;
    flex-shrink: 0;
    border: 5px solid rgba(94, 96, 206, 0.1);
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-content {
    flex: 1;
}

.client-info h4 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.client-info p {
    color: var(--light-text);
    margin-bottom: 15px;
    font-style: italic;
}

.quote {
    color: var(--text-color);
    line-height: 1.8;
}

.testimonial-controls {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.testimonial-controls button {
    background: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    color: var(--primary-color);
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-controls button:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* FAQ Section */
.faq {
    padding: 120px 0;
}

.faq-list {
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    margin-bottom: 25px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: var(--white);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
}

.faq-question span {
    font-size: 20px;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-question {
    background-color: var(--primary-color);
}

.faq-item.active .faq-question h3,
.faq-item.active .faq-question span {
    color: var(--white);
}

.faq-item.active .faq-question span {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 1000px;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #f6f8ff 0%, #f0f4ff 100%);
}

.contact-container {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}

.contact-info {
    width: 45%;
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.contact-info h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-details p {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: var(--light-text);
}

.contact-details p i {
    font-size: 20px;
    color: var(--accent-color);
    margin-right: 15px;
    width: 40px;
    height: 40px;
    background-color: rgba(100, 223, 223, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.contact-details p:hover i {
    background-color: var(--accent-color);
    color: var(--white);
}

.social-links {
    display: flex;
    margin-top: 30px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(94, 96, 206, 0.1);
    margin-right: 15px;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

.contact-form {
    width: 50%;
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 100%);
}
/* Mevcut form stilleri */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 16px;
    transition: var(--transition);
    background-color: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(100, 223, 223, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Yeni eklenen form mesaj ve hata stillemeleri */
.form-message {
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background-color: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.form-message.error {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

.error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 8px;
    display: none;
    font-weight: 500;
}

.loading {
    display: inline-block;
    margin-left: 15px;
    color: var(--text-color);
    font-weight: 500;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

.required {
    color: #dc3545;
    margin-left: 4px;
}

/* Form gönderme sırasında butonun stilleri */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Form butonunun mevcut stiline entegre oluyor */
.contact-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

/* Mobil cihazlar için uyumlu hale getirme */
@media (max-width: 768px) {
    .form-message {
        padding: 12px;
        font-size: 14px;
    }
    
    .loading {
        display: block;
        margin: 10px 0 0;
        text-align: center;
    }
}

/* Footer */
footer {
    background-color: #2b2d42;
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-col {
    width: 23%;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #cccccc;
    transition: var(--transition);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    margin-right: 10px;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaaaaa;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.newsletter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.newsletter-text {
    width: 45%;
}

.newsletter-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.newsletter-form {
    width: 50%;
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px 0 0 50px;
    font-size: 16px;
}

.newsletter-form button {
    padding: 0 30px;
    border: none;
    background-color: var(--accent-color);
    color: var(--text-color);
    font-weight: 600;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--text-color);
    color: var(--white);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--accent-color);
    color: var(--text-color);
    transform: translateY(-5px);
}

/* Blog ve Blog Post Stilleri - Yeni Eklenenler */
.blog, .blog-post {
    padding: 120px 0;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.blog-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.blog-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.blog-card p {
    font-size: 16px;
    color: var(--light-text);
    margin-bottom: 20px;
}

.blog-card .btn {
    padding: 10px 20px;
    font-size: 14px;
}

/* Mevcut Blog Listesi Stilleri (Geliştirildi) */
.blog-list article {
    margin-bottom: 40px;
    padding: 20px;
    background-color: var(--secondary-color);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-list article:hover {
    transform: translateY(-5px);
}

.blog-list h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color); /* Mevcut tasarımla uyum için eklendi */
}

.blog-content {
    margin-top: 20px;
    color: var(--light-text);
}

/* Blog Post Stili */
.blog-post .container {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post h1 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.blog-post .date {
    font-size: 16px;
    color: var(--light-text);
    margin-bottom: 30px;
}

.blog-post .content {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
}

.blog-post .content img {
    max-width: 100%;
    border-radius: 10px;
    margin: 20px 0;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .hero-text h1 {
        font-size: 40px;
    }
    
    .footer-col {
        width: 48%;
    }
}

@media screen and (max-width: 992px) {
    .hero-content, .about-content, .contact-container, .newsletter-container {
        flex-direction: column;
    }
    
    .hero-text, .hero-image, .about-image, .about-text, .contact-info, .contact-form, .newsletter-text, .newsletter-form {
        width: 100%;
        margin-bottom: 40px;
    }
    
    .hero-image::before, .experience-badge {
        display: none;
    }
    
    .approach-image, .approach-text {
        width: 100%;
    }
    
    .approach-image {
        margin-bottom: 30px;
    }
    
    .about-text {
        padding-left: 0;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    #mobile-menu-btn {
        display: block;
    }
    
    nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
    }
    
    nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px 0;
    }
    
    nav ul li {
        margin: 0;
        text-align: center;
        padding: 12px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-slide {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .client-image {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .footer-col {
        width: 100%;
    }
}
/* Blog Section */
.blog {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card h3 {
    font-size: 1.5rem;
    margin: 20px;
    color: #333;
}

.blog-card h3 a {
    color: #333;
    text-decoration: none;
}

.blog-card h3 a:hover {
    color: var(--primary-color, #5a67d8);
}

.blog-card p {
    margin: 0 20px 20px;
    color: #666;
    font-size: 1rem;
}

.blog-card .btn {
    margin: 0 20px 20px;
    display: inline-block;
}

/* Blog Post Section */
.blog-post {
    padding: 80px 0;
}

.blog-post h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.blog-post p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.blog-post .blog-content {
    margin: 30px 0;
}

.blog-post .btn {
    margin-top: 20px;
}
/* Videos Section */
.videos {
    padding: 120px 0;
    background-color: var(--secondary-color);
}

.videos .video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.videos .video-item {
    background-color: var(--white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.videos .video-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.videos .instagram-link {
    text-align: center;
    margin-top: 40px;
}

.videos .instagram-link a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.videos .instagram-link a:hover {
    color: var(--accent-color);
}
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(315px, 1fr));
    gap: 20px;
}

.video-item {
    text-align: center;
}

.video-item p {
    margin-top: 10px;
}

.youtube-link, .instagram-link {
    margin-top: 20px;
    text-align: center;
}

.youtube-link a, .instagram-link a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.youtube-link a:hover, .instagram-link a:hover {
    text-decoration: underline;
}
/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .videos .video-grid {
        grid-template-columns: 1fr;
    }
}
.google-map {
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
/* Tests Section */
.tests {
    padding: 120px 0;
    background-color: var(--secondary-color); /* Hafif gri arka plan */
}

.tests .section-header {
    text-align: center;
    margin-bottom: 70px;
}

.tests .section-header h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.tests .section-header h2::after {
    content: "";
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--accent-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.tests .section-header p {
    font-size: 18px;
    color: var(--light-text);
    max-width: 800px;
    margin: 0 auto;
}

.test-item {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    transition: var(--transition);
}

.test-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.test-item h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.test-item p {
    font-size: 16px;
    color: var(--light-text);
    margin-bottom: 25px;
}
/* Testi Çöz Butonları */
.test-item button {
    background-color: var(--primary-color); /* #bc6c25 - Sıcak kahverengi tonu */
    color: var(--white); /* #ffffff - Beyaz metin */
    padding: 12px 24px; /* İç boşluk */
    font-size: 1rem; /* Yazı boyutu */
    font-weight: 500; /* Yazı kalınlığı */
    border: none; /* Kenarlık yok */
    border-radius: 8px; /* Hafif yuvarlatılmış köşeler */
    cursor: pointer; /* Fare imleci */
    transition: var(--transition); /* all 0.35s ease - Geçiş efekti */
    box-shadow: var(--shadow); /* 0 10px 25px rgba(0, 0, 0, 0.06) - Hafif gölge */
}

/* Fare ile üzerine gelindiğinde */
.test-item button:hover {
    background-color: var(--accent-color); /* #dda15e - Yumuşak toprak turuncusu */
    transform: translateY(-3px); /* Hafif yukarı kayma efekti */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); /* Gölgeyi güçlendir */
}

/* Tıklama anında */
.test-item button:active {
    transform: translateY(0); /* Yukarı kayma efektini kaldır */
    box-shadow: var(--shadow); /* Normal gölgeye dön */
}
.question {
    margin: 20px 0;
    padding: 15px;
    background-color: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

.question p {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.question label {
    display: inline-block;
    margin-right: 20px;
    color: var(--light-text);
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.question input[type="radio"] {
    margin-right: 5px;
    accent-color: var(--accent-color); /* Radyo düğmesi rengi */
}

.question label:hover {
    color: var(--primary-color);
}

#calculate-depression {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(94, 96, 206, 0.3);
    font-size: 16px;
    letter-spacing: 0.5px;
    margin-top: 20px;
}

#calculate-depression:hover {
    background-color: var(--accent-color);
    color: var(--text-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(100, 223, 223, 0.4);
}

#depression-result {
    margin-top: 20px;
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 500;
}

#depression-cta {
    margin-top: 20px;
    font-size: 16px;
    color: var(--light-text);
}

#depression-cta a {
    color: var(--primary-color);
    font-weight: 600;
}

#depression-cta a:hover {
    color: var(--accent-color);
}

.test-item a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.test-item a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Responsive Adjustments */
@media screen and (max-width: 992px) {
    .test-item {
        padding: 30px;
    }
    
    .tests .section-header h2 {
        font-size: 36px;
    }
}

@media screen and (max-width: 768px) {
    .tests {
        padding: 80px 0;
    }
    
    .test-item {
        padding: 20px;
    }
    
    .question {
        padding: 10px;
    }
    
    .question label {
        display: block;
        margin-bottom: 10px;
    }
    
    #calculate-depression {
        width: 100%;
        text-align: center;
    }
}
.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000; /* Diğer içeriklerin üstünde görünür */
}

.whatsapp-link {
    display: flex;
    align-items: center;
    background-color: #25D366; /* WhatsApp yeşili */
    color: #fff;
    padding: 10px 15px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    background-color: #128C7E; /* Üzerine gelindiğinde koyu yeşil */
    transform: translateY(-3px); /* Hafif yükselme efekti */
}

.whatsapp-link i {
    font-size: 24px;
    margin-right: 10px;
}

.whatsapp-link span {
    font-size: 16px;
    font-weight: 500;
}

/* Mobil cihazlar için uyumluluk */
@media screen and (max-width: 768px) {
    .whatsapp-link span {
        display: none; /* Mobilde sadece ikon görünür */
    }
    .whatsapp-link {
        padding: 10px;
    }
    .whatsapp-link i {
        margin-right: 0;
    }
}
/* Ruhsal Sorunlar Bölümü */
.mental-issues {
    background-color: var(--secondary-color); /* Açık kum tonu arka plan */
    padding: 60px 0;
  }
  
  .mental-issues .container {
    text-align: center;
  }
  
  /* Bölüm Başlığı ve Açıklama */
  .section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color); /* Sıcak kahverengi tonu */
    margin-bottom: 15px;
    font-weight: 600;
  }
  
  .section-header p {
    font-size: 1.2rem;
    color: var(--text-color); /* Koyu orman yeşili */
    margin-bottom: 40px;
    font-weight: 300;
  }
  
 /* Ruhsal Sorunlar Listesi */
.mental-issues-list ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.mental-issues-list li {
    background-color: var(--white); /* Varsayılan arka plan rengi */
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition); /* Geçiş efekti */
    width: calc(25% - 1px); /* Üçlü grid düzeni */
    min-width: 280px;
}

.mental-issues-list li a {
    display: block;
    padding: 20px;
    font-size: 1.1rem;
    color: var(--text-color); /* Koyu orman yeşili */
    text-decoration: none;
    transition: var(--transition);
}

/* Üzerine gelindiğinde sadece bloğun arka plan rengi değişsin */
.mental-issues-list li:hover {
    background-color: var(--accent-color); /* Örnek: Yumuşak turuncu vurgu */
    transform: translateY(-5px); /* Mevcut efekt korundu */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); /* Mevcut efekt korundu */
}

/* Yazı renginin değişmesini istemiyorsanız bu kısmı kaldırabilirsiniz */
/* .mental-issues-list li a:hover {
    color: var(--accent-color); 
} */

/* Responsive Tasarım */
@media (max-width: 768px) {
    .mental-issues-list li {
        width: calc(50% - 20px); /* İkili grid düzeni */
    }
}

@media (max-width: 480px) {
    .mental-issues-list li {
        width: 100%; /* Tekli grid düzeni */
    }
}
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none; /* Normalde gizli */
    position: absolute;
    background-color: #fff; /* Arka plan rengi */
    min-width: 150px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Hafif gölge */
}

.dropdown-content a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333; /* Yazı rengi */
}

.dropdown-content a:hover {
    background-color: #f1f1f1; /* Üzerine gelindiğinde renk değişimi */
}

/* Mobil uyumluluk */
@media screen and (max-width: 768px) {
    .dropdown-content {
        position: static;
        box-shadow: none;
    }
}
/* Blog Post Genel Stil */
.blog-post {
    background-color: var(--secondary-color); /* Açık kum tonu arka plan */
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin: 40px auto;
    max-width: 800px;
  }
  
  /* Makale Başlığı */
  .blog-post h1 {
    font-size: 1.8rem;
    color: var(--primary-color); /* Sıcak kahverengi tonu */
    margin-bottom: 10px;
    border-bottom: 2px solid var(--accent-color); /* Turuncu vurgu */
    padding-bottom: 10px;
  }
  
  /* Yayınlanma Tarihi */
  .blog-post p.date {
    font-size: 0.9rem;
    color: var(--light-text); /* Açık haki gri */
    font-style: italic;
    margin-bottom: 30px;
  }
  
  /* Makale İçeriği */
  .blog-content h2 {
    font-size: 1.5rem;
    color: var(--primary-color); /* Sıcak kahverengi tonu */
    margin-top: 30px;
    margin-bottom: 15px;
  }
  
  .blog-content p {
    font-size: 1.0rem;
    line-height: 1.8;
    color: var(--text-color); /* Koyu orman yeşili */
    margin-bottom: 20px;
  }
  
  .blog-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
  }
  
  .blog-content li {
    font-size: 1.0rem;
    line-height: 1.6;
    color: var(--text-color); /* Koyu orman yeşili */
    margin-bottom: 10px;
  }
  
  .blog-content strong {
    color: var(--accent-color); /* Yumuşak turuncu vurgu */
  }
  
  .blog-content a {
    color: var(--accent-color); /* Yumuşak turuncu vurgu */
    text-decoration: none;
    transition: var(--transition);
  }
  
  .blog-content a:hover {
    color: var(--primary-color); /* Sıcak kahverengi tonu */
  }
  
  .blog-content figure {
    margin: 30px 0;
    text-align: center;
  }
  
  .blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
  }
  
  .blog-content figcaption {
    font-size: 0.9rem;
    color: var(--light-text); /* Açık haki gri */
    font-style: italic;
    margin-top: 10px;
  }
  
  /* Blog'a Geri Dön Butonu */
  .btn {
    display: inline-block;
    background-color: var(--accent-color); /* Yumuşak turuncu vurgu */
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    margin-top: 30px;
  }
  
  .btn:hover {
    background-color: var(--primary-color); /* Sıcak kahverengi tonu */
  }
  .tests-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px 0;
}
.test-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}
/* Test Detay Sayfası */
.test-detail {
    padding: 120px 0;
    background-color: var(--secondary-color); /* Açık kum tonu arka plan */
}

.test-header {
    text-align: center;
    margin-bottom: 40px;
}

.test-image {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.test-header h2 {
    font-size: 36px;
    color: var(--primary-color); /* Sıcak kahverengi tonu */
    margin-bottom: 15px;
}

.test-content {
    display: flex;
    gap: 30px;
}

.test-info {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.info-card {
    background-color: var(--white); /* Beyaz kart arka planı */
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card h3 {
    font-size: 22px;
    color: var(--primary-color); /* Sıcak kahverengi tonu */
    margin-bottom: 10px;
}

.info-card p {
    font-size: 16px;
    color: var(--text-color); /* Koyu orman yeşili metin */
}

.test-sidebar {
    flex: 1;
    background-color: var(--secondary-color); /* Açık kum tonu */
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.test-sidebar h4 {
    font-size: 20px;
    color: var(--primary-color); /* Sıcak kahverengi tonu */
    margin-bottom: 15px;
}

.test-sidebar ul {
    list-style: none;
    padding: 0;
}

.test-sidebar li {
    font-size: 16px;
    color: var(--light-text); /* Açık haki gri metin */
    margin-bottom: 10px;
}

.test-actions {
    text-align: center;
    margin-top: 40px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--accent-color); /* Yumuşak turuncu vurgu */
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.btn:hover {
    background-color: var(--primary-color); /* Sıcak kahverengi tonu */
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .test-content {
        flex-direction: column;
    }
    .test-info {
        grid-template-columns: 1fr;
    }
}

/* Benzer Testler Bölümü */
.related-tests {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color)); /* Uyumlu arka plan */
    padding: 40px;
    border-radius: 15px;
    margin-top: 50px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.related-tests h3 {
    font-size: 2rem;
    color: #ffffff; /* Beyaz başlık */
    text-align: center;
    margin-bottom: 30px;
}

.related-tests ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.related-tests li {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.related-tests li:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.related-tests a {
    color: #2c3e50;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: 700;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .related-tests ul {
        grid-template-columns: 1fr; /* Tek sütun */
    }
    .related-tests h3 {
        font-size: 1.5rem;
    }
    .related-tests a {
        font-size: 1rem;
    }
    .related-tests li:hover {
        transform: none; /* Efektleri kaldır */
        box-shadow: var(--shadow);
    }
}
/* Benzer Yazılar Bölümü */
.related-posts {
    margin-top: 40px;
    padding: 25px;
    background: linear-gradient(135deg, var(--secondary-color), var(--white)); /* Kum tonundan beyaza geçiş */
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  }
  
  .related-posts h3 {
    font-size: 2rem;
    color: var(--primary-color); /* Sıcak kahverengi */
    margin-bottom: 25px;
    font-weight: 700;
    text-align: center;
    font-family: var(--font-main);
    position: relative;
  }
  
  .related-posts h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--accent-color); /* Yumuşak turuncu */
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
  }
  
  .related-posts ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 20px;
  }
  
  .related-posts li {
    background-color: var(--white); /* Beyaz kart */
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
  }
  
  .related-posts li:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  }
  
  .related-posts li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: var(--accent-color); /* Yumuşak turuncu */
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
  }
  
  .related-posts li:hover::before {
    transform: scaleY(1);
  }
  
  .related-posts li::after {
    content: '✨'; /* Yaratıcı bir ikon */
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color); /* Sıcak kahverengi */
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .related-posts li:hover::after {
    opacity: 1;
  }
  
  .related-posts a {
    color: var(--text-color); /* Koyu orman yeşili */
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: 500;
    display: block;
    transition: color 0.3s ease;
  }
  
  .related-posts a:hover {
    color: var(--accent-color); /* Yumuşak turuncu */
  }