/* Garden.css - ASHIVA Garden Sayfası Özel Stilleri */

/* Base Styles */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Current Menu Link Style */
.menu-link.current {
    color: #215020 !important;
    font-weight: 600;
}

.header:hover .menu-link.current,
.header.scrolled .menu-link.current {
    color: #215020 !important;
}

/* Garden Hero Section */
.garden-hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33, 80, 32, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.garden-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 2rem;
}

.garden-hero .hero-title {
    font-size: 4.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.garden-hero .hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.garden-hero .hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #215020;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

/* Potential Section */
.potential-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.potential-content {
    text-align: center;
}

.potential-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.potential-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(33, 80, 32, 0.1);
    text-align: center;
}

.potential-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(33, 80, 32, 0.15);
}

.potential-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1.5rem;
}

.potential-item h3 {
    font-size: 1.3rem;
    font-weight: 400;
    color: #215020;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.potential-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.potential-message {
    margin-top: 3rem;
}

.potential-message p {
    font-size: 1.4rem;
    font-style: italic;
    color: #215020;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
}

.service-block {
    margin-bottom: 6rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.service-block:nth-child(2) {
    animation-delay: 0.1s;
}

.service-block:nth-child(3) {
    animation-delay: 0.2s;
}

.service-block:nth-child(4) {
    animation-delay: 0.3s;
}

.service-block:nth-child(5) {
    animation-delay: 0.4s;
}

.service-block:nth-child(6) {
    animation-delay: 0.5s;
}

.service-block:nth-child(7) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.service-block.reverse .service-content {
    direction: rtl;
}

.service-block.reverse .service-text {
    direction: ltr;
}

.service-text {
    padding: 2rem;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-text h3 {
    font-size: 2rem;
    font-weight: 400;
    color: #215020;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.service-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.feature-badge {
    background: rgba(33, 80, 32, 0.1);
    color: #215020;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(33, 80, 32, 0.2);
}

.service-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-image:hover img {
    transform: scale(1.05);
}

/* Approach Section */
.approach-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #215020 0%, #2d6b2d 100%);
    color: white;
}

.approach-section .section-title {
    color: white;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.approach-step {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.approach-step:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.step-number {
    font-size: 3rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    display: block;
}

.approach-step h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.approach-step p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.step-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.step-details span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 1rem;
    position: relative;
}

.step-details span::before {
    content: "→";
    position: absolute;
    left: 0;
}

.approach-highlight {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.approach-highlight p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.approach-highlight p:last-child {
    margin-bottom: 0;
    font-style: italic;
}

/* Audience Section */
.audience-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 5rem;
}

.audience-item {
    background: white;
    padding: 2rem;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.audience-item:hover {
    transform: translateY(-5px);
    border-color: rgba(33, 80, 32, 0.2);
    box-shadow: 0 12px 30px rgba(33, 80, 32, 0.15);
}

.audience-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.audience-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #215020;
    letter-spacing: 0.3px;
    margin-bottom: 0.8rem;
}

.audience-item p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Why Section */
.why-section {
    padding: 6rem 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(33, 80, 32, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(33, 80, 32, 0.1);
}

.why-item:hover {
    background: rgba(33, 80, 32, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(33, 80, 32, 0.1);
}

.why-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.why-content h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #215020;
    margin-bottom: 0.5rem;
}

.why-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Process Timeline */
.process-timeline {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #215020, #2d6b2d);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #215020;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(33, 80, 32, 0.3);
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: calc(50% + 2rem);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: calc(50% + 2rem);
}

.timeline-content h4 {
    color: #215020;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.timeline-duration {
    background: rgba(33, 80, 32, 0.1);
    color: #215020;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Final Message Section */
.final-message {
    padding: 6rem 0;
    background: linear-gradient(135deg, #215020 0%, #1a4019 100%);
    color: white;
    text-align: center;
}

.message-content {
    max-width: 800px;
    margin: 0 auto;
}

.message-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    display: block;
}

.final-message blockquote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    letter-spacing: 0.5px;
    margin: 0 0 3rem 0;
    position: relative;
    padding: 0 2rem;
}

.final-message blockquote::before,
.final-message blockquote::after {
    content: '"';
    font-size: 4rem;
    font-family: serif;
    color: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: -1rem;
}

.final-message blockquote::before {
    left: 0;
}

.final-message blockquote::after {
    right: 0;
    top: 1rem;
}

.cta-section h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-primary {
    background: white;
    color: #215020;
}

.cta-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.cta-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}


/* Responsive Design */
@media (max-width: 1024px) {
    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-block.reverse .service-content {
        direction: ltr;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .garden-hero .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
        margin-right: 0;
    }

    .timeline-marker {
        left: 20px;
        transform: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .garden-hero {
        height: 80vh;
    }

    .garden-hero .hero-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .garden-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .garden-hero .hero-description {
        font-size: 1rem;
    }

    .potential-section,
    .services-section,
    .approach-section,
    .audience-section,
    .why-section,
    .final-message,
    .process-timeline,
    .contact-bar {
        padding: 4rem 0;
    }

    .potential-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-text {
        padding: 1rem;
    }

    .service-image img {
        height: 250px;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .final-message blockquote {
        font-size: 1.2rem;
        padding: 0 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 300px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .garden-hero .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .service-text h3 {
        font-size: 1.5rem;
    }

    .approach-step {
        padding: 1.5rem;
    }

    .step-number {
        font-size: 2rem;
    }

    .timeline-content {
        max-width: 250px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 50px;
    }
}