/* Design.css - ASHIVA Design Sayfası Özel Stilleri */

/* Base Styles */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Design Hero Section */
.design-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;
}

.design-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 2rem;
}

.design-hero .hero-title {
    font-size: 4.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.design-hero .hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.design-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;
}

/* Who We Are Section */
.who-we-are-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.who-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-message {
    margin-bottom: 4rem;
}

.main-quote {
    font-size: 2rem;
    font-weight: 400;
    color: #215020;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.hero-message p:not(.main-quote) {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.philosophy-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.philosophy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(33, 80, 32, 0.15);
}

.philosophy-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.philosophy-item h3 {
    font-size: 1.3rem;
    color: #215020;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.philosophy-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* What We Do Section */
.what-we-do-section {
    padding: 6rem 0;
}

.services-highlight {
    text-align: center;
    margin-bottom: 4rem;
}

.service-title h3 {
    font-size: 1.8rem;
    color: #215020;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.service-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
    margin-bottom: 0;
}

.services-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

/* Service Category - Galeri özelliği için cursor */
.service-category {
    background: rgba(33, 80, 32, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(33, 80, 32, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.service-category:hover {
    background: rgba(33, 80, 32, 0.08);
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(33, 80, 32, 0.12);
}

.card-title {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
    font-size: 1.4rem;
    color: #215020;
    font-weight: 500;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    padding: 0.5rem 0;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.category-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #215020;
    font-weight: 600;
}

/* Approach Philosophy Section */
.approach-philosophy-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #215020 0%, #2d6b2d 100%);
    color: white;
}

.approach-philosophy-section .section-title {
    color: white;
}

.approach-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.main-philosophy {
    margin-bottom: 3rem;
}

.philosophy-quote {
    font-size: 2.2rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 3rem;
    line-height: 1.4;
    position: relative;
    padding: 0 2rem;
}

.philosophy-quote::before,
.philosophy-quote::after {
    content: '"';
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    position: absolute;
    font-family: serif;
}

.philosophy-quote::before {
    left: 0;
    top: -1rem;
}

.philosophy-quote::after {
    right: 0;
    bottom: -2rem;
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.approach-step {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
}

.approach-step:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.approach-step h4 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: white;
    letter-spacing: 0.5px;
}

.approach-step p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.process-highlight {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.process-intro {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 400;
}

.process-roles {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.role-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.role-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(33, 80, 32, 0.15);
}

.role-icon {
    font-size: 1.2rem;
}

.role-item span {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
    white-space: nowrap;
}

.process-benefits {
    background: rgba(33, 80, 32, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(33, 80, 32, 0.1);
}

.process-benefits h4 {
    font-size: 1.2rem;
    color: #215020;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.benefits-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.benefit-icon {
    font-size: 1.2rem;
    color: #215020;
}

/* Why ASHIVA Design Section - 2-3 Düzeni */
.why-ashiva-design-section {
    padding: 6rem 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* İlk satır - 2 kutu ortalanmış */
.why-grid > .why-item:nth-child(1) {
    grid-column: 2 / 4;
}

.why-grid > .why-item:nth-child(2) {
    grid-column: 4 / 6;
}

/* İkinci satır - 3 kutu */
.why-grid > .why-item:nth-child(3) {
    grid-column: 1 / 3;
}

.why-grid > .why-item:nth-child(4) {
    grid-column: 3 / 5;
}

.why-grid > .why-item:nth-child(5) {
    grid-column: 5 / 7;
}

.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;
    letter-spacing: 0.3px;
}

.why-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Project Types Section - 3-3 Düzeni */
.project-types-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.project-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
}

/* Project Types - Galeri özelliği için cursor */
.project-type-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;
    cursor: pointer;
}

.project-type-item:hover {
    transform: translateY(-6px);
    border-color: rgba(33, 80, 32, 0.2);
    box-shadow: 0 14px 36px rgba(33, 80, 32, 0.12);
}

.project-title {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
    font-size: 1.2rem;
    font-weight: 500;
    color: #215020;
}

.project-info {
    margin-top: 0.5rem;
}

.project-type-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.project-message {
    text-align: center;
    margin-top: 3rem;
}

.highlight-message {
    font-size: 1.4rem;
    font-style: italic;
    color: #215020;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Portfolio Gallery Section */
.portfolio-gallery-section {
    padding: 6rem 0;
}

.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-overlay h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Final Quote Section */
.final-quote-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #215020 0%, #1a4019 100%);
    color: white;
    text-align: center;
}

.quote-content {
    max-width: 800px;
    margin: 0 auto;
}

.quote-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    display: block;
}

.final-quote-section .main-quote {
    font-size: 1.8rem;
    font-style: italic;
    line-height: 1.6;
    letter-spacing: 0.5px;
    margin: 0 0 3rem 0;
    position: relative;
    padding: 0 2rem;
    color: white;
}

.final-quote-section .main-quote::before,
.final-quote-section .main-quote::after {
    content: '"';
    font-size: 3rem;
    font-family: serif;
    color: rgba(255, 255, 255, 0.3);
    position: absolute;
}

.final-quote-section .main-quote::before {
    left: 0;
    top: -0.5rem;
}

.final-quote-section .main-quote::after {
    right: 0;
    top: 0.5rem;
}

.cta-section h3 {
    font-size: 1.3rem;
    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);
}

/* Gallery Modal Styles */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-modal.active {
    opacity: 1;
    visibility: visible;
}

.gallery-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.gallery-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.gallery-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 2rem;
}

.gallery-next {
    right: 2rem;
}

.gallery-container {
    max-width: 90vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gallery-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.gallery-counter {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    z-index: 10;
}

/* Card Cover System (What We Do + Project Types) */
.card-cover {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    transform: translateZ(0);
}

.card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s cubic-bezier(.25, .1, .25, 1);
}

/* Kart hover – hafif zoom ve yükselme */
.service-category:hover .card-cover img,
.project-type-item:hover .card-cover img {
    transform: scale(1.04);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .design-hero .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .philosophy-grid,
    .services-categories,
    .approach-steps,
    .portfolio-gallery {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Why grid - tablet için 2 sütun */
    .why-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .why-grid > .why-item:nth-child(1),
    .why-grid > .why-item:nth-child(2),
    .why-grid > .why-item:nth-child(3),
    .why-grid > .why-item:nth-child(4),
    .why-grid > .why-item:nth-child(5) {
        grid-column: span 1;
    }

    /* Son öğeyi ortala */
    .why-grid > .why-item:nth-child(5) {
        grid-column: 1 / 3;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Project types grid - tablet için 2 sütun */
    .project-types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .process-roles {
        flex-direction: column;
        align-items: center;
    }

    .benefits-grid {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .design-hero {
        height: 80vh;
    }

    .design-hero .hero-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .design-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .design-hero .hero-description {
        font-size: 1rem;
    }

    .who-we-are-section,
    .what-we-do-section,
    .approach-philosophy-section,
    .process-section,
    .why-ashiva-design-section,
    .project-types-section,
    .portfolio-gallery-section,
    .final-quote-section {
        padding: 4rem 0;
    }

    .main-quote {
        font-size: 1.5rem;
    }

    .philosophy-quote {
        font-size: 1.6rem;
        padding: 0 1rem;
    }

    .final-quote-section .main-quote {
        font-size: 1.4rem;
        padding: 0 1rem;
    }

    /* Why grid - mobil için tek sütun */
    .why-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-grid > .why-item:nth-child(5) {
        grid-column: 1;
        max-width: 100%;
    }

    /* Project types grid - mobil için tek sütun */
    .project-types-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 300px;
    }

    /* Mobile responsive for gallery */
    .gallery-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .gallery-nav {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .gallery-prev {
        left: 1rem;
    }

    .gallery-next {
        right: 1rem;
    }

    .gallery-container {
        max-width: 95vw;
        max-height: 75vh;
    }

    .gallery-counter {
        bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .design-hero .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .philosophy-item,
    .service-category,
    .approach-step,
    .why-item,
    .project-type-item {
        padding: 1.5rem;
    }

    .main-quote {
        font-size: 1.3rem;
    }

    .philosophy-quote {
        font-size: 1.4rem;
    }

    .final-quote-section .main-quote {
        font-size: 1.2rem;
    }

    .card-cover {
        border-radius: 14px;
    }
}