:root {
    /* Colors - Phase 3 Update */
    --color-primary: #2D5016;
    /* Koyu yeşil - doğa, güven */
    --color-secondary: #7CB342;
    /* Açık yeşil - taze, temiz */
    --color-accent: #FFA726;
    /* Turuncu - dikkat çekici CTA */
    --color-dark: #1B5E20;
    /* Darkest Green */
    --color-text: #333333;
    /* Koyu gri */
    --color-text-light: #666666;
    /* Lighter Gray */
    --color-white: #FFFFFF;
    --color-light-gray: #F5F5F5;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Transitions */
    --transition-fast: 0.3s ease;

    /* Typography */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-dark);
}

.btn-outline {
    border-color: var(--color-white);
    color: var(--color-white);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: var(--spacing-xs);
}

.section-desc {
    color: var(--color-text-light);
    font-size: 1.1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-fast);
}

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

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 60px;
    /* Reduced slightly to accommodate phone number */
    width: auto;
    object-fit: contain;
}

.header-phone {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 2px;
    letter-spacing: 0.5px;
}

.footer-logo img {
    height: 80px;
    /* Slightly larger for footer */
    width: auto;
    margin-bottom: 1rem;
    object-fit: contain;
}


.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--color-text);
}

.nav-link:hover {
    color: var(--color-primary);
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--color-white);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease-in-out;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-list li {
    margin: 1.5rem 0;
    text-align: center;
}

.mobile-nav-list a {
    font-size: 1.5rem;
    color: var(--color-dark);
    font-weight: 600;
}

.close-menu {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?auto=format&fit=crop&q=80');
    /* Placeholder image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--color-white);
    position: relative;
    padding-top: 80px;
    /* Header height offset */
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-title .highlight {
    color: var(--color-secondary);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

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

/* Footer */
.footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 2rem 0;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-list {
        display: none;
    }

    .hamburger {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--color-dark);
        margin-bottom: 5px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

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

.service-card {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all var(--transition-fast);
    border-bottom: 3px solid transparent;
    border-top: 1px solid var(--color-light-gray);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--color-secondary);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
    font-weight: 600;
}

.service-text {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* About Section */
.about {
    background-color: var(--color-accent);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.about-content {
    flex: 1;
}

.about-text {
    margin-top: 1rem;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--color-text);
}

.about-list li {
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-dark));
    color: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.2);
}

.info-item {
    margin-bottom: 2.5rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.info-item p,
.info-item a {
    color: var(--color-white);
    font-size: 1.1rem;
    opacity: 0.9;
}

.contact-form {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--color-light-gray);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 500;
    color: var(--color-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
    background-color: #fcfcfc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.btn-block {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: left;
}

.footer-logo {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.footer-desc {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-secondary);
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-secondary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Process Section */
.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    margin-top: 3rem;
}

.step {
    flex: 1;
    min-width: 220px;
    text-align: center;
    position: relative;
    padding: 1rem;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--color-accent);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-primary);
}

.step-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-dark);
}

.step-desc {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

/* Stats Section */
.stats {
    background: linear-gradient(rgba(46, 125, 50, 0.9), rgba(27, 94, 32, 0.9)), url('https://images.unsplash.com/photo-1557223566-ffc86c5f5928?auto=format&fit=crop&q=80');
    background-size: cover;
    background-attachment: fixed;
    color: var(--color-white);
    padding: 4rem 0;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* About Vision/Mission */
.about-vision-mission {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.about-vision-mission p {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--color-text);
}

.about-vision-mission p:last-child {
    margin-bottom: 0;
}

/* Booking Form specifics */
.form-row {
    flex-wrap: wrap;
}

select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    background-color: #fcfcfc;
    appearance: none;
    /* Custom arrow could be added */
}

/* WhatsApp Icon Font correction */
.whatsapp-float i {
    color: #fff;
    font-size: 35px;
    line-height: 60px;
}

/* Mobile Sticky Phone Button */
.phone-float-mobile {
    display: none;
}

@media (max-width: 768px) {
    .phone-float-mobile {
        display: flex;
        position: fixed;
        width: 50px;
        height: 50px;
        bottom: 80px;
        /* Above WhatsApp button */
        right: 20px;
        background-color: var(--color-primary);
        color: #FFF;
        border-radius: 50px;
        text-align: center;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        transition: all 0.3s ease;
    }

    .phone-float-mobile:hover {
        transform: scale(1.1);
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}

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

/* Responsive updates for new sections */
@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        gap: 2rem;
    }

    .step::after {
        display: none;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float img {
        width: 30px;
        height: 30px;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card.fade-in {
    transition-delay: 0.1s;
}

.service-card.fade-in:nth-child(2) {
    transition-delay: 0.2s;
}

.service-card.fade-in:nth-child(3) {
    transition-delay: 0.3s;
}

.service-card.fade-in:nth-child(4) {
    transition-delay: 0.4s;
}

/* Further Responsive Adjustments */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-list li {
        justify-content: center;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }
}

/* Corporate Docs List */
.corporate-docs-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 800px;
    margin: 2rem auto 3rem;
    text-align: left;
}

.doc-item {
    font-size: 1.05rem;
    color: var(--color-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.doc-item i {
    color: var(--color-secondary);
}

@media (max-width: 768px) {
    .corporate-docs-list {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
        /* Center items in mobile */
    }
}

/* Certificates Section */
.certificates {
    background-color: var(--color-light-gray);
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.certificate-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 300px;
}

.certificate-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cert-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.certificate-item:hover .cert-img {
    transform: scale(1.05);
}

.cert-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(45, 80, 22, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.certificate-item:hover .cert-overlay {
    opacity: 1;
}

.cert-overlay i {
    font-size: 2rem;
    color: #fff;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    max-height: 80vh;
    object-fit: contain;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.close-lightbox {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-lightbox:hover,
.close-lightbox:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

@media only screen and (max-width: 700px) {
    .lightbox-content {
        width: 100%;
    }
}
/* ============================
   Blog Page Styles
   ============================ */

/* Blog Header - Simpler than Home Hero */
.blog-header-section {
    padding: 160px 0 80px;
    background-color: #f5f5f5;
    text-align: center;
    position: relative;
    background-image: linear-gradient(rgba(245, 245, 245, 0.9), rgba(245, 245, 245, 0.9)), url('https://images.unsplash.com/photo-1516216628259-222bfed2747e?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
}

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

.blog-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.blog-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #2D5016; /* primary var might not work if not defined in root correctly, but assuming it is */
    color: #FFFFFF;
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    line-height: 1.1;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.blog-date .day {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
}

.blog-date .month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.blog-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: #666666;
    margin-bottom: 0.8rem;
}

.blog-meta i {
    color: #7CB342;
    margin-right: 4px;
}

.blog-title {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    color: #1B5E20;
    line-height: 1.4;
    transition: 0.3s ease;
    font-weight: 600;
}

.blog-card:hover .blog-title {
    color: #2D5016;
}

.blog-excerpt {
    font-size: 0.95rem;
    color: #666666;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: #2D5016;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s ease;
}

.read-more i {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: #1B5E20;
}

.read-more:hover i {
    transform: translateX(4px);
}

