/* ============================================
   Güzellik Salonu - Pastel/Feminin Tema
   ============================================ */

:root {
    /* Nötr Renk Paleti - Minimal ve Modern */
    --primary-color: #8B7355;
    --primary-light: #A8937A;
    --accent-color: #C4B5A0;
    --light-accent: #E8E3DC;
    --bg-light: #FAFAFA;
    --bg-section: #F5F5F5;
    --white: #FFFFFF;
    --text-dark: #2C2C2C;
    --text-medium: #4A4A4A;
    --text-light: #666666;
    --border-color: #E0E0E0;
    --shadow-soft: 0 2px 10px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: #FAFAFA;
    line-height: 1.7;
    font-size: 16px;
}

/* Header Styles */
.main-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand i {
    font-size: 2rem;
    color: var(--accent-color);
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 0.25rem;
    padding: 0.5rem 1rem !important;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
    background: var(--light-accent);
}

.navbar-toggler {
    border: 2px solid var(--primary-pink);
    padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 182, 193, 0.25);
}

.navbar-toggler-icon {
    background-image: none;
}

.navbar-toggler-icon i {
    color: var(--primary-pink);
    font-size: 1.5rem;
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    background: var(--primary-light);
    color: white;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #FFFFFF 0%, #FAFAFA 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 165, 184, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 229, 240, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--light-accent);
    border-radius: 25px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
}

/* Cards */
.card {
    border: none;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    background: white;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.card-header {
    background: var(--bg-section);
    border: none;
    padding: 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
    border-bottom: 2px solid var(--border-color);
}

.card-body {
    padding: 2rem;
}

/* Service Cards */
.service-card {
    text-align: center;
    padding: 2rem;
    height: 100%;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-accent);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--primary-color);
}

.service-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: #2C2C2C;
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: 5rem;
}

.footer h5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Footer Column Dividers */
.footer .row > div:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: 1.5rem;
}

.footer .row > div:not(:first-child):not(:last-child) {
    padding-left: 1.5rem;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.form-control,
.form-select {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 115, 85, 0.15);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Contact Info Cards */
.contact-info-card {
    background: white;
    border: 2px solid var(--border-color);
    padding: 2rem;
    border-radius: 15px;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.contact-info-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-info-card h5 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-info-card a {
    color: var(--text-dark);
    text-decoration: none;
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

/* Working Hours */
.working-hours {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
}

.working-hours h5 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.working-hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.working-hours-item:last-child {
    border-bottom: none;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
}

/* Service Tabs */
.services-tabs {
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.services-tabs .nav-link {
    color: var(--text-dark);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    margin: 0.25rem;
}

.services-tabs .nav-link:hover {
    color: var(--primary-color);
    background: var(--light-accent);
    border-color: var(--primary-color);
}

.services-tabs .nav-link.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.service-item-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-item-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-medium);
}

.tab-content {
    padding: 2rem 0;
    min-height: 400px;
}

@media (max-width: 768px) {
    .services-tabs .nav-link {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
    
    .services-tabs .nav-link i {
        display: none;
    }
}

/* Utilities */
.text-primary-pink {
    color: var(--primary-color);
}

.bg-soft-pink {
    background: var(--bg-section);
}

.bg-light-lavender {
    background: var(--light-accent);
}

/* Features/Advantages Cards */
.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 248, 248, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    height: 100%;
    border: 2px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(244, 240, 235, 0.98) 100%);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--light-accent) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.feature-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    color: var(--white);
}

.feature-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

/* Social Media Feed */

.social-feed-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    aspect-ratio: 1;
}

.social-feed-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.social-feed-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.social-feed-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.social-feed-item:hover .social-feed-image {
    transform: scale(1.1);
}

.social-feed-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 115, 85, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-feed-item:hover .social-feed-overlay {
    opacity: 1;
}

.social-feed-overlay i {
    font-size: 2.5rem;
    color: var(--white);
}

@media (max-width: 768px) {
    .feature-card {
        padding: 1.5rem 1.25rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 0.75rem;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-title {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-description {
        font-size: 0.8rem;
    }
}

/* Utility Classes for Performance (instead of inline styles) */
.hero-icon-large {
    font-size: 20rem;
    color: var(--light-accent);
    opacity: 0.3;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

.bg-section-light {
    background: #FAFAFA;
}

.text-primary-color {
    color: var(--primary-color);
}

.modal-content-transparent {
    background: transparent;
    border: none;
}

.modal-header-transparent {
    border: none;
    padding: 0.5rem 1rem;
}

.btn-close-custom {
    filter: brightness(0) invert(1);
    background-size: 1.5em;
}

.modal-image-full {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
}

.text-lg {
    font-size: 1.125rem;
}

.social-btn-icon {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    border: 1.5px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

/* Common inline styles converted to classes for performance */
.hero-section-compact {
    padding: 3rem 0;
}

.card-white {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-medium);
}

.icon-circle-large {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    background: var(--light-accent);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--primary-color);
}

.heading-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

