/* Kurumsal Sayfa Özel Stiller */

/* Kurumsal Sayfa Header Override */
body .header {
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.95) 0%, rgba(139, 111, 71, 0.95) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

body .header.scrolled {
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.98) 0%, rgba(139, 111, 71, 0.98) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

body .logo-img {
    filter: brightness(1.2) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

body .nav-link {
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

body .nav-link:hover {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Mobile Menu Override */
@media (max-width: 1024px) {
    body .nav-menu {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    
    body .nav-link {
        color: var(--text-dark);
        text-shadow: none;
    }
    
    body .nav-link:hover {
        color: var(--primary-color);
        text-shadow: none;
        background: rgba(74, 124, 89, 0.1);
    }
}

body .cta-button {
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

body .cta-button:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.6);
}

.corporate-hero {
    position: relative;
    height: 60vh;
    background: url('images/Bahçe&peyzaj ürünleri/WhatsApp Image 2025-11-14 at 19.34.54.jpeg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.corporate-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.85) 0%, rgba(44, 62, 80, 0.85) 100%);
}

.corporate-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.corporate-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.corporate-hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.95;
}

/* About Intro */
.about-intro {
    padding: 6rem 0;
    background: var(--white);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.section-heading {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.3;
}

.about-paragraph {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-intro-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-intro-image:hover img {
    transform: scale(1.05);
}

/* Vision Mission */
.vision-mission {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eff5 100%);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.vm-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-10px);
}

.vm-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.vm-title {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.vm-text {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Why Us */
.why-us {
    padding: 6rem 0;
    background: var(--white);
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-description {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.why-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(74, 124, 89, 0.15);
}

.why-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.why-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.why-card:hover .why-card-image img {
    transform: scale(1.1);
}

.why-card-content {
    padding: 2rem;
}

.why-card-title {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.why-card-text {
    color: var(--text-light);
    line-height: 1.7;
}

/* Service Areas */
.service-areas {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eff5 100%);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 4rem;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-item.reverse {
    direction: rtl;
}

.service-item.reverse .service-content {
    direction: ltr;
}

.service-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-item:hover .service-image-wrapper img {
    transform: scale(1.05);
}

.service-title {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-description {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Work Process */
.work-process {
    padding: 6rem 0;
    background: var(--white);
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(74, 124, 89, 0.15);
}

.process-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
}

.process-title {
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    margin-top: 1rem;
    font-weight: 600;
}

.process-text {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* References */
.references {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.references .section-label,
.references .section-heading,
.references .section-description {
    color: var(--white);
}

.reference-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.reference-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

.reference-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.reference-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 2rem;
    transform: translateY(60px);
    transition: transform 0.4s ease;
}

.reference-item:hover .reference-overlay {
    transform: translateY(0);
}

.reference-item:hover img {
    transform: scale(1.1);
}

.reference-overlay h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.reference-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-main-button {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-main-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .corporate-hero-title {
        font-size: 2rem;
    }

    .corporate-hero-subtitle {
        font-size: 1.1rem;
    }

    .about-intro-grid,
    .vm-grid,
    .why-us-grid,
    .service-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-item.reverse {
        direction: ltr;
    }

    .reference-gallery {
        grid-template-columns: 1fr;
    }

    .section-heading {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }
}

/* Yüzen İletişim Butonları */
.floating-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.whatsapp-btn,
.phone-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.phone-btn {
    background: linear-gradient(135deg, #4a7c59 0%, #3d6548 100%);
    color: white;
}

.whatsapp-btn:hover,
.phone-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.whatsapp-btn:active,
.phone-btn:active {
    transform: translateY(-1px) scale(1.02);
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .whatsapp-btn,
    .phone-btn {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-btn svg,
    .phone-btn svg {
        width: 22px;
        height: 22px;
    }
}
