/* Reset ve Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e91e63;
    --secondary-color: #9c27b0;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.navbar-brand a {
    text-decoration: none;
    color: var(--primary-color);
}

.navbar-brand h1 {
    font-size: 24px;
    margin-bottom: 5px;
}

.navbar-brand p {
    font-size: 14px;
    color: #666;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.navbar-menu a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s;
}

.navbar-menu a:hover {
    color: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    min-width: 250px;
    list-style: none;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
}

.navbar-contact {
    display: flex;
    gap: 15px;
    align-items: center;
}

.phone-btn, .whatsapp-btn {
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
}

.phone-btn {
    background: var(--primary-color);
    color: var(--white);
}

.whatsapp-btn {
    background: #25D366;
    color: var(--white);
    font-size: 20px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 400;
}

.hero-content .lead {
    font-size: 20px;
    margin-bottom: 20px;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #c2185b;
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 18px;
}

/* Sections */
.services-section, .contact-info-section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid, .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card, .contact-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 22px;
}

.service-card p {
    margin-bottom: 20px;
    color: #666;
}

.contact-info-section {
    background: var(--light-bg);
}

/* Treatments Section */
.treatments-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.treatment-item {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border-left: 4px solid var(--primary-color);
}

.treatment-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.treatment-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.treatment-item h4 {
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.treatment-item p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.treatment-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.treatment-item a:hover {
    color: var(--secondary-color);
}

/* Footer */
.legal-notice {
    background: #fff3cd;
    padding: 15px 0;
    border-top: 2px solid #ffc107;
}

.legal-notice p {
    text-align: center;
    color: #856404;
    font-size: 14px;
}

.footer {
    background: #2c3e50;
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    margin: 0 15px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 999;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.9);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content a {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar-menu {
        display: none;
        width: 100%;
        flex-direction: column;
    }
    
    .navbar-menu.active {
        display: flex;
    }
    
    .navbar-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .cookie-content {
        flex-direction: column;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

/* Content Section */
.content-section {
    padding: 60px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.main-content {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.main-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.main-content h3 {
    color: var(--secondary-color);
    margin: 25px 0 15px;
}

.main-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.main-content li {
    margin-bottom: 10px;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-widget {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.sidebar-widget h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.related-links {
    list-style: none;
}

.related-links li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.related-links li:last-child {
    border-bottom: none;
}

.related-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.related-links a:hover {
    color: var(--primary-color);
}

.contact-widget {
    background: var(--light-bg);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 15px;
}

.btn-success {
    background: #25D366;
    color: var(--white);
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Randevu Section */
.randevu-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.randevu-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.randevu-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.randevu-form-container h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.randevu-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-box {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-box i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 5px;
}

.info-box h4 {
    margin-bottom: 5px;
    color: var(--text-color);
}

.info-box a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.contact-grid-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form-container h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-details h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.detail-item {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.detail-item i {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 5px;
}

.detail-item h3 {
    margin-bottom: 8px;
    color: var(--text-color);
    font-size: 18px;
}

.detail-item a {
    color: var(--primary-color);
    text-decoration: none;
}

/* About Section */
.about-section {
    padding: 60px 0;
}

.about-content {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.about-text h3 {
    color: var(--secondary-color);
    margin: 30px 0 15px;
    font-size: 22px;
}

.services-list,
.features-list {
    list-style: none;
    padding: 0;
}

.services-list li,
.features-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.services-list li i,
.features-list li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.cta-box {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
    text-align: center;
}

.cta-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

/* Alerts */
.alert {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert h3 {
    margin-bottom: 10px;
}

/* Legal Content */
.legal-content {
    padding: 60px 0;
    background: var(--light-bg);
}

.legal-text {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.legal-text h3 {
    color: var(--secondary-color);
    margin: 30px 0 15px;
}

.legal-text h4 {
    color: var(--text-color);
    margin: 20px 0 10px;
}

.legal-text ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-text li {
    margin-bottom: 10px;
}

.update-date {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #eee;
    font-style: italic;
    color: #666;
}

/* Responsive Design */
@media (max-width: 992px) {
    .content-wrapper,
    .randevu-grid,
    .contact-grid-page {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content h2 {
        font-size: 22px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .navbar-contact {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }
}

/* Warning Box */
.warning-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin: 25px 0;
    border-radius: 5px;
}

.warning-box p {
    margin: 0;
    color: #856404;
}

/* Icon Styles */
.icon-phone::before,
.icon-location::before,
.icon-clock::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 40px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 15px;
}

.icon-phone::before {
    content: '\f095';
}

.icon-location::before {
    content: '\f3c5';
}

.icon-clock::before {
    content: '\f017';
}

.contact-item {
    text-align: center;
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .whatsapp-float,
    .cookie-notice,
    .cta-box,
    .sidebar {
        display: none;
    }
}

/* Breadcrumb Styles */
.breadcrumb-nav {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    padding: 0 10px;
    color: #999;
}

.breadcrumb-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* SEO Optimized Headings */
h1 {
    font-size: 32px;
    line-height: 1.3;
}

h2 {
    font-size: 28px;
    line-height: 1.4;
}

h3 {
    font-size: 24px;
    line-height: 1.4;
}

h4 {
    font-size: 20px;
    line-height: 1.5;
}

/* Structured Data Visibility */
[itemscope] {
    display: block;
}

/* Performance - Lazy Loading */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Skip to content link */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-to-content:focus {
    top: 0;
}
