/* Google Fonts - Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #226671;
    --secondary-color: #e58810;
    --text-dark: #1f2937;
    --text-muted: #4b5563;
    --bg-light: #faf9f6;
    --bg-section: #f7f6f2;
}

/* ================= BANNER / BREADCRUMB ================= */
.bungalov-hizmet-banner {
    position: relative;
    background:
        linear-gradient(to bottom, rgba(20,30,32,0.65) 0%, rgba(20,30,32,0.45) 60%, rgba(20,30,32,0.55) 100%),
        url('../uploads/spaspor/kurumsal/arkaplan.jpg') center center / cover no-repeat;
    padding: 11rem 0 4.5rem;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.bungalov-hizmet-banner .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.bungalov-hizmet-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.bungalov-hizmet-badge .dot {
    width: 6px;
    height: 6px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--secondary-color);
}

.bungalov-hizmet-banner h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0,0,0,0.35);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.breadcrumb i {
    font-size: 0.8rem;
}

/* ================= ORTAK CONTAINER ================= */
.bungalov-hizmet-intro .container,
.bungalov-hizmet-grid-section .container,
.bungalov-hizmet-cta .container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ================= GİRİŞ METNİ ================= */
.bungalov-hizmet-intro {
    background-color: var(--bg-light);
    padding: 6rem 0 3rem;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.intro-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
}

.intro-title-area {
    flex: 1;
    max-width: 650px;
}

.intro-desc-area {
    flex: 1;
    max-width: 550px;
    padding-top: 1.5rem;
}

.badge-light {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #ffffff;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.badge-light .dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.intro-title-area h2 {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #111;
}

.intro-title-area h2 span {
    color: var(--secondary-color);
    font-weight: 700;
    font-style: italic;
}

.intro-desc-area p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    font-weight: 300;
}

/* ================= HİZMETLER GRID ================= */
.bungalov-hizmet-grid-section {
    background-color: var(--bg-light);
    padding: 3rem 0 6rem;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.hizmet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Kart Genel Özellikleri */
.hizmet-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 420px;
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hizmet-card:hover {
    transform: translateY(-10px);
}

.card-number {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.3rem;
    position: relative;
    z-index: 2;
}

.hizmet-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 2;
}

.hizmet-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.card-icon {
    margin-top: auto;
    font-size: 2.2rem;
    position: relative;
    z-index: 2;
}

/* Tip 1: Aydınlık Kart */
.card-light {
    background-color: #ffffff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.03);
    color: #111;
}

.card-light p { color: #666; max-width: 78%; }
.card-light .card-icon { color: var(--primary-color); }

.card-light::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background-color: #e0e0e0;
    position: absolute;
    top: 4.6rem;
    left: 2.2rem;
}

.corner-image {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    object-fit: cover;
    z-index: 1;
    border: 8px solid #ffffff;
    transition: transform 0.5s ease, width 0.3s ease, height 0.3s ease;
}

.card-light:hover .corner-image { transform: scale(1.05); }

/* Tip 2: Karanlık Kart */
.card-dark { color: #ffffff; }

.card-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.6s ease;
}

.card-dark:hover .card-bg-image { transform: scale(1.1); }

.card-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.card-dark .card-number, .card-dark h3, .card-dark p, .card-dark .card-icon { color: #ffffff; }
.card-dark p { opacity: 0.9; }

.card-dark::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background-color: rgba(255,255,255,0.4);
    position: absolute;
    top: 4.6rem;
    left: 2.2rem;
    z-index: 2;
}

/* ================= ALT CTA ================= */
.bungalov-hizmet-cta {
    background-color: var(--primary-color);
    padding: 4.5rem 0;
    font-family: 'Inter', sans-serif;
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 0.6rem;
}

.cta-text h2 span {
    color: var(--secondary-color);
}

.cta-text p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
}

.btn-about-more {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--secondary-color);
    color: #ffffff;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    white-space: nowrap;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-about-more:hover {
    background-color: #c9740b;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.25);
}

.btn-about-more .icon-circle {
    background-color: #ffffff;
    color: var(--secondary-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* =========================================================
   MOBİL UYUMLULUK
   ========================================================= */
@media (max-width: 1400px) {
    .hizmet-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .hizmet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .intro-row {
        flex-direction: column;
        gap: 2rem;
    }
    .intro-title-area h2 { font-size: 2.4rem; }
    .bungalov-hizmet-banner h1 { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .bungalov-hizmet-banner { padding: 8rem 0 2.5rem; }
    .bungalov-hizmet-intro { padding: 4rem 0 2rem; }
    .bungalov-hizmet-grid-section { padding: 2rem 0 4rem; }

    .hizmet-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hizmet-card {
        height: 400px;
        padding: 1.8rem;
    }

    .hizmet-card h3 { font-size: 1.2rem; }
    .hizmet-card p { font-size: 0.88rem; }

    .corner-image {
        width: 130px;
        height: 130px;
        bottom: -10px;
        right: -10px;
        border-width: 6px;
    }

    .card-light p { max-width: 60%; }

    .card-light::before,
    .card-dark::before {
        top: 4rem;
        left: 1.8rem;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-text h2 { font-size: 1.8rem; }
}

@media (max-width: 400px) {
    .hizmet-card {
        height: 380px;
        padding: 1.6rem;
    }

    .corner-image {
        width: 105px;
        height: 105px;
        border-width: 5px;
    }

    .card-light p { max-width: 56%; }
    .card-icon { font-size: 1.9rem; }
}