@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

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

body {
    font-family: 'Poppins', sans-serif;
    color: #2e2e2e;
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}
/* ===== Header ===== */
.topbar {
    background: #b8898f;
    color: #fff;
    font-size: 14px;
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 10px 0;
    gap: 14px;
}

.topbar a {
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.topbar a:hover {
    opacity: 1;
}

.icon {
    width: 18px;
    height: 18px;
    display: inline-block;
}
.logo-img{
    height: 80px;
    width:auto;
}
/* Alt Menü */
.main-header {
    background: #2e2e2e;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand a {
    text-decoration: none;
    color: #2e2e2e;
}

.brand .title {
    font-size: 20px;
    font-weight: 600;
}

.brand .subtitle {
    font-size: 13px;
    opacity: 0.75;
}

/* Menü */
.nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    padding: 10px 2px;
    position: relative;
}

.nav a:hover {
    color: #c59aa0;
}

/* Dropdown */
.nav-item {
    position: relative;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.caret {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: -2px;
    opacity: 0.8;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.10);
    padding: 10px;
    display: none;
    background: #2e2e2e;
}

.dropdown-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
}

.dropdown-menu a:hover {
    background: #f6e7eb;
    color: #2e2e2e;
}

.nav-item:hover .dropdown-menu {
    display: block;
}

/* Mobil (şimdilik basit) */
@media (max-width: 992px) {
    .main-header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        flex-wrap: wrap;
        gap: 14px;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 0;
        margin-top: 8px;
        display: block; /* mobilde açık gösterelim (sonra hamburger yaparız) */
    }

    .dropdown-menu a {
        padding-left: 0;
    }
}
/* ===== Sosyal Medya SVG ===== */
.social {
    display: flex;
    gap: 14px;
}

.social a svg {
    width: 18px;
    height: 18px;
    fill: #fff;
    opacity: 0.9;
    transition: opacity .2s;
}

.social a:hover svg {
    opacity: 1;
}

/* ===== Hamburger ===== */
.hamburger {
    display: none;
    width: 28px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

/* Mobil Menü */
@media (max-width: 992px) {

    .main-header .container {
        flex-direction: row;
        align-items: center;
    }

    .hamburger {
        display: flex;
        margin-left: auto;
    }

    .nav {
        position: absolute;
        top: 100%;
        right: 0;
        background: #2e2e2e;
        width: 260px;
        flex-direction: column;
        gap: 0;
        padding: 15px;
        border-radius: 0 0 0 16px;
        box-shadow: -10px 10px 30px rgba(0,0,0,0.1);
        display: none;
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 12px 8px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .nav a:last-child {
        border-bottom: none;
    }

    /* Mobil dropdown */
    .dropdown-menu {
        display: none;
        position: static;
        box-shadow: none;
        padding: 0;
        margin-top: 6px;
    }

    .nav-item.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding-left: 16px;
        font-size: 14px;
        background: #797878;
        margin-top: 4px;
        border-radius: 8px;
    }
}
/* ===== Hero Slider ===== */
.hero-slider {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.slides {
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            rgba(0,0,0,0.45),
            rgba(0,0,0,0.25)
    );
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 1200px;
    margin: auto;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.slide-content h1 {
    font-size: 48px;
    max-width: 600px;
}

.slide-content p {
    font-size: 18px;
    margin: 15px 0 30px;
    max-width: 500px;
}

.slide-buttons {
    display: flex;
    gap: 14px;
}
/* ===== Slider Text Box (Okunurluk Garantisi) ===== */
.slide-text-box {
    max-width: 620px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.slide-text-box h1 {
    margin-bottom: 15px;
}

.slide-text-box p {
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}
.slide::before {
    pointer-events: none;
}

.dot {
    width: 10px;
    height: 10px;
    background: #fff;
    opacity: 0.5;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    opacity: 1;
}

/* Mobil */
@media (max-width: 768px) {
    .logo-img{height: 70px;}
    .hero-slider {
        height: 70vh;
    }

    .slide-content h1 {
        font-size: 30px;
    }
    .slide-text-box {
        padding: 25px;
        border-radius: 14px;
    }
}
/* ===== Services Section ===== */
.services-section {
    padding: 100px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    background: #f6e7eb;
    color: #c59aa0;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.section-header p {
    opacity: 0.75;
}

/* Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* ===== Modern Service Cards ===== */
.service-card.modern {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    color: #2e2e2e;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    transition: transform .4s ease, box-shadow .4s ease;
    display: flex;
    flex-direction: column;
}

.service-card.modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 65px rgba(0,0,0,0.15);
}

/* Görsel alan */
.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            rgba(0,0,0,0.0),
            rgba(0,0,0,0.35)
    );
}

/* İçerik */
.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-content p {
    font-size: 15px;
    opacity: 0.75;
}

/* Hover’da hafif zoom efekti */
.service-card.modern:hover .service-image {
    transform: scale(1.05);
    transition: transform .6s ease;
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 28px;
    }
    .service-image {
        height: 180px;
    }
}
/* ===== Bold Service Cards ===== */
.service-card.bold {
    position: relative;
    isolation: isolate;
}

/* Badge */
.service-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255,255,255,0.9);
    color: #2e2e2e;
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 20px;
    font-weight: 500;
    z-index: 2;
}

/* Hover glow efekti */
.service-card.bold::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: linear-gradient(
            120deg,
            rgba(197,154,160,0.35),
            rgba(255,255,255,0.0),
            rgba(197,154,160,0.35)
    );
    opacity: 0;
    transition: opacity .4s ease;
    z-index: -1;
}

.service-card.bold:hover::after {
    opacity: 1;
}

/* Görseli daha güçlü yap */
.service-card.bold .service-image {
    height: 230px;
}

.service-card.bold:hover .service-image {
    transform: scale(1.08);
}

/* Metni biraz daha netleştir */
.service-card.bold h3 {
    font-size: 21px;
}

.service-card.bold p {
    font-size: 15px;
    opacity: 0.8;
}

/* ===== Why Us Section ===== */
.why-us-section {
    background: #f6e7eb;
    padding: 100px 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-us-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    transition: transform .3s ease;
}

.why-us-card:hover {
    transform: translateY(-6px);
}

/* ===== Why Us Icons (SVG) ===== */
.why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(197,154,160,0.15);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s ease, background .3s ease;
}

.why-icon svg {
    width: 30px;
    height: 30px;
    fill: #c59aa0;
}

.why-us-card:hover .why-icon {
    transform: translateY(-4px);
    background: rgba(197,154,160,0.25);
}


.why-us-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.why-us-card p {
    font-size: 15px;
    opacity: 0.75;
}

/* Responsive */
@media (max-width: 992px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Gallery Section ===== */
.gallery-section {
    padding: 100px 0;
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item {
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 3;
    padding-bottom: 10px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
    opacity: 0;
    transition: opacity .3s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-button {
    text-align: center;
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hide-mobile {
        display: none;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== Mobile Swipe Gallery ===== */
@media (max-width: 768px) {
    .gallery-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 14px;
        padding: 0 16px 10px;
        box-sizing: border-box;
    }

    .gallery-item {
        flex: 0 0 calc(100vw - 32px);
        max-width: calc(100vw - 32px);
        scroll-snap-align: center;
    }
    .gallery-item img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        display: block;
    }
    .gallery-grid::-webkit-scrollbar {
        display: none;
    }
    .gallery-section::after {
        content: "↔ Kaydır";
        display: block;
        text-align: center;
        font-size: 13px;
        opacity: 0.6;
        margin-top: 10px;
    }
}
/* ===== Gallery CTA Button ===== */
.gallery-cta {
    margin-top: 60px;
    text-align: center;
}

.gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    background: linear-gradient(
            135deg,
            #c59aa0,
            #b8898f
    );
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    box-shadow: 0 20px 40px rgba(197,154,160,0.35);
    transition: transform .3s ease, box-shadow .3s ease;
}

.gallery-btn .arrow {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    transition: transform .3s ease;
}

.gallery-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 55px rgba(197,154,160,0.45);
}

.gallery-btn:hover .arrow {
    transform: translateX(6px);
}

/* Mobilde biraz daha kompakt */
@media (max-width: 576px) {
    .gallery-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}
/* ===== Lightbox ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    align-items: center;
    justify-content: center;
    transition: opacity .3s ease;
    z-index: 999999;
}
.lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    border-radius: 14px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
    line-height: 1;
}

/* ===== Footer ===== */
.site-footer {
    background: #2e2e2e;
    color: #fff;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    color: #ccc;
    text-decoration: none;
}

.footer-col a:hover {
    color: #fff;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

/* Sosyal */
.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a svg {
    width: 18px;
    height: 18px;
    fill: #ccc;
    transition: fill .3s ease;
}

.footer-social a:hover svg {
    fill: #fff;
}

/* Alt */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    font-size: 13px;
    color: #aaa;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}
/* ===== Floating WhatsApp Button (Left) ===== */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 30px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4);
    transition: transform .3s ease, box-shadow .3s ease;
}

.whatsapp-float svg {
    width: 26px;
    height: 26px;
    fill: #fff;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 30px 55px rgba(37, 211, 102, 0.55);
}

/* Mobilde biraz yukarı al */
@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 90px;
        right: 16px;
    }
}
/* ===== Contact Section (Mobile First) ===== */
.contact-section {
    padding: 80px 0;
    background: #b8898f;
}

.contact-card {
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Form Alanı */
.contact-form-area {
    padding: 40px 30px;
}

.contact-form-area h2 {
    font-size: 28px;
    margin: 10px 0;
}

.contact-desc {
    font-size: 15px;
    opacity: 0.8;
    margin-bottom: 30px;
}

/* Form */
.contact-form .form-field {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #555;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 14px;
    border-radius: 14px;
    border: 1px solid #ddd;
    font-size: 16px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #c59aa0;
}

.btn-gradient {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #c59aa0, #b8898f);
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 10px;
}

/* Bilgi Alanı */
.contact-info-area {
    background: #2e2e2e;
    color: #fff;
    padding: 35px 30px;
}

.contact-info-area h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-info-area p {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 20px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    font-size: 14px;
    margin-bottom: 8px;
}

/* ===== Desktop ===== */
@media (min-width: 992px) {
    .contact-card {
        flex-direction: row;
    }

    .contact-form-area {
        width: 60%;
        padding: 60px;
    }

    .contact-info-area {
        width: 40%;
        padding: 60px;
    }
}
/* ===== About Page Extended ===== */

/* Hero with image */
.about-hero.with-image {
    background: linear-gradient(
            rgba(0,0,0,0.45),
            rgba(0,0,0,0.35)
    ),
    url('../images/1.jpg') center / cover no-repeat;
    color: #fff;
    padding: 120px 0;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 44px;
    margin-bottom: 10px;
}

.about-hero-content p {
    font-size: 17px;
    opacity: 0.9;
}

/* Story */
.about-story {
    padding: 100px 0;
    background: #fff;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 26px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 15px;
}

/* Values */
.about-values {
    padding: 100px 0;
    background: #f6e7eb;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-box {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.value-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.value-box p {
    font-size: 15px;
    opacity: 0.8;
}
/* ===== About Hero Text Readability ===== */
.about-hero-box {
    display: inline-block;
    max-width: 700px;
    padding: 40px 50px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    border-radius: 22px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

.about-hero-box h1 {
    color: #fff;
}

.about-hero-box p {
    color: rgba(255,255,255,0.95);
}

/* Responsive */
@media (max-width: 768px) {

    .about-hero.with-image {
        padding: 20px 0;
        min-height: auto;
        height: auto;
    }

    .about-hero-content h1 {
        font-size: 32px;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }
    .about-hero-box {
        padding: 28px 24px;
        border-radius: 18px;
    }
}
/* ===== Prevent Mobile Zoom ===== */
input,
textarea,
select {
    font-size: 16px;
}
/* ===== Services Page ===== */

/* Hero */
.services-hero {
    background: linear-gradient(
            135deg,
            #c59aa0,
            #b8898f
    );
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.services-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.services-hero p {
    font-size: 16px;
    opacity: 0.9;
}

/* Page Grid */
.services-page {
    padding: 100px 0;
    background: #fff;
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.service-page-card {
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    transition: transform .4s ease, box-shadow .4s ease;
}

.service-page-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 65px rgba(0,0,0,0.15);
}

.service-page-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-page-content {
    padding: 30px;
}

.service-page-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-page-content p {
    font-size: 15px;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 992px) {
    .services-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-hero {
        padding: 70px 0;
    }

    .services-hero h1 {
        font-size: 32px;
    }

    .services-page {
        padding: 70px 0;
    }

    .services-page-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== Service Detail Page ===== */

/* Hero */
.service-detail-hero {
    background: linear-gradient(
            135deg,
            #c59aa0,
            #b8898f
    );
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.service-detail-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.service-detail-hero p {
    font-size: 16px;
    opacity: 0.9;
}

/* Content */
.service-detail-content {
    padding: 100px 0;
    background: #fff;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-image img {
    width: 100%;
    border-radius: 26px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.service-detail-text h2 {
    font-size: 30px;
    margin-bottom: 15px;
}

.service-detail-text h3 {
    font-size: 20px;
    margin: 25px 0 10px;
}

.service-detail-text p {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 15px;
}

.service-detail-text ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.service-detail-text ul li {
    margin-bottom: 8px;
    font-size: 15px;
}

/* CTA */
.service-detail-cta {
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .service-detail-hero {
        padding: 30px 0;
    }

    .service-detail-hero h1 {
        font-size: 32px;
    }

    .service-detail-content {
        padding: 70px 0;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ===== Service Detail Contact ===== */
.service-contact {
    padding: 100px 0;
    background: #f6e7eb;
}

.service-contact-card {
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 60px;
}

/* Info */
.service-contact-info h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.service-contact-info p {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 25px;
}

/* Form */
.service-contact-form .form-field {
    margin-bottom: 18px;
}

.service-contact-form label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #555;
}

.service-contact-form input,
.service-contact-form textarea {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid #ddd;
    font-size: 16px;
    font-family: inherit;
}

.service-contact-form input:focus,
.service-contact-form textarea:focus {
    outline: none;
    border-color: #c59aa0;
}

/* Responsive */
@media (max-width: 768px) {

    .service-contact {
        padding: 70px 0;
    }

    .service-contact-card {
        grid-template-columns: 1fr;
        padding: 35px;
    }

    .service-contact-info h2 {
        font-size: 24px;
    }
}
/* ===== Gallery Page ===== */

/* Hero */
.gallery-page-hero {
    background: linear-gradient(
            135deg,
            #c59aa0,
            #b8898f
    );
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.gallery-page-hero h1 {
    font-size: 42px;
    margin-bottom: 8px;
}

.gallery-page-hero p {
    font-size: 16px;
    opacity: 0.9;
}

/* Content */
.gallery-page {
    padding: 100px 0;
    background: #fff;
}

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Gallery Item */
.gallery-page .gallery-item {
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 3;
}

.gallery-page .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform .5s ease;
}

.gallery-page .gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
    opacity: 0;
    transition: opacity .3s ease;
}

.gallery-page .gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-page .gallery-item:hover::after {
    opacity: 1;
}

/* Responsive */
@media (max-width: 1200px) {
    .gallery-page-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-page-hero {
        padding: 70px 0;
    }

    .gallery-page-hero h1 {
        font-size: 32px;
    }

    .gallery-page {
        padding: 70px 0;
    }

    .gallery-page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .gallery-page-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== Blog Page ===== */

/* Hero */
.blog-hero {
    background: linear-gradient(
            135deg,
            #c59aa0,
            #b8898f
    );
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.blog-hero h1 {
    font-size: 42px;
    margin-bottom: 8px;
}

.blog-hero p {
    font-size: 16px;
    opacity: 0.9;
}

/* List */
.blog-page {
    padding: 100px 0;
    background: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.blog-card {
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    transition: transform .4s ease, box-shadow .4s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 65px rgba(0,0,0,0.15);
}

.blog-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding: 30px;
}

.blog-date {
    display: block;
    font-size: 13px;
    color: #999;
    margin-bottom: 6px;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.blog-content p {
    font-size: 15px;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .blog-hero {
        padding: 30px 0;
    }

    .blog-hero h1 {
        font-size: 32px;
    }

    .blog-page {
        padding: 70px 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== Blog Detail Page ===== */

/* ===== Blog Intro (Image Left - Text Right) ===== */
.blog-intro {
    padding: 80px 0;
    background: #fff;
}

.blog-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.blog-intro-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.blog-intro-text p {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 15px;
}

/* ===== Full Content ===== */
.blog-detail-content {
    padding: 60px 0 90px;
}

.blog-article {
    max-width: 820px;
    margin: 0 auto;
}

.blog-article h2 {
    font-size: 26px;
    margin: 35px 0 10px;
}

.blog-article p {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 15px;
}

.blog-article ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.blog-article ul li {
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-intro-grid {
        grid-template-columns: 1fr;
    }

    .blog-intro {
        padding: 60px 0;
    }
}


/* Contact */
.blog-contact {
    padding: 100px 0;
    background: #f6e7eb;
}

.blog-contact-card {
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 60px;
}

.blog-contact-info h2 {
    font-size: 26px;
    margin-bottom: 15px;
}

.blog-contact-info p {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 25px;
}

.blog-contact-form .form-field {
    margin-bottom: 18px;
}

.blog-contact-form label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
}

.blog-contact-form input,
.blog-contact-form textarea {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid #ddd;
    font-size: 16px;
}

.blog-contact-form input:focus,
.blog-contact-form textarea:focus {
    outline: none;
    border-color: #c59aa0;
}

/* Responsive */
@media (max-width: 768px) {

    .blog-detail-hero h1 {
        font-size: 30px;
    }

    .blog-detail-content {
        padding: 70px 0;
    }

    .blog-contact {
        padding: 70px 0;
    }

    .blog-contact-card {
        grid-template-columns: 1fr;
        padding: 35px;
    }
}
/* ===== Blog Detail Hero With Image ===== */
.blog-detail-hero.with-image {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
    color: #fff;
}

/* Koyu overlay (görseli öldürmez) */
.blog-detail-hero.with-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            rgba(0,0,0,0.55),
            rgba(0,0,0,0.45)
    );
}

.blog-detail-hero .container {
    position: relative;
    z-index: 2;
}

/* Yazı Kutusu (Glass Panel) */
.blog-hero-box {
    display: inline-block;
    max-width: 760px;
    padding: 40px 50px;
    backdrop-filter: blur(6px);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

.blog-hero-box h1 {
    font-size: 40px;
    margin-bottom: 10px;
    color: #fff;
}

.blog-hero-box .blog-meta {
    font-size: 14px;
    opacity: 0.95;
}

/* Mobil */
@media (max-width: 768px) {
    .blog-detail-hero.with-image {
        padding: 30px 0;
    }

    .blog-hero-box {
        padding: 28px 24px;
        border-radius: 18px;
    }

    .blog-hero-box h1 {
        font-size: 28px;
    }
}
/* ===== Breadcrumb ===== */
.breadcrumb {
    background: #f6e7eb;
    padding: 14px 0;
    font-size: 14px;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 6px;
    color: #999;
}

/* ===== Blog Content + Sidebar ===== */
.blog-detail-layout {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 50px;
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 120px;
    align-self: flex-start;
}

.sidebar-box {
    background: #f6e7eb;
    padding: 30px;
    border-radius: 22px;
}

.sidebar-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list li {
    margin-bottom: 10px;
}

.sidebar-list a {
    text-decoration: none;
    color: #555;
    font-size: 15px;
}

.sidebar-list a:hover {
    color: #000;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-detail-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: relative;
        top: auto;
        margin-top: 40px;
    }
}
/* ===== Contact Page ===== */

/* Hero */
.contact-hero {
    background: linear-gradient(135deg, #c59aa0, #b8898f);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.contact-hero p {
    font-size: 16px;
    opacity: 0.9;
}

/* Page */
.contact-page {
    padding: 100px 0;
    background: #fff;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Info */
.contact-page-info h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.contact-page-info p {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 25px;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-list li {
    font-size: 15px;
    margin-bottom: 12px;
}

.contact-info-list a {
    text-decoration: none;
    color: #000;
}

/* Form */
.contact-page-form {
    background: #f6e7eb;
    padding: 40px;
    border-radius: 28px;
}

.contact-page-form h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.contact-page-form .form-field {
    margin-bottom: 18px;
}

.contact-page-form label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
}

.contact-page-form input,
.contact-page-form textarea {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid #ddd;
    font-size: 16px;
}

.contact-page-form input:focus,
.contact-page-form textarea:focus {
    outline: none;
    border-color: #c59aa0;
}

/* Map */
.contact-map iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Responsive */
@media (max-width: 768px) {

    .contact-hero {
        padding: 70px 0;
    }

    .contact-hero h1 {
        font-size: 32px;
    }

    .contact-page {
        padding: 70px 0;
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-page-form {
        padding: 30px;
    }

    .contact-map iframe {
        height: 320px;
    }
}
/* ===== Contact Hero With Image ===== */
.contact-hero.with-image {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
    color: #fff;
}

.contact-hero.with-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            rgba(0,0,0,0.55),
            rgba(0,0,0,0.45)
    );
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero-box {
    display: inline-block;
    max-width: 720px;
    padding: 40px 50px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

.contact-hero-box h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.contact-hero-box p {
    font-size: 16px;
    opacity: 0.95;
}

/* Mobil */
@media (max-width: 768px) {
    .contact-hero.with-image {
        padding: 80px 0;
    }

    .contact-hero-box {
        padding: 28px 24px;
        border-radius: 18px;
    }

    .contact-hero-box h1 {
        font-size: 30px;
    }
}
/* ===== Contact Success Page ===== */
.contact-success {
    padding: 120px 0;
    background: #f6e7eb;
}

.success-card {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border-radius: 32px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

.success-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #c59aa0, #b8898f);
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-card h1 {
    font-size: 30px;
    margin-bottom: 15px;
}

.success-card p {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 30px;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Mobil */
@media (max-width: 576px) {
    .success-card {
        padding: 40px 25px;
    }

    .success-actions {
        flex-direction: column;
    }
}
/* ===== Education Page ===== */

/* Hero */
.education-hero {
    background: linear-gradient(135deg, #c59aa0, #b8898f);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.education-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.education-hero p {
    font-size: 16px;
    opacity: 0.9;
}

/* Page */
.education-page {
    padding: 100px 0;
    background: #fff;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.education-card {
    background: #fff;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    transition: transform .4s ease, box-shadow .4s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.education-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 65px rgba(0,0,0,0.15);
}

.education-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.education-content {
    padding: 30px;
}

.education-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.education-content p {
    font-size: 15px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.education-info {
    display: inline-block;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 20px;
    background: #f6e7eb;
    color: #333;
}

/* CTA */
.education-cta {
    padding: 100px 0;
    background: #f6e7eb;
}

.education-cta-box {
    background: #fff;
    border-radius: 32px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

.education-cta-box h2 {
    font-size: 30px;
    margin-bottom: 15px;
}

.education-cta-box p {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 992px) {
    .education-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .education-hero {
        padding: 30px 0;
    }

    .education-hero h1 {
        font-size: 32px;
    }

    .education-page {
        padding: 70px 0;
    }

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

    .education-cta-box {
        padding: 40px 25px;
    }
}

/* ===== Education Detail Page ===== */

/* Hero */
.education-detail-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
    color: #fff;
}

.education-detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            rgba(0,0,0,0.55),
            rgba(0,0,0,0.45)
    );
}

.education-detail-hero .container {
    position: relative;
    z-index: 2;
}

.education-hero-box {
    display: inline-block;
    max-width: 760px;
    padding: 40px 50px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    border-radius: 24px;
}

.education-hero-box h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

/* Layout */
.education-detail {
    padding: 50px 0;
    background: #fff;
}

.education-detail-layout {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 50px;
}

.education-detail-content img {
    width: 100%;
    border-radius: 24px;
    margin-bottom: 30px;
}

.education-detail-content h2 {
    font-size: 26px;
    margin: 35px 0 10px;
}

.education-detail-content p {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 15px;
}

.education-detail-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.education-detail-content ul li {
    margin-bottom: 8px;
}

/* Sidebar */
.education-detail-sidebar {
    position: sticky;
    top: 120px;
    align-self: flex-start;
}

.education-info-box {
    background: #f6e7eb;
    padding: 30px;
    border-radius: 24px;
}

.education-info-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.education-info-box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.education-info-box ul li {
    margin-bottom: 10px;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 992px) {
    .education-detail-layout {
        grid-template-columns: 1fr;
    }

    .education-detail-sidebar {
        position: relative;
        top: auto;
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .education-detail-hero {
        padding: 30px 0;
    }

    .education-hero-box {
        padding: 28px 24px;
    }

    .education-hero-box h1 {
        font-size: 30px;
    }
}
/* ===== Education Hero With Image ===== */
.education-hero.with-image {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
    color: #fff;
}

/* Overlay */
.education-hero.with-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            rgba(0,0,0,0.55),
            rgba(0,0,0,0.45)
    );
}

.education-hero .container {
    position: relative;
    z-index: 2;
}

/* Glass Box */
.education-hero-box {
    display: inline-block;
    max-width: 760px;
    padding: 40px 50px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

.education-hero-box h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.education-hero-box p {
    font-size: 16px;
    opacity: 0.95;
}

/* Mobil */
@media (max-width: 768px) {
    .education-hero.with-image {
        padding: 80px 0;
    }

    .education-hero-box {
        padding: 28px 24px;
        border-radius: 18px;
    }

    .education-hero-box h1 {
        font-size: 30px;
    }
}



