﻿/* ========================================
   ENAX Website Pages CSS
   Contact, About, and General Page Styles
   ======================================== */

/* ========== HERO SECTIONS ========== */
.page-hero {
    position: relative;
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, #0a1628 100%);
    padding: 5rem 1.5rem;
    overflow: hidden;
}

.page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    pointer-events: none;
}

.hero-blur-1 {
    position: absolute;
    top: 25%;
    left: 33%;
    width: 500px;
    height: 500px;
    background: #3b82f6;
    border-radius: 50%;
    filter: blur(120px);
    animation: pulse 4s ease-in-out infinite;
}

.hero-blur-2 {
    position: absolute;
    bottom: 25%;
    right: 33%;
    width: 400px;
    height: 400px;
    background: #06b6d4;
    border-radius: 50%;
    filter: blur(100px);
    animation: pulse 4s ease-in-out infinite 1s;
}

@@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.page-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
}

.hero-icon {
    width: 4rem;
    height: 4rem;
    background: #3b82f6;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transform: rotate(6deg);
}

    .hero-icon svg {
        width: 2rem;
        height: 2rem;
        color: white;
    }

.page-title {
    font-size: 3rem;
    font-weight: 300;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #bfdbfe;
}

/* ========== CONTAINERS ========== */
.page-container {
    background: #f9fafb;
    padding: 4rem 1.5rem;
}

/* ========== CONTACT PAGE ========== */
.contact-grid {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    grid-template-columns: 1fr;
    display: flex; /*grid*/
    gap: 2rem;
}

@@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 2fr 3fr;
    }
}

.contact-info-section,
.contact-form-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.section-description {
    color: #6b7280;
    line-height: 1.6;
}

.contact-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.contact-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: #dbeafe;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .contact-icon svg {
        width: 1.5rem;
        height: 1.5rem;
        color: #2563eb;
    }

.contact-card-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
}

.contact-card-body {
    margin-left: 4rem;
}

.contact-location {
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

    .contact-detail:last-child {
        margin-bottom: 0;
    }

    .contact-detail svg {
        width: 1rem;
        height: 1rem;
        color: #9ca3af;
        flex-shrink: 0;
    }

    .contact-detail a {
        color: #2563eb;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .contact-detail a:hover {
            color: #1d4ed8;
            text-decoration: underline;
        }

.contact-label {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.contact-form-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row-contact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@@media (min-width: 768px) {
    .form-row-contact {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group-page {
    display: flex;
    flex-direction: column;
}

.form-label-page {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-input-page {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

    .form-input-page:focus {
        outline: none;
        border-color: #3b82f6;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }

.form-textarea-page {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    resize: vertical;
    font-family: inherit;
    transition: all 0.3s ease;
}

    .form-textarea-page:focus {
        outline: none;
        border-color: #3b82f6;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }

.btn-page-primary {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(to right, #3b82f6, #2563eb);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

    .btn-page-primary svg {
        width: 1.25rem;
        height: 1.25rem;
    }

    .btn-page-primary:hover {
        background: linear-gradient(to right, #2563eb, #1d4ed8);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    }

/* ========== ABOUT PAGE ========== */
.about-main-section {
    max-width: 56rem;
    margin: 0 auto 4rem;
}

.about-content-wrapper {
    /*background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;*/
    padding: 4rem 0;
    max-width: 1100px;
    margin: 0 auto;
}

.about-headline {
    font-size: 1.875rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.about-body-text {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

    .about-body-text:last-child {
        margin-bottom: 0;
    }

.vision-mission-grid {
    max-width: 80rem;
    margin: 0 auto 4rem;
    display: flex;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@@media (min-width: 768px) {
    .vision-mission-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.vision-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.vision-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: #dbeafe;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

    .vision-icon svg {
        width: 1.75rem;
        height: 1.75rem;
        color: #2563eb;
    }

.vision-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.vision-text {
    color: #4b5563;
    line-height: 1.8;
}

.services-section {
    max-width: 80rem;
    margin: 0 auto 4rem;
}

.section-header-center {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-large {
    font-size: 2.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.section-description-large {
    font-size: 1.25rem;
    color: #6b7280;
}

.services-grid {
    /*display: flex;
    grid-template-columns: 2fr;
    gap: 1.5rem;*/
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 kolon */
    gap: 2rem; /* Kartlar arası boşluk */
    margin: 0 auto;
}

@@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.service-card {
    /*background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;*/
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

    .service-card:hover {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        transform: translateY(-4px);
    }

.service-icon-wrapper {
    margin-bottom: 1rem;
}

.service-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .service-icon svg {
        width: 1.5rem;
        height: 1.5rem;
        color: white;
    }

    .service-icon.blue {
        background: #3b82f6;
    }

    .service-icon.green {
        background: #10b981;
    }

    .service-icon.purple {
        background: #8b5cf6;
    }

    .service-icon.orange {
        background: #f59e0b;
    }

    .service-icon.red {
        background: #ef4444;
    }

    .service-icon.teal {
        background: #14b8a6;
    }

.service-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.service-description {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
}

.why-choose-section {
    max-width: 80rem;
    margin: 0 auto 4rem;
}

.benefits-grid {
    /*display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;*/
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 kolon */
    gap: 2rem; /* Kartlar arası boşluk */
    margin: 0 auto;
}

@@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.benefit-item {
    display: grid;
    align-items: start;
    gap: 1rem;
}

.benefit-icon {
    width: 2rem;
    height: 2rem;
    background: #d1fae5;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .benefit-icon svg {
        width: 1.25rem;
        height: 1.25rem;
        color: #059669;
    }

.benefit-title {
    font-weight: 100;
    color: #111827;
    margin-bottom: 0.25rem;
}

.benefit-text {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
}

.cta-section {
    max-width: 80rem;
    margin: 0 auto;
    background: linear-gradient(to right, #2563eb, #1d4ed8);
    border-radius: 1.5rem;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-content {
    max-width: 48rem;
    margin: 0 auto;
}

.cta-title {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.25rem;
    color: #bfdbfe;
    margin-bottom: 2rem;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: white;
    color: #2563eb;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .btn-cta:hover {
        background: #f3f4f6;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

/* ========== RESPONSIVE ========== */
@@media (max-width: 640px) {
    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .about-content-wrapper {
        padding: 1.5rem;
    }

    .about-headline {
        font-size: 1.5rem;
    }

    .about-body-text {
        font-size: 1rem;
    }

    .section-title-large {
        font-size: 1.875rem;
    }

    .section-description-large {
        font-size: 1rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-text {
        font-size: 1rem;
    }
}
