/* ==========================================================================
   DESIGN SYSTEM & CUSTOM STYLES FOR HACAMATÇI BÜLENT
   ========================================================================== */

/* --- Custom Properties / Colors --- */
:root {
    --primary: #0A2E2B;       /* Deep Emerald / Zümrüt Yeşili */
    --primary-light: #124A45; /* Medium Emerald */
    --primary-dark: #051A18;  /* Very Dark Green */
    --accent: #D4AF37;        /* Gold / Altın */
    --accent-light: #F3E5AB;  /* Soft Gold */
    --accent-dark: #AA820A;   /* Rich Gold */
    --bg-light: #F8F9FA;      /* Off-White / Cream background */
    --bg-dark: #071F1D;       /* Contrast Deep Green-Black */
    --text-dark: #1F2D2B;     /* Charcoal / Dark Slate */
    --text-light: #FFFFFF;    /* White */
    --text-muted: #8E9A98;    /* Muted Gray-Green */
    --text-muted-light: #C0C8C6; 
    
    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    --card-shadow-hover: 0 20px 40px rgba(10, 46, 43, 0.12);
    --gold-glow: 0 0 15px rgba(212, 175, 55, 0.4);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
}

/* --- Base & Reset Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--text-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* --- Layout Elements --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

@media (max-width: 1250px) {
    .container {
        padding: 0 1.25rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
        max-width: 100%;
        box-sizing: border-box;
    }
}

.section {
    padding: 7rem 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--bg-dark);
}

.text-light {
    color: var(--text-light);
}

.text-muted {
    color: var(--text-muted);
}

.text-muted-light {
    color: var(--text-muted-light);
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent) 30%, #FFEFA6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

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

.align-items-center {
    align-items: center;
}

/* --- Grid & Flex Systems --- */
.grid {
    display: grid;
    gap: 2.5rem;
}

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

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

@media (max-width: 992px) {
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .section {
        padding: 5rem 0;
    }
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* --- Badge & Section Headers --- */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--accent);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 1.5rem;
}

.section-badge {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 0.25rem;
}

.badge-gold {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.section-title {
    color: var(--primary);
}

.section-subtitle {
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    color: #4A5D5A;
}

.section-header {
    margin-bottom: 1.5rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-large {
    padding: 1rem 2.25rem;
    font-size: 1.125rem;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    background-color: #E5C158;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--text-light);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.glow-effect {
    position: relative;
    overflow: hidden;
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.glow-effect:hover::after {
    animation: shine-button 1.2s ease-in-out infinite;
    opacity: 1;
}

@keyframes shine-button {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* --- Header / Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 46, 43, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background-color: rgba(10, 46, 43, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: -0.01em;
}

.logo-accent {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    gap: 1.1rem;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    padding: 0.4rem 0;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

/* Intermediate screens layout adjustment (Desktop wrap prevention) */
@media (max-width: 1250px) and (min-width: 1025px) {
    .nav-menu {
        gap: 0.65rem;
    }
    .nav-link {
        font-size: 0.82rem;
    }
    .btn-nav-whatsapp {
        padding: 0.45rem 0.85rem;
        font-size: 0.82rem;
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.mobile-menu-toggle {
    display: none !important;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.75rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

/* Mobile & Tablet responsive menu */
@media (max-width: 1024px) {
    .navbar-container {
        padding: 0 1rem;
        height: 4.5rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .nav-actions {
        gap: 0.5rem;
    }

    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 0.35rem;
        font-size: 1.5rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 4.5rem;
        left: -100%;
        width: 100%;
        height: calc(100vh - 4.5rem);
        background-color: var(--primary);
        flex-direction: column;
        align-items: center;
        padding: 3rem 2rem;
        gap: 2rem;
        transition: var(--transition-smooth);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.15rem;
    }
    
    .btn-nav-whatsapp {
        font-size: 0.8rem;
        padding: 0.45rem 0.8rem;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 0 0.75rem;
    }

    .logo {
        font-size: 1.15rem;
    }

    .btn-nav-whatsapp {
        padding: 0.4rem 0.65rem;
        font-size: 0.76rem;
        gap: 0.35rem;
    }

    .btn-nav-whatsapp i {
        width: 15px;
        height: 15px;
    }
}

/* High contrast prep & diet section rules */
.prep-diet .section-title,
.prep-diet h2.section-title {
    color: #FFFFFF !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    font-weight: 800;
}

.prep-diet .section-subtitle {
    color: #E2E8F0 !important;
    font-size: 1.05rem;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--text-light);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 8rem;
    padding-bottom: 8rem;
    overflow: hidden;
}

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

.hero-content {
    max-width: 750px;
}

.hero-title {
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted-light);
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.feature-item i {
    color: var(--accent);
    width: 20px;
    height: 20px;
}

/* SVG Curve divider at bottom of hero */
.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.hero-waves svg {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
}

.hero-waves .shape-fill {
    fill: var(--text-light);
}

/* --- About Section --- */
.image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--card-shadow-hover);
    object-fit: cover;
    height: 480px;
}

.experience-card {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background-color: var(--primary);
    color: var(--text-light);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: 0 15px 30px rgba(10, 46, 43, 0.25);
    border: 2px solid var(--accent);
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 180px;
    text-align: center;
}

.exp-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.exp-text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .experience-card {
        right: 0;
        bottom: 0;
        transform: translate(0, 30%);
        margin: 0 auto;
        left: 0;
    }
    .about-image {
        height: 320px;
    }
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text {
    color: #4A5D5A;
    margin-bottom: 2rem;
}

.about-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-list-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(10, 46, 43, 0.08);
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.icon-box i {
    width: 14px;
    height: 14px;
    stroke-width: 3;
}

/* --- Benefits Section --- */
.benefit-card {
    background: var(--text-light);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    border: 1px solid rgba(10, 46, 43, 0.05);
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary);
    transition: var(--transition-smooth);
    opacity: 0;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(10, 46, 43, 0.1);
}

.benefit-card:hover::before {
    opacity: 1;
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(10, 46, 43, 0.05);
    color: var(--primary);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.benefit-card:hover .card-icon {
    background-color: var(--primary);
    color: var(--accent);
}

.benefit-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #5A6D6A;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* --- Regions Section --- */
.regions-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 620px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.regions-content::-webkit-scrollbar {
    width: 5px;
}

.regions-content::-webkit-scrollbar-track {
    background: rgba(10, 46, 43, 0.05);
    border-radius: 10px;
}

.regions-content::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}

.region-group-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0;
    margin-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.region-group-title i {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.region-point-card {
    display: flex;
    gap: 1.5rem;
    background: var(--bg-light);
    padding: 1.75rem;
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--accent);
    transition: var(--transition-smooth);
}

.region-point-card:hover {
    transform: translateX(5px);
    background: var(--text-light);
    box-shadow: var(--card-shadow);
}

.point-number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.8;
}

.point-details h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.point-details p {
    font-size: 0.925rem;
    color: #5A6D6A;
    margin-bottom: 0;
}

.chart-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow-hover);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.chart-wrapper.wrapper-3d {
    background-color: var(--bg-dark);
    height: 580px;
    display: flex;
    flex-direction: column;
}

#canvas3d-container {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: grab;
}

#canvas3d-container:active {
    cursor: grabbing;
}

#canvas3d-container canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

/* 3D Loader */
.loader-3d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 10;
    transition: opacity 0.5s ease;
}

.loader-3d.fade-out {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    border-top-color: var(--accent);
    animation: spin-anim 1s linear infinite;
}

@keyframes spin-anim {
    to { transform: rotate(360deg); }
}

.loader-3d span {
    font-family: var(--font-heading);
    color: var(--text-muted-light);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

/* Controls Overlay */
.controls-overlay {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    display: flex;
    gap: 0.75rem;
    z-index: 5;
}

.btn-3d-control {
    background: rgba(10, 46, 43, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-3d-control i {
    width: 14px;
    height: 14px;
}

.btn-3d-control:hover, .btn-3d-control.active {
    background: var(--accent);
    color: var(--primary-dark);
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Region Point Card Active Highlight */
.region-point-card.highlight {
    border-color: var(--accent);
    background: var(--text-light);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.2);
    transform: translateX(10px);
}

/* Hotspot Tooltip / Info Panel */
.hotspot-tooltip {
    position: absolute;
    left: 1.5rem;
    bottom: 5rem;
    width: 320px;
    max-width: calc(100% - 3rem);
    background: rgba(7, 31, 29, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.1);
}

.hotspot-tooltip.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hotspot-tooltip-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.hotspot-tooltip-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    flex-shrink: 0;
}

.hotspot-tooltip-icon i {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

.hotspot-tooltip h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0;
    line-height: 1.3;
}

.hotspot-tooltip p {
    font-size: 0.875rem;
    color: var(--text-muted-light);
    margin-bottom: 0.85rem;
    line-height: 1.6;
}

.hotspot-tooltip-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.hotspot-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.12);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-heading);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

@media (max-width: 768px) {
    .hotspot-tooltip {
        left: 0.75rem;
        bottom: 4rem;
        width: calc(100% - 1.5rem);
    }
    .chart-wrapper.wrapper-3d {
        height: 450px;
    }
}

.chart-overlay-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(7, 31, 29, 0.95) 0%, rgba(7, 31, 29, 0.5) 100%);
    color: var(--text-light);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chart-overlay-info i {
    color: var(--accent);
    flex-shrink: 0;
}

.chart-overlay-info span {
    font-size: 0.875rem;
    font-weight: 500;
}

@media (max-width: 992px) {
    .points-chart-img {
        height: 400px;
    }
}

/* --- Prep & Rules Section --- */
.prep-grid {
    margin-top: 2rem;
}

.prep-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    transition: var(--transition-smooth);
}

.prep-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.prep-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--accent);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.prep-card h3 {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    font-size: 1.35rem;
}

.prep-card p {
    color: var(--text-muted-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.prep-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.prep-card ul li {
    display: flex;
    gap: 0.75rem;
    font-size: 0.925rem;
    color: var(--text-muted-light);
    align-items: flex-start;
}

.prep-card ul li i {
    width: 16px;
    height: 16px;
    stroke-width: 2.5;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.prep-card ul li i[data-lucide="check"] {
    color: #2ECC71;
}

.prep-card ul li i[data-lucide="minus"] {
    color: #E74C3C;
}

/* --- FAQ Section --- */
.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: var(--bg-light);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(10, 46, 43, 0.05);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(10, 46, 43, 0.15);
    box-shadow: var(--card-shadow);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    text-align: left;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--accent);
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
    padding: 0 2rem;
}

.faq-answer p {
    color: #5A6D6A;
    font-size: 0.975rem;
    padding-bottom: 1.5rem;
    margin-bottom: 0;
}

/* Active State of FAQ Accordion */
.faq-item.active {
    background: var(--text-light);
    border-color: rgba(10, 46, 43, 0.15);
    box-shadow: var(--card-shadow-hover);
}

.faq-item.active .faq-question {
    color: var(--primary-light);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    padding: 0 2rem 0.5rem 2rem; /* Keep padding bottom consistent */
}

/* --- Testimonials Section --- */
.reviews-grid {
    margin-top: 2rem;
}

.review-card {
    background: var(--text-light);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(10, 46, 43, 0.03);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.stars {
    color: var(--accent);
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
}

.stars i {
    width: 16px;
    height: 16px;
    fill: var(--accent);
}

.review-text {
    font-style: italic;
    color: #4A5D5A;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
}

.reviewer-info h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 0.15rem;
}

.reviewer-info span {
    font-size: 0.825rem;
    color: var(--text-muted);
}

/* --- Contact & Map Section --- */
.contact-info-block {
    padding-right: 2rem;
}

@media (max-width: 992px) {
    .contact-info-block {
        padding-right: 0;
    }
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(10, 46, 43, 0.05);
    color: var(--primary);
    border-radius: 50%;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition-smooth);
    border: 1px solid rgba(10, 46, 43, 0.08);
}

.contact-detail-item:hover .contact-icon {
    background-color: var(--primary);
    color: var(--accent);
}

.contact-detail-item span {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.contact-detail-item strong {
    font-size: 1.125rem;
    color: var(--primary);
}

/* WhatsApp Randevu Kartı */
.contact-card-wrapper {
    perspective: 1000px;
}

.contact-action-card {
    background: var(--text-light);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--card-shadow-hover);
    border: 1px solid rgba(10, 46, 43, 0.08);
    position: relative;
}

.contact-action-card::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 5%;
    width: 90%;
    height: 6px;
    background: var(--accent);
    border-radius: 0 0 10px 10px;
}

.contact-action-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
}

.contact-action-card p {
    color: #5A6D6A;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

/* Form Styles */
.whatsapp-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

.form-group input, .form-group select {
    padding: 0.85rem 1.25rem;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(10, 46, 43, 0.15);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition-smooth);
    background-color: var(--bg-light);
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--accent);
    background-color: var(--text-light);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

/* --- Footer --- */
.footer {
    background-color: var(--primary-dark);
    padding: 5rem 0 3rem 0;
    color: var(--text-light);
    border-top: 3px solid var(--accent);
}

.footer-logo {
    display: inline-block;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.footer-text {
    color: var(--text-muted-light);
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 2rem;
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- Floating WhatsApp Widget --- */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.75rem;
    height: 3.75rem;
    background-color: #25D366;
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float-icon {
    width: 2rem;
    height: 2rem;
    stroke-width: 2.25;
}

/* Tooltip on hover */
.whatsapp-tooltip {
    position: absolute;
    right: 4.5rem;
    background-color: var(--primary);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition-smooth);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-right: 1px solid rgba(212, 175, 55, 0.3);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Pulsing background ring */
.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25D366;
    border-radius: 50%;
    z-index: -1;
    animation: whatsapp-pulse-anim 2s infinite;
}

@keyframes whatsapp-pulse-anim {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* --- Sülük Tedavisi Section --- */
.suluk-steps {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.suluk-step-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.suluk-step-item .step-num {
    background-color: var(--accent);
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--gold-glow);
}

.suluk-step-item h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.suluk-step-item p {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.benefits-overlay-box {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(10, 46, 43, 0.88);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 1.25rem;
    border-radius: var(--border-radius-md);
    color: var(--text-light);
}

.benefits-overlay-box h4 {
    font-family: var(--font-heading);
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefits-overlay-box p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text-muted-light);
}

/* Responsiveness for Sülük Section */
@media (max-width: 992px) {
    .suluk-image {
        margin-top: 2rem;
    }
}

/* --- Scroll Reveal Animations (JS triggered) --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Animation Delays */
.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.45s;
}

/* ==========================================================================
   HACAMAT TAKVİMİ & ADMIN STİLLERİ
   ========================================================================== */

/* Calendar Section Container */
.calendar-section {
    background-color: var(--bg-light);
    padding-top: 4rem;
    padding-bottom: 5rem;
}

.calendar-wrapper {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(10, 46, 43, 0.08);
    border: 1px solid rgba(10, 46, 43, 0.08);
    position: relative;
    overflow: hidden;
}

/* Calendar Header Controls */
.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eef2f2;
}

.calendar-title-group {
    text-align: center;
}

.calendar-title-group h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.live-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.2rem 0.65rem;
    border-radius: 50px;
    margin-top: 0.25rem;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Legend */
.calendar-legend {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem 2rem;
    margin-bottom: 2rem;
    background-color: #F4F8F7;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-md);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-badge {
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    display: inline-block;
}

.legend-gold .legend-badge {
    background: linear-gradient(135deg, #d4af37, #f3e5ab);
    color: #3d2e00;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.legend-available .legend-badge {
    background-color: #d1fae5;
    color: #065f46;
}

.legend-busy .legend-badge {
    background-color: #fee2e2;
    color: #991b1b;
}

.legend-closed .legend-badge {
    background-color: #e5e7eb;
    color: #4b5563;
}

.legend-desc {
    font-size: 0.82rem;
    color: var(--text-dark);
}

/* Grid Layout */
.calendar-grid-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    text-align: center;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.65rem;
}

/* Day Cards */
.cal-day-card {
    min-height: 100px;
    background: #fdfdfd;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius-md);
    padding: 0.6rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    cursor: default;
}

.cal-day-card.empty {
    background: transparent;
    border-color: transparent;
}

.cal-day-card.today {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(10, 46, 43, 0.15);
}

.cal-day-number {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1;
}

.cal-day-card.today .cal-day-number {
    color: var(--primary);
}

.cal-day-card .cal-badge {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 0.4rem;
    border-radius: 4px;
    text-align: center;
    margin-top: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
}

/* Status variants */
.cal-day-card.status-gold {
    background: linear-gradient(135deg, #fffdf0 0%, #fff8dc 40%, #fef3c7 100%);
    border: 2px solid #d4af37;
    box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35), inset 0 0 10px rgba(255, 215, 0, 0.15);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: goldCardPulse 3.5s infinite ease-in-out;
}

.cal-day-card.status-gold:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.55), inset 0 0 15px rgba(255, 215, 0, 0.3);
    border-color: #b8860b;
}

/* Light Shimmer Sweep across Gold Card */
.cal-day-card.status-gold::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        60deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 30%,
        rgba(255, 223, 128, 0.8) 50%,
        rgba(255, 255, 255, 0.95) 65%,
        transparent 100%
    );
    transform: rotate(25deg);
    pointer-events: none;
    animation: goldShimmerSweep 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    z-index: 1;
}

.cal-day-card.status-gold .cal-day-number {
    color: #854d0e;
    text-shadow: 0 1px 2px rgba(254, 240, 138, 0.8);
    position: relative;
    z-index: 2;
}

.cal-day-card.status-gold .cal-badge {
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 50%, #f59e0b 100%);
    color: #2e1d00;
    font-size: 0.75rem;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 2;
    animation: goldBadgeGlow 2.5s infinite ease-in-out alternate;
}

/* Golden Dust Floating Particle Container */
.gold-dust-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* Individual Floating Dust Particle */
.gold-dust-particle {
    position: absolute;
    background: radial-gradient(circle, #ffe066 0%, #ffd700 60%, rgba(212, 175, 55, 0) 100%);
    border-radius: 50%;
    box-shadow: 0 0 6px #ffd700, 0 0 12px #ffe066;
    pointer-events: none;
    opacity: 0;
    animation: floatGoldDust var(--dust-dur, 3s) infinite ease-in-out var(--dust-delay, 0s);
}

.gold-dust-sparkle {
    position: absolute;
    color: #ffd700;
    font-size: 10px;
    line-height: 1;
    pointer-events: none;
    opacity: 0;
    text-shadow: 0 0 6px #ffd700, 0 0 10px #ffe066;
    animation: sparkleTwinkle var(--dust-dur, 2.5s) infinite ease-in-out var(--dust-delay, 0s);
}

/* Legend Gold Badge Sparkle */
.legend-gold .legend-badge {
    background: linear-gradient(135deg, #d4af37 0%, #ffe066 50%, #f59e0b 100%);
    color: #2e1d00;
    box-shadow: 0 3px 12px rgba(212, 175, 55, 0.45);
    position: relative;
    overflow: hidden;
    animation: goldBadgeGlow 2.5s infinite ease-in-out alternate;
}

.legend-gold .legend-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -70%;
    width: 60%;
    height: 200%;
    background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: rotate(25deg);
    animation: goldShimmerSweep 3s infinite;
}

/* Keyframes */
@keyframes goldCardPulse {
    0%, 100% {
        box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35), inset 0 0 10px rgba(255, 215, 0, 0.15);
        border-color: #d4af37;
    }
    50% {
        box-shadow: 0 6px 26px rgba(212, 175, 55, 0.55), inset 0 0 16px rgba(255, 215, 0, 0.35);
        border-color: #f59e0b;
    }
}

@keyframes goldShimmerSweep {
    0% {
        left: -80%;
    }
    35%, 100% {
        left: 140%;
    }
}

@keyframes floatGoldDust {
    0% {
        transform: translateY(10px) translateX(0) scale(0.4);
        opacity: 0;
    }
    25% {
        opacity: 0.95;
    }
    75% {
        opacity: 0.95;
    }
    100% {
        transform: translateY(-45px) translateX(var(--dust-x, 8px)) scale(1.3);
        opacity: 0;
    }
}

@keyframes sparkleTwinkle {
    0%, 100% {
        transform: scale(0.3) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.4) rotate(90deg);
        opacity: 1;
    }
}

@keyframes goldBadgeGlow {
    0% {
        filter: drop-shadow(0 0 2px rgba(212, 175, 55, 0.5));
    }
    100% {
        filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.9));
    }
}

.cal-day-card.status-available {
    background: #f0fdf4;
    border-color: #86efac;
    cursor: pointer;
}

.cal-day-card.status-available:hover {
    transform: translateY(-4px);
    border-color: #22c55e;
    box-shadow: 0 6px 18px rgba(34, 197, 94, 0.2);
}

.cal-day-card.status-available .cal-badge {
    background-color: #22c55e;
    color: #ffffff;
}

.cal-day-card.status-busy {
    background: #fef2f2;
    border-color: #fca5a5;
    opacity: 0.85;
}

.cal-day-card.status-busy .cal-badge {
    background-color: #ef4444;
    color: #ffffff;
}

.cal-day-card.status-closed {
    background: #f9fafb;
    border-color: #e5e7eb;
    opacity: 0.6;
}

.cal-day-card.status-closed .cal-badge {
    background-color: #9ca3af;
    color: #ffffff;
}

.click-hint {
    font-size: 0.65rem;
    font-weight: 600;
    color: #059669;
    text-align: center;
    margin-top: 0.2rem;
    display: none;
}

.cal-day-card.status-available:hover .click-hint,
.cal-day-card.status-gold:hover .click-hint {
    display: block;
}

.cal-day-card.status-gold .click-hint {
    color: #b45309;
}

/* Info Banner */
.calendar-info-banner {
    margin-top: 2rem;
    background: linear-gradient(135deg, #0a2e2b, #124c46);
    color: var(--text-light);
    border-radius: var(--border-radius-md);
    padding: 1.5rem 1.75rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 25px rgba(10, 46, 43, 0.2);
}

.calendar-info-banner .info-icon {
    background: var(--accent);
    color: var(--primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.calendar-info-banner h4 {
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
}

.calendar-info-banner p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-muted-light);
    margin: 0;
}

.admin-footer-link {
    color: var(--accent);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.admin-footer-link:hover {
    color: #ffffff;
}

/* Responsive adjustments for calendar */
@media (max-width: 768px) {
    .calendar-wrapper {
        padding: 1.25rem;
    }

    .calendar-header {
        flex-direction: column;
        gap: 1rem;
    }

    .calendar-legend {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 0.85rem;
    }

    .calendar-grid-header {
        font-size: 0.75rem;
    }

    .calendar-grid {
        gap: 0.35rem;
    }

    .cal-day-card {
        min-height: 75px;
        padding: 0.35rem;
    }

    .cal-day-number {
        font-size: 0.95rem;
    }

    .cal-day-card .cal-badge {
        font-size: 0.62rem;
        padding: 0.2rem 0.1rem;
    }

    .calendar-info-banner {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* ==========================================================================
   BURSA İLELERİ & KADIN UZMAN / PERSONEL KADIN RENKLERİ TEMASI
   ========================================================================== */

/* Hero Badges Group & Female Badge */
.hero-badge-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.badge-female {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8) !important;
    color: #be185d !important;
    border: 1px solid rgba(236, 72, 153, 0.4) !important;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.2);
}

.feature-female i {
    color: #ec4899 !important;
}

/* Bursa Section Layout */
.bursa-section {
    background: linear-gradient(180deg, #F8FAFA 0%, #FFFFFF 100%);
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

/* Staff Cards */
.staff-cards-container {
    align-items: stretch;
    margin-top: 1.5rem;
}

.staff-card {
    border-radius: var(--border-radius-lg);
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Female Staff Card (Kadın Renkleri & Rose Gold Tema) */
.female-staff-card {
    background: linear-gradient(145deg, #fff5f8 0%, #fdf0f5 100%);
    border: 2px solid #f472b6;
    box-shadow: 0 12px 30px rgba(236, 72, 153, 0.12);
    position: relative;
    overflow: hidden;
}

.female-staff-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.female-staff-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.22);
    border-color: #ec4899;
}

.female-icon-box {
    background: linear-gradient(135deg, #ec4899, #be185d) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.35) !important;
}

.female-badge {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: #9d174d;
    background: #fbcfe8;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 0.4rem;
}

.female-staff-card h3 {
    font-family: var(--font-heading);
    color: #831843;
    font-size: 1.4rem;
}

.female-staff-card .staff-desc {
    color: #4c0519;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 1rem 0 1.25rem 0;
}

.female-staff-card .staff-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.female-staff-card .staff-features li {
    font-size: 0.9rem;
    color: #831843;
    font-weight: 600;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.female-staff-card .staff-features li i {
    color: #ec4899;
}

/* Female Button (Pembe / Fuşya Buton) */
.btn-female {
    background: linear-gradient(135deg, #db2777 0%, #be185d 100%);
    color: #ffffff !important;
    border: none;
    padding: 0.9rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(219, 39, 119, 0.35);
    transition: all 0.3s ease;
}

.btn-female:hover {
    background: linear-gradient(135deg, #be185d 0%, #9d174d 100%);
    box-shadow: 0 12px 25px rgba(219, 39, 119, 0.5);
    transform: translateY(-2px);
}

.glow-effect-pink {
    animation: glowPink 2.5s infinite;
}

@keyframes glowPink {
    0% {
        box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.6);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(236, 72, 153, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(236, 72, 153, 0);
    }
}

/* Male Staff Card */
.male-staff-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    box-shadow: var(--card-shadow);
}

.male-staff-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--primary);
}

.male-icon-box {
    background: var(--primary) !important;
    color: var(--accent) !important;
}

.male-badge {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: #065f46;
    background: #d1fae5;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 0.4rem;
}

.staff-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.staff-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.staff-icon-box i {
    width: 26px;
    height: 26px;
}

.male-staff-card .staff-desc {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 1rem 0 1.25rem 0;
}

.male-staff-card .staff-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.male-staff-card .staff-features li {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.male-staff-card .staff-features li i {
    color: var(--accent);
}

/* Bursa Districts Grid */
.districts-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.districts-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem 0.85rem;
}

.district-badge {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #374151;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
}

.district-badge i {
    width: 15px;
    height: 15px;
    color: #9ca3af;
}

.district-badge:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(10, 46, 43, 0.1);
}

.district-badge.main-district {
    background: #f0fdf4;
    border-color: #86efac;
    color: #065f46;
    font-weight: 700;
}

.district-badge.main-district i {
    color: #16a34a;
}

/* Female Patient Review Card */
.female-review-card {
    border-top: 3px solid #ec4899 !important;
    background: #fff5f8 !important;
}

.female-avatar {
    background: linear-gradient(135deg, #ec4899, #be185d) !important;
    color: white !important;
}

/* Responsive updates for staff cards */
@media (max-width: 768px) {
    .staff-card {
        padding: 1.5rem;
    }

    .districts-grid {
        gap: 0.5rem;
    }

    .district-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
    }
}


