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

body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.whatsapp-cta {
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.6), 0 0 30px rgba(18, 140, 126, 0.4), 0 0 45px rgba(18, 140, 126, 0.2);
    animation: glowPulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}


/* Mobil cihazlarda görüntüyü tam geniş yapalım */
@media (max-width: 768px) {
    .about-image img {
        max-width: 100%;
        border-radius: 10px;
    }
}

.whatsapp-cta:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.8), 0 0 35px rgba(18, 140, 126, 0.6), 0 0 50px rgba(18, 140, 126, 0.4);
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 10px rgba(37, 211, 102, 0.4), 0 0 20px rgba(18, 140, 126, 0.2), 0 0 30px rgba(18, 140, 126, 0.1);
    }

    50% {
        box-shadow: 0 0 25px rgba(37, 211, 102, 0.9), 0 0 40px rgba(18, 140, 126, 0.6), 0 0 55px rgba(18, 140, 126, 0.4);
    }

    100% {
        box-shadow: 0 0 10px rgba(37, 211, 102, 0.4), 0 0 20px rgba(18, 140, 126, 0.2), 0 0 30px rgba(18, 140, 126, 0.1);
    }
}


/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 999;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0.7rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #2563eb;
}

    .logo i {
        font-size: 2rem;
    }

.logo-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-text p {
    font-size: 0.8rem;
    color: #666;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

    .nav-menu a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        transition: color 0.3s ease;
    }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: #2563eb;
        }

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.animated-gradient {
    background: linear-gradient(135deg, #1039aa, #172a63, #0768b1);
    background-size: 400% 400%;
    animation: gradientWave 6s ease infinite;
}

@keyframes gradientWave {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


/* Page Header */
.page-header {
    color: white;
    text-align: center;
    padding: 6rem 0 4rem;
    margin-top: 0;
}

    .page-header h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .page-header p {
        font-size: 1.2rem;
        opacity: 0.9;
    }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
}

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

.btn {
    padding: 1rem 2rem;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
}

    .btn-primary:hover {
        background: linear-gradient(135deg, #1d4ed8, #1e3a8a);
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
    }

.btn-success {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
}

    .btn-success:hover {
        background: linear-gradient(135deg, #22c55e, #0f7c3d);
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
    }

.btn-primary,
.btn-success {
    min-width: 243.25px;
    text-align: center;
    padding: 0.75rem 1.5rem;
    display: inline-block;
    border: none;
    font-weight: 600;
}

.hero-image {
    position: relative;
}

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

/* Section Styles */
.section {
    padding: 5rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

    .section-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 1rem;
    }

    .section-header p {
        font-size: 1.1rem;
        color: #64748b;
        margin: 0 auto;
    }

/*Fazlalık Olabilir Ama Çalışıyor :D*/
.hero-bg {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: url('/img/hero-image3.png') no-repeat center center;
    background-size: cover;
    position: relative;
}

    .hero-bg::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.66);
        z-index: 1;
    }

.hero-bg-container {
    margin-top: -5em !important;
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
}


.hero-bg-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-bg-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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


@media (max-width: 768px) {
    .hero-bg-content {
        margin-top: -6em;
    }
}


/*Fazlalık Olabilir Ama Çalışıyor :D*/

.showcase-section {
    background: #ffffff;
    padding: 5rem 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 1rem;
}

    .showcase-grid.reverse {
        direction: rtl;
    }

        .showcase-grid.reverse .showcase-text,
        .showcase-grid.reverse .showcase-images {
            direction: ltr;
        }

.showcase-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.gradient-heading {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.showcase-text p {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.showcase-images img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    object-fit: cover;
}

.site-footer {
    background: #0f172a;
    padding: 2.5rem 0 2rem;
    text-align: center;
    border-top: 1px solid #1e293b;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

    .footer-bottom p {
        font-size: 0.875rem;
        color: #94a3b8;
        margin: 0;
    }

.inoventra-glow {
    font-size: 1.25rem;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    text-shadow: 0 0 8px rgba(255,255,255,0.6), 0 0 15px rgba(255,255,255,0.4), 0 0 25px rgba(255,255,255,0.3);
    transition: text-shadow 0.4s ease;
}

    .inoventra-glow:hover {
        text-shadow: 0 0 12px rgba(255,255,255,0.8), 0 0 20px rgba(255,255,255,0.6), 0 0 30px rgba(255,255,255,0.5);
    }

.showcaseh2 {
    text-align: center;
}
/* Mobil uyumluluk */
@media (max-width: 768px) {
    .showcase-grid, .showcase-grid.reverse {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .why-biicer-grid p {
        padding: 0em !important;
        text-align: left !important;
        line-height: 1.6 !important;
    }

    .showcase-grid p {
        padding: 0 1rem;
        line-height: 1.6;
    }

    .showcaseh2 {
        text-align: center;
    }

    .showcase-grid.reverse {
        direction: ltr;
    }

    .showcase-images img {
        width: 100%;
        margin: 0 auto;
    }

    .showcase-text h2 {
        font-size: 1.5rem;
    }
}



/* Why Choose Us Section */
.why-choose {
    background: #f8fafc;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-text h3 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.why-text p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.why-features {
    list-style: none;
    margin-bottom: 2rem;
}

    .why-features li {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
        color: #64748b;
    }

    .why-features i {
        color: #22c55e;
        font-size: 1.2rem;
    }

.why-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}



.why-biicer-section {
    background: #f8fafc;
    padding: 5rem 0;
}

.why-biicer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.why-biicer-left,
.why-biicer-right {
    color: #1e293b;
}

    .why-biicer-left h3,
    .why-biicer-right h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
        color: #1e293b;
    }

    .why-biicer-left p,
    .why-biicer-right p {
        font-size: 1.05rem;
        color: #475569;
        margin-bottom: 1.5rem;
    }

.why-biicer-features {
    list-style: none;
    padding: 0;
}

    .why-biicer-features li {
        display: flex;
        align-items: center;
        gap: 0.7rem;
        margin-bottom: 1rem;
        color: #475569;
    }

    .why-biicer-features i {
        color: #22c55e;
        font-size: 1.1rem;
    }

@media (max-width: 768px) {
    .why-biicer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-biicer-left,
    .why-biicer-right {
        padding: 0 1rem;
    }

        .why-biicer-left h3,
        .why-biicer-right h3 {
            font-size: 1.5rem;
            text-align: center;
        }

        .why-biicer-left p,
        .why-biicer-right p {
            font-size: 1rem;
            text-align: justify;
        }

    .why-biicer-features {
        padding-left: 0.5rem;
    }

        .why-biicer-features li {
            font-size: 0.95rem;
            align-items: flex-start;
        }
}


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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

    .service-card:hover {
        transform: translateY(-10px);
    }

    .service-card i {
        font-size: 3rem;
        color: #2563eb;
        margin-bottom: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
        color: #1e293b;
        margin-bottom: 1rem;
    }

    .service-card p {
        color: #64748b;
    }

/* Service Detail Pages */
.service-detail {
    margin-bottom: 5rem;
    padding: 3rem 0;
    border-bottom: 1px solid #e2e8f0;
}

    .service-detail:last-child {
        border-bottom: none;
    }

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

    .service-detail-content.reverse {
        direction: rtl;
    }

        .service-detail-content.reverse > * {
            direction: ltr;
        }

.service-detail-text h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .service-detail-text h2 i {
        color: #2563eb;
    }

.service-detail-text p {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

    .service-features li {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
        color: #64748b;
    }

    .service-features i {
        color: #22c55e;
        font-size: 1rem;
    }

.service-detail-image {
    width: 100%;
    max-width: 600px; /* Maksimum genişlik */
    height: 500px; /* Sabit yükseklik */
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

    .service-detail-image img {
        width: 100%;
        height: 100%; /* Kutunun yüksekliğine uy */
        object-fit: cover; /* Oran korunur, kırpar */
        border-radius: 15px;
        display: block;
    }

/* Mobilde yüksekliği biraz küçült */
@media (max-width: 768px) {
    .service-detail-image {
        height: 250px;
        max-width: 100%;
    }
}


/* About Page Styles */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height:1.7;
    font-size: 1.1rem;
    color: #475569!important;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.about-text,
.about-image {
    flex: 1;
}

    /* Resmin kare ve tam yer kaplaması için */
    .about-image img {
        width: 100%;
        max-width: 600px; /* 600px max genişlik */
        object-fit: cover; /* Taşma ve kırpma olmadan doldur */
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        display: block;
        margin-left: auto; /* Sağa yasla */
    }

/* Mobilde alt alta ve tam geniş */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .about-text,
    .about-image {
        width: 100%;
        flex: none;
    }

        .about-image img {
            max-width: 100%;
            aspect-ratio: auto;
            border-radius: 10px;
            margin-left: 0;
        }
}
/* .why-choose */

.why-choose-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 4rem 2rem;
}

.text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

.gradient-text {
    background: linear-gradient(135deg, #1039aa, #0768b1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-block p {
    font-size: 1.15rem;
    color: #475569;
    margin-bottom: 1.25rem;
    line-height: 1.6;
    font-weight: 500;
}

.image-block {
    position: relative;
    width: 360px;
    height: 360px;
    margin: 0 auto;
}

.image-wrapper {
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #0768b1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

/* Hafif iç içe ama her biri görünür */
.image-left {
    top: 40px;
    left: 0;
    z-index: 5;
}

.image-center {
    top: 0;
    left: 60px;
    z-index: 10;
    width: 260px;
    height: 260px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.image-right {
    top: 60px;
    left: 120px;
    z-index: 5;
}

/* Hover */
.image-wrapper:hover {
    transform: scale(1.05);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .why-choose-container {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
        padding: 2rem 1.5rem;
    }

    .image-block {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: static; /* override */
        gap: 1.5rem;
    }

    .image-wrapper {
        position: static !important;
        width: 90vw;
        max-width: 320px;
        height: 300px;
        margin: 0 auto;
        border: 2px solid #0768b1;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .image-left,
    .image-center,
    .image-right {
        top: auto !important;
        left: auto !important;
        z-index: auto !important;
    }

    .image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}



.business-card-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 3rem 0;
    background: #f8fafc;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.card-text {
    flex: 1;
    color: #1e293b;
}

    .card-text h2 {
        font-size: 2.25rem;
        margin-bottom: 1rem;
        font-weight: 700;
    }

    .card-text p {
        font-size: 1.1rem;
        line-height: 1.6;
        color: #475569;
        margin-bottom: 1rem;
    }

    .card-text b {
        color: #1039aa;
    }

.card-image {
    flex: 1;
    max-width: 320px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(16, 57, 170, 0.3);
    transition: transform 0.3s ease;
}

    .card-image img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
    }

    .card-image:hover {
        transform: scale(1.05);
    }

/* Responsive - Mobil */
@media (max-width: 768px) {
    .business-card-container {
        flex-direction: column;
        text-align: center;
    }

    .card-image {
        max-width: 80vw;
        margin-top: 2rem;
        box-shadow: 0 10px 25px rgba(16, 57, 170, 0.2);
    }
}

.mission-vision {
    margin-bottom: 5rem;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-card,
.vision-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

    .mission-card i,
    .vision-card i {
        font-size: 3rem;
        color: #2563eb;
        margin-bottom: 1.5rem;
    }

    .mission-card h3,
    .vision-card h3 {
        font-size: 1.5rem;
        color: #1e293b;
        margin-bottom: 1rem;
    }

.values-section {
    margin-bottom: 5rem;
}

    .values-section h2 {
        text-align: center;
        font-size: 2.5rem;
        color: #1e293b;
        margin-bottom: 3rem;
    }

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

    .value-item i {
        font-size: 2.5rem;
        color: #2563eb;
        margin-bottom: 1rem;
    }

    .value-item h4 {
        font-size: 1.2rem;
        color: #1e293b;
        margin-bottom: 1rem;
    }

.team-section {
    margin-bottom: 5rem;
}

    .team-section h2 {
        text-align: center;
        font-size: 2.5rem;
        color: #1e293b;
        margin-bottom: 1rem;
    }

.team-intro {
    text-align: center;
    color: #64748b;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

    .team-member img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        margin-bottom: 1rem;
        object-fit: cover;
    }

    .team-member h4 {
        font-size: 1.2rem;
        color: #1e293b;
        margin-bottom: 0.5rem;
    }

    .team-member p {
        color: #2563eb;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .team-member span {
        color: #64748b;
        font-size: 0.9rem;
    }

.certificates-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 3rem;
}

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

.certificate-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

    .certificate-item i {
        font-size: 2.5rem;
        color: #2563eb;
        margin-bottom: 1rem;
    }

    .certificate-item h4 {
        font-size: 1.1rem;
        color: #1e293b;
        margin-bottom: 1rem;
    }

/* Gallery Styles */
.gallery {
    background: #f8fafc;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid #e2e8f0;
    background: white;
    color: #64748b;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

    .filter-btn.active,
    .filter-btn:hover {
        background: #2563eb;
        color: white;
        border-color: #2563eb;
    }

.gallery-grid,
.gallery-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

    .gallery-item:hover {
        transform: translateY(-5px);
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        min-height: 500px !important;
        max-height: 500px !important;
        object-fit: cover;
        transition: transform 0.3s 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 1rem 1rem;
}

    .gallery-overlay h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .gallery-overlay p {
        font-size: 0.9rem;
        opacity: 0.9;
        margin-bottom: 0.5rem;
    }

.gallery-category {
    background: #2563eb;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .gallery-grid,
    .gallery-full-grid {
        grid-template-columns: 1fr; /* Tek sütun */
    }

    .gallery-item {
        height: auto; /* Yüksekliği otomatik ayarla */
    }

        .gallery-item img {
            height: auto; /* Görselin yüksekliği içeriğe göre ayarlansın */
            max-height: 300px !important; /* İsteğe bağlı: fazla uzamasın */
            min-height: 300px !important; /* İsteğe bağlı: fazla uzamasın */
        }

    .gallery-overlay {
        padding: 1rem;
    }

        .gallery-overlay h4 {
            font-size: 1rem;
        }

        .gallery-overlay p {
            font-size: 0.85rem;
        }
}

.load-more-section {
    text-align: center;
}

.process-section {
    background: #f8fafc;
}

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

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h4 {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 1rem;
}


.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.contact-form > p {
    color: #64748b;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        color: #1e293b;
        font-weight: 500;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 0.8rem;
        border: 2px solid #e2e8f0;
        border-radius: 8px;
        font-size: 1rem;
        transition: border-color 0.3s ease;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #2563eb;
        }

.quick-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.quick-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    opacity: 0.9;
}

    .quick-feature i {
        color: #22c55e;
    }

/* FAQ Section */
.faq-section {
    background: #f8fafc;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

    .faq-question:hover {
        background: #f8fafc;
    }

    .faq-question h4 {
        color: #1e293b;
        font-size: 1.1rem;
    }

    .faq-question i {
        color: #2563eb;
        transition: transform 0.3s ease;
    }

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    background: #1e293b;
    color: white;
}

    .testimonials .section-header h2,
    .testimonials .section-header p {
        color: white;
    }

.testimonial-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 4rem;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 2rem;
    text-align: center;
}

    .testimonial-card p {
        font-size: 1.2rem;
        font-style: italic;
        margin-bottom: 2rem;
        color: #cbd5e1;
    }

.testimonial-author {
    font-weight: 600;
    color: white;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

    .slider-btn.active,
    .slider-btn:hover {
        background: #2563eb;
    }

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stats-section {
    background: #1e293b;
    color: white;
}

.stat-item {
    text-align: center;
}

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

.stat-label {
    color: #cbd5e1;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    text-align: center;
}

    .cta-section h2 {
        color: white;
        margin-bottom: 1rem;
    }

    .cta-section p {
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 2rem;
    }

.cta-form {
    max-width: 500px;
    margin: 2rem auto 0;
    display: flex;
    gap: 1rem;
}

.cta-input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

    .cta-input:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    }

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

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #22c55e;
}

.footer-section p,
.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
}

    .footer-section a:hover {
        color: white;
    }

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

    .social-icons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: #2563eb;
        border-radius: 50%;
        color: white;
        text-decoration: none;
        transition: background 0.3s ease;
    }

        .social-icons a:hover {
            background: #22c55e;
        }

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .whatsapp-cta {
        padding: 12px;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .whatsapp-text {
        display: none;
    }

    .whatsapp-icon {
        display: block;
        font-size: 1.2rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

        .nav-menu.active {
            display: flex;
        }

    .mobile-menu-toggle {
        display: block;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .why-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

        .service-detail-content.reverse {
            direction: ltr;
        }

    .about-content {
        grid-template-columns: 1fr;
        padding: 0em !important;
        text-align: left !important;
        line-height: 1.6 !important;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .gallery-grid,
    .gallery-full-grid {
        grid-template-columns: 1fr;
    }

    .gallery-filter {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }

    .filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .cta-form {
        flex-direction: column;
    }

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

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Gallery filter animation */
.gallery-item {
    transition: all 0.3s ease;
}

    .gallery-item.hidden {
        opacity: 0;
        transform: scale(0.8);
        pointer-events: none;
    }

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
}

.contact-info, .map-container, .working-hours {
    flex: 1 1 45%;
}

    .map-container iframe {
        width: 100%;
        height: 100%;
        min-height: 350px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: stretch;
}

.contact-info, .map-container {
    flex: 1 1 45%;
}


.map-container {
    height: 500px !important;
}

    .map-container iframe {
        width: 100%;
        height: 100%;
        min-height: 500px;
        border-radius: 12px;
        border: 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: stretch; /* her iki alan eşit yüksekliği kaplar */
}

.contact-info, .map-container {
    flex: 1 1 48%;
}

.map-container {
    height: auto;
}

    .map-container iframe {
        width: 100%;
        height: 100%;
        min-height: 100%;
        border-radius: 12px;
        border: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

Contact Page Styles
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

    .contact-method i {
        font-size: 1.5rem;
        color: #2563eb;
        margin-top: 0.5rem;
    }

    .contact-method h4 {
        font-size: 1.1rem;
        color: #1e293b;
        margin-bottom: 0.5rem;
    }

    .contact-method p {
        color: #1e293b;
        font-weight: 600;
        margin-bottom: 0.3rem;
    }

    .contact-method span {
        color: #64748b;
        font-size: 0.9rem;
    }

@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-info,
    .map-container {
        flex: 1 1 100%;
    }

        .map-container iframe {
            min-height: 400px;
        }
}
