/* AnkaFit - Spor Salonu Web Sitesi CSS */

:root {
    --primary-color: #dc3545;
    --secondary-color: #6c757d;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --font-family: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-color);
}

/* Navigation */
.navbar {
    background-color: var(--dark-color) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
}

.navbar-logo {
    background: white;
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 80%;
    z-index: 1;
    overflow: hidden;
}

.hero-runner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0.3;
    filter: brightness(0.8);
}

.hero-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(220,53,69,0.1), rgba(255,255,255,0.05));
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 5%;
    animation-delay: 4s;
}

.shape-4 {
    width: 80px;
    height: 80px;
    top: 80%;
    right: 15%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,26,46,0.8), rgba(170, 32, 32, 0.6));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(45deg, #dc3545, #ff6b6b);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(220,53,69,0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-line-1 {
    display: block;
    background: linear-gradient(45deg, #ffffff, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInLeft 1s ease-out;
}

.title-line-2 {
    display: block;
    background: linear-gradient(45deg, #ff6b6b, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInRight 1s ease-out 0.3s both;
}

@keyframes slideInLeft {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.6s both;
}

@keyframes fadeInUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.9s both;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b6b;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 1.2s both;
}

.hero-buttons .btn {
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.hero-buttons .btn:hover::before {
    left: 100%;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.hero-image {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    padding: 20px;
    color: white;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    animation: floatCard 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    color: #ff6b6b;
    margin-bottom: 10px;
    display: block;
}

.floating-card span {
    font-size: 0.9rem;
    font-weight: 600;
}

.card-1 {
    top: 12%;
    left: 15%;
    animation-delay: 0.5s;
}

.card-2 {
    top: 15%;
    right: 4%;
    animation-delay: 0.5s;
    width: 20%;
}

.card-3 {
    top: 40%;
    left: 40%;
    animation-delay: 1s;
}

.card-4 {
    bottom: 20%;
    left: 8%;
    animation-delay: 0.5s;
}

.card-5 {
    bottom: 1%;
    right: 25%;
    animation-delay: 2s;
    width: 30%;

}

.card-6 {
    bottom: 30%;
    left: 70%;
    animation-delay: 2.5s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    border-color: #ff6b6b;
    color: #ff6b6b;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* About Section */
.about-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-icon {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Service Image Container */
.service-image-container {
    height: 240px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    position: relative;
    background-color: #f8f9fa;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transition: transform 0.3s ease;
}

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

.service-placeholder {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #dee2e6;
}

/* Trainer Cards */
.trainer-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.trainer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.trainer-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.trainer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.3s ease;
}

.trainer-card:hover .trainer-image img {
    transform: scale(1.1);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: var(--light-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white !important;
    transform: translateY(-2px);
}

/* Pricing Cards */
.pricing-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.pricing-card .price {
    margin: 20px 0;
}

.pricing-card .list-unstyled li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.pricing-card .list-unstyled li:last-child {
    border-bottom: none;
}

/* Schedule Table */
.table {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.table thead th {
    background: var(--dark-color);
    color: white;
    border: none;
    padding: 20px;
    font-weight: 600;
}

.table tbody td {
    padding: 15px 20px;
    vertical-align: middle;
    border-color: #eee;
}

/* Gallery Carousel */
.gallery-carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gallery-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

/* Responsive carousel heights */
@media (min-width: 992px) {
    .gallery-carousel {
        height: 300px; /* Desktop: 4 photos, smaller height */
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .gallery-carousel {
        height: 350px; /* Tablet: 2 photos */
    }
}

@media (max-width: 767px) {
    .gallery-carousel {
        height: 250px; /* Mobile: 1 photo */
    }
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.gallery-slide {
    flex: 0 0 auto;
    width: 100%;
    height: 100%;
    padding: 0 10px;
}

/* Desktop: Show 4 photos side by side */
@media (min-width: 992px) {
    .gallery-slide {
        width: 25%; /* 4 photos per view */
        padding: 0 5px;
    }
}

/* Tablet: Show 2 photos side by side */
@media (min-width: 768px) and (max-width: 991px) {
    .gallery-slide {
        width: 50%; /* 2 photos per view */
        padding: 0 5px;
    }
}

/* Mobile: Show 1 photo with clear scrolling indication */
@media (max-width: 767px) {
    .gallery-slide {
        width: 100%; /* 1 photo per view */
        padding: 0 5px;
    }
    
    /* Add scroll indicators for mobile */
    .gallery-carousel-container::before {
        content: '← Kaydır →';
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0,0,0,0.7);
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        z-index: 5;
        animation: pulse 2s infinite;
    }
    
    /* Add gradient fade on sides to indicate more content */
    .gallery-carousel::before,
    .gallery-carousel::after {
        content: '';
        position: absolute;
        top: 0;
        width: 30px;
        height: 100%;
        z-index: 2;
        pointer-events: none;
    }
    
    .gallery-carousel::before {
        left: 0;
        background: linear-gradient(to right, rgba(248,249,250,0.9), transparent);
    }
    
    .gallery-carousel::after {
        right: 0;
        background: linear-gradient(to left, rgba(248,249,250,0.9), transparent);
    }
}

.gallery-item {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1.2);
}

/* Navigation Arrows */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.gallery-nav:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

.gallery-nav i {
    font-size: 1.2rem;
}

/* Dots Indicator */
.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.gallery-dot:hover {
    background: var(--primary-color);
    opacity: 0.7;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-carousel {
        height: 300px;
    }
    
    .gallery-slide {
        padding: 0 5px;
    }
    
    .gallery-nav {
        width: 40px;
        height: 40px;
    }
    
    .gallery-prev {
        left: 10px;
    }
    
    .gallery-next {
        right: 10px;
    }
    
    .gallery-nav i {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .gallery-carousel {
        height: 250px;
    }
    
    .gallery-overlay i {
        font-size: 1.5rem;
    }
}

/* BMI Calculator Styles */
#bmi-calculator {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.bmi-calculator-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.bmi-form-section {
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-right: 1px solid #e9ecef;
}

.bmi-result-section {
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.bmi-form-title,
.bmi-result-title {
    color: #343a40;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
}

.bmi-form .form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.bmi-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.bmi-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
    background: white;
}

.gender-selection {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.gender-selection input[type="radio"] {
    display: none;
}

.gender-option {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.gender-option:hover {
    border-color: var(--primary-color);
    background: rgba(220, 53, 69, 0.1);
}

.gender-selection input[type="radio"]:checked + .gender-option {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

.bmi-result-display {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bmi-welcome {
    text-align: center;
    color: #6c757d;
}

.bmi-result {
    text-align: center;
    animation: fadeInUp 0.5s ease;
}

.bmi-value {
    font-size: 3rem;
    font-weight: 800;
    margin: 1rem 0;
    display: block;
}

.bmi-category {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
}

.bmi-category.underweight {
    background: #e3f2fd;
    color: #1976d2;
    border: 2px solid #bbdefb;
}

.bmi-category.normal {
    background: #e8f5e8;
    color: #2e7d32;
    border: 2px solid #c8e6c9;
}

.bmi-category.overweight {
    background: #fff3e0;
    color: #f57c00;
    border: 2px solid #ffcc02;
}

.bmi-category.obese {
    background: #ffebee;
    color: #d32f2f;
    border: 2px solid #ffcdd2;
}

.bmi-recommendations {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.bmi-recommendations h6 {
    color: #343a40;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.bmi-recommendations ul {
    margin: 0;
    padding-left: 1.2rem;
}

.bmi-recommendations li {
    margin: 0.3rem 0;
    color: #495057;
}

.bmi-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.bmi-categories {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bmi-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.bmi-category.underweight {
    background: #e3f2fd;
    color: #1976d2;
}

.bmi-category.normal {
    background: #e8f5e8;
    color: #2e7d32;
}

.bmi-category.overweight {
    background: #fff3e0;
    color: #f57c00;
}

.bmi-category.obese {
    background: #ffebee;
    color: #d32f2f;
}

.category-label {
    font-weight: 600;
}

.category-range {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* BMI Calculator Responsive */
@media (max-width: 768px) {
    .bmi-form-section {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
    }
    
    .gender-selection {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .bmi-value {
        font-size: 2.5rem;
    }
    
    .bmi-categories {
        gap: 0.3rem;
    }
    
    .bmi-category {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 576px) {
    .bmi-form-section,
    .bmi-result-section {
        padding: 1.5rem;
    }
    
    .bmi-value {
        font-size: 2rem;
    }
    
    .bmi-category {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    /* Google Reviews responsive styles */
    .google-reviews-card .card-body {
        padding: 2rem !important;
    }
    
    .review-actions .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .review-actions .btn.me-3 {
        margin-right: 0 !important;
    }
    
    .google-maps-container iframe {
        height: 250px;
    }
}

/* Schedule Section Styles */
.schedule-cell {
    min-height: 80px;
    vertical-align: middle;
    cursor: pointer;
    transition: background-color 0.2s;
}

.schedule-cell:hover {
    background-color: #f8f9fa !important;
}

.schedule-item {
    padding: 5px;
    border-radius: 4px;
    background-color: #e3f2fd;
    border: 1px solid #bbdefb;
}

.schedule-actions {
    opacity: 0;
    transition: opacity 0.2s;
}

.schedule-item:hover .schedule-actions {
    opacity: 1;
}

.schedule-actions .btn {
    padding: 2px 6px;
    margin: 0 1px;
}

.table th {
    position: sticky;
    top: 0;
    z-index: 10;
}

.table thead th {
    background-color: #343a40 !important;
    color: white !important;
}

/* Görsel haftalık pano */
.weekly-board {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 16px;
}

.weekly-board .day-col {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    overflow: hidden;
}

.weekly-board .day-head {
    background: #111315;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    padding: 12px 10px;
    letter-spacing: .5px;
}

.weekly-board .slot-list {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.slot-card {
    border-radius: 8px;
    padding: 12px 14px;
    color: #0b2239;
    background: #e7f1ff; /* default (Erkek mavisi) */
    border: 1px solid #cfe3ff;
}

.slot-card.kadin {
    background: #ffc7d6;
    border-color: #ff9fb8;
}

.slot-card.erkek {
    background: #cfe7ff;
    border-color: #a9d0ff;
}

.slot-card.karisik {
    background: #f2f4f6;
    border-color: #e6eaef;
}

.slot-card.temizlik {
    background: #e8f5e8;
    border-color: #c3e6c3;
}

.slot-title {
    font-weight: 800;
    letter-spacing: .3px;
    margin-bottom: 6px;
}

.slot-time {
    font-weight: 700;
}

.slot-sub {
    font-size: 12px;
    color: #495057;
}

@media (max-width: 1199.98px) {
    .weekly-board { 
        grid-template-columns: repeat(3, 1fr); 
    }
}

@media (max-width: 767.98px) {
    .weekly-board { 
        grid-template-columns: 1fr; 
    }
}

/* Google Reviews Section Styles */
.google-reviews-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.google-reviews-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4285f4, #34a853, #fbbc05, #ea4335);
}

.reviews-content h3 {
    color: #1a1a1a;
    font-weight: 700;
}

.rating-display {
    background: rgba(255, 255, 255, 0.8);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.rating-display .stars i {
    font-size: 1.2rem;
    margin-right: 2px;
}

.rating-text {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1.1rem;
}

.review-actions .btn {
    border-radius: 25px;
    padding: 12px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.review-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.google-maps-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.google-maps-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.google-maps-container iframe {
    display: block;
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 15px;
}

.trust-item {
    padding: 20px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.trust-icon {
    transition: all 0.3s ease;
}

.trust-item:hover .trust-icon {
    transform: scale(1.1);
}

/* Service Description Rich Text Styles */
.service-description {
    text-align: left;
    line-height: 1.6;
    color: #6c757d;
}

.service-description h1,
.service-description h2,
.service-description h3,
.service-description h4,
.service-description h5,
.service-description h6 {
    color: #343a40;
    margin: 0.5rem 0;
    font-weight: 600;
}

.service-description p {
    margin: 0.5rem 0;
    color: #6c757d;
}

.service-description strong {
    font-weight: 600;
    color: #495057;
}

.service-description em {
    font-style: italic;
    color: #6c757d;
}

.service-description u {
    text-decoration: underline;
}

.service-description ul,
.service-description ol {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    color: #6c757d;
}

.service-description li {
    margin: 0.25rem 0;
}

.service-description ul li {
    list-style-type: disc;
}

.service-description ol li {
    list-style-type: decimal;
}

.service-description[style*="text-align: center"] {
    text-align: center !important;
}

.service-description[style*="text-align: right"] {
    text-align: right !important;
}

.service-description[style*="text-align: left"] {
    text-align: left !important;
}

/* Mission and Vision Cards */
.mission-vision-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.mission-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.mission-vision-card i {
    transition: all 0.3s ease;
}

.mission-vision-card:hover i {
    transform: scale(1.1);
}

.mission-vision-card h4 {
    color: #343a40;
    font-weight: 600;
    margin-bottom: 1rem;
}

.mission-vision-card p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 1rem;
}

/* Testimonial Cards */
.testimonial-card {
    transition: all 0.3s ease;
    border-radius: 15px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stars {
    color: #ffc107;
}

/* Blog Cards */
.blog-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Appointment Form */
#appointment {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.appointment-form .card {
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-control, .form-select {
    border-radius: 10px;
    border: 2px solid #eee;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Contact Section */
.contact-item {
    padding: 30px 20px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background: var(--dark-color) !important;
}

footer .social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    margin: 0 5px;
}

footer .social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Alert Messages */
.alert {
    border-radius: 10px;
    border: none;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .hero-image {
        height: 300px;
        margin-top: 2rem;
    }
    
    .floating-card {
        padding: 15px;
    }
    
    .floating-card i {
        font-size: 1.5rem;
    }
    
    .floating-card span {
        font-size: 0.8rem;
    }
    
    .navbar-nav {
        text-align: center;
        padding: 20px 0;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 0;
    }
    
    .hero-bg-image {
        width: 70%;
        height: 60%;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0.2;
    }
    
    .hero-runner-image {
        opacity: 0.2;
    }
    
    /* Increase spacing before "Sağlıklı Kal" on tablet */
    .title-line-1 {
        margin-bottom: 1.5rem;
    }
    
    .title-line-2 {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    /* Hero section mobile adjustments */
    .hero-section {
        padding-top: 80px; /* Navbar için boşluk */
        min-height: 100vh;
    }
    
    .hero-overlay {
        height: 100vh; /* Overlay'i sadece hero section'da tut */
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: space-around;
        gap: 0.5rem;
    }
    
    .stat-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .pricing-card .price .display-4 {
        font-size: 2.5rem;
    }
    
    .floating-card {
        padding: 10px;
    }
    
    .floating-card i {
        font-size: 1.2rem;
    }
    
    .floating-card span {
        font-size: 0.7rem;
    }
    
    /* Hide hero image on mobile */
    .hero-image {
        display: none !important;
    }
    
    /* Increase spacing before "Sağlıklı Kal" on mobile */
    .title-line-1 {
        margin-bottom: 2rem;
    }
    
    .title-line-2 {
        margin-bottom: 2.5rem;
    }
}

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

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c82333;
}


/* Card styles for schedule section */
.card {
    border: 1px solid #e3e6f0;
    border-radius: 0.35rem;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
}

.card-header {
    background-color: #f8f9fc;
    border-bottom: 1px solid #e3e6f0;
    padding: 0.75rem 1.25rem;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.text-primary {
    color: #4e73df !important;
}

.text-muted {
    color: #858796 !important;
}

/* Gap utility for buttons */
.gap-2 {
    gap: 0.5rem !important;
}

