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

:root {
    --primary-blue: #1e3a8a;
    --secondary-blue: #3b82f6;
    --light-blue: #dbeafe;
    --accent-green: #059669;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --medium-gray: #e2e8f0;
    --dark-gray: #334155;
    --text-dark: #1e293b;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Loading */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid var(--light-blue);
    border-top: 5px solid var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: zoomIn 0.3s;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.lightbox-close:hover {
    color: #bbb;
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    max-width: 80%;
}

@keyframes zoomIn {
    from { transform: translate(-50%, -50%) scale(0); }
    to { transform: translate(-50%, -50%) scale(1); }
}

/* Top Bar */
.top-bar {
    background: var(--primary-blue);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    gap: 25px;
    align-items: center;
}

.contact-info svg {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    vertical-align: middle;
}

.top-contact-link {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.top-contact-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 10px;
}

.lang-btn {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 6px 15px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s;
}

.lang-btn:hover, .lang-btn.active {
    background: white;
    color: var(--primary-blue);
}

/* Header */
header {
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.logo-image {
    width: 180px;
    height: 50px;
    background: url('img/logo/logo.png') center/contain no-repeat;
    border-radius: 8px;
}

.logo-image:empty {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    padding: 0 20px;
}

/* Navigation */
.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-blue);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--secondary-blue);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 10px;
    top: 100%;
    left: 0;
    margin-top: 10px;
    padding: 15px 0;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s, margin-top 0.3s;
}

.dropdown:hover .dropdown-content {
    display: block;
    pointer-events: auto;
    opacity: 1;
    margin-top: 5px;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 15px;
}

.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--dark-gray);
    text-decoration: none;
    transition: all 0.3s;
}

.dropdown-content a::after {
    display: none;
}

.dropdown-content a svg {
    width: 20px;
    height: 20px;
}

.dropdown-content a:hover {
    background: var(--light-blue);
    color: var(--secondary-blue);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn svg {
    width: 30px;
    height: 30px;
    fill: var(--primary-blue);
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.mobile-overlay.active {
    display: block;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.85), rgba(5, 150, 105, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
}

.slide-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 25px;
    animation: fadeInUp 1s;
    line-height: 1.2;
}

.slide-content p {
    font-size: 24px;
    margin-bottom: 35px;
    animation: fadeInUp 1s 0.3s backwards;
    opacity: 0.95;
}

.cta-button {
    background: white;
    color: var(--primary-blue);
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    animation: fadeInUp 1s 0.6s backwards;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid rgba(255,255,255,0.6);
}

.slider-dot.active {
    background: white;
    width: 35px;
    border-radius: 6px;
}

/* Sections */
.section {
    padding: 90px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 18px;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-blue), var(--accent-green));
    margin: 20px auto;
    border-radius: 2px;
}

/* Treatments */
.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
}

.treatment-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.4s;
    cursor: pointer;
    border: 1px solid var(--medium-gray);
}

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

.treatment-icon {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--light-blue), #e0f2fe);
    display: flex;
    align-items: center;
    justify-content: center;
}

.treatment-icon svg {
    width: 90px;
    height: 90px;
    fill: var(--primary-blue);
}

.treatment-body {
    padding: 30px;
}

.treatment-body h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 600;
}

.treatment-body p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more {
    color: var(--secondary-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 12px;
}

/* About */
.about-section {
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 450px;
    background: url('https://images.unsplash.com/photo-1631217868264-e5b90bb7e133?w=800') center/cover;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.about-text h2 {
    color: var(--primary-blue);
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-text p {
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.4s;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.blog-image {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, var(--light-blue), var(--medium-gray));
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 25px;
}

.blog-date {
    color: var(--accent-green);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-content h3 {
    color: var(--primary-blue);
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}

.blog-content p {
    color: var(--dark-gray);
    line-height: 1.7;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    height: 250px;
    background: linear-gradient(135deg, var(--light-blue), var(--medium-gray));
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    background-size: cover;
    background-position: center;
    position: relative;
}

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

.gallery-item .delete-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.gallery-item:hover .delete-overlay {
    display: flex;
}

/* Contact */
.contact-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 26px;
    height: 26px;
    fill: white;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-item p {
    font-size: 15px;
    opacity: 0.95;
}

.contact-form {
    background: white;
    padding: 45px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.contact-form h3 {
    color: var(--primary-blue);
    font-size: 28px;
    margin-bottom: 30px;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-gray);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--medium-gray);
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--secondary-blue), var(--accent-green));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.back-btn {
    background: white;
    color: var(--primary-blue);
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s;
    display: inline-block;
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Detail Pages */
.detail-page-content {
    padding: 60px 20px;
}

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.detail-main {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.detail-main h2 {
    color: var(--primary-blue);
    font-size: 32px;
    margin-bottom: 20px;
}

.detail-main p {
    color: var(--dark-gray);
    line-height: 1.9;
    font-size: 17px;
    margin-bottom: 20px;
}

.detail-main svg {
    width: 60px;
    height: 60px;
    fill: var(--primary-blue);
    margin-bottom: 25px;
}

.detail-sidebar {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.detail-sidebar h3 {
    color: var(--primary-blue);
    font-size: 22px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-blue);
}

.treatments-sidebar a,
.blog-sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--dark-gray);
    transition: all 0.3s;
    background: var(--light-gray);
}

.treatments-sidebar a:hover,
.blog-sidebar-item:hover {
    background: var(--light-blue);
    color: var(--secondary-blue);
    transform: translateX(5px);
}

.treatments-sidebar svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.blog-sidebar-item {
    cursor: pointer;
    flex-direction: column;
    align-items: flex-start;
}

.blog-sidebar-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--primary-blue);
}

.blog-sidebar-item .blog-sidebar-date {
    font-size: 13px;
    color: var(--accent-green);
}

.about-detail-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.about-detail-content p {
    color: var(--dark-gray);
    line-height: 1.9;
    font-size: 17px;
}

.blog-detail-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--light-blue), var(--medium-gray));
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    margin-bottom: 30px;
}

.blog-detail-meta {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-blue);
}

.blog-detail-date {
    color: var(--accent-green);
    font-weight: 600;
    font-size: 15px;
}

.blog-detail-content {
    color: var(--dark-gray);
    line-height: 1.9;
    font-size: 17px;
}

/* Footer */
footer {
    background: #0f172a;
    color: rgba(255,255,255,0.8);
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 20px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 180px;
    height: 50px;
    background: url('img/logo/logo-white.png') center/contain no-repeat;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.footer-logo-img:empty {
    background: linear-gradient(135deg, var(--secondary-blue), var(--accent-green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.footer-logo-img:hover {
    opacity: 0.8;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s;
    line-height: 1.6;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-copyright a {
    text-decoration: none;
    color: inherit;
}

.furkatech-logo {
    height: 20px;
    vertical-align: middle;
}

.footer-copyright .furkatech {
    color: #fff;
    font-weight: 700;
}

.footer-copyright .tecnology {
    color: #00fefb;
    font-weight: 700;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    animation: fadeIn 0.3s;
    overflow-y: auto;
}

.modal-content {
    background: white;
    margin: 50px auto;
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    position: relative;
    animation: slideDown 0.3s;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-large {
    max-width: 800px;
}

.modal-xlarge {
    max-width: 1000px;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    cursor: pointer;
    color: var(--dark-gray);
    transition: color 0.3s;
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary-blue);
}

.modal-content h2 {
    color: var(--primary-blue);
    margin-bottom: 30px;
    text-align: center;
    font-size: 28px;
}

/* Footer Settings Modal */
.settings-section {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid var(--medium-gray);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-blue);
}

.section-header svg {
    width: 28px;
    height: 28px;
    fill: var(--secondary-blue);
    flex-shrink: 0;
}

.section-header h3 {
    color: var(--primary-blue);
    font-size: 20px;
    margin: 0;
    flex-grow: 1;
}

.section-header p {
    color: var(--dark-gray);
    font-size: 13px;
    margin: 5px 0 0 40px;
    flex-basis: 100%;
}

.settings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.settings-grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 14px;
}

.form-group label svg {
    width: 18px;
    height: 18px;
    fill: var(--secondary-blue);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: white;
    border: 2px solid var(--medium-gray);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.custom-checkbox:hover {
    border-color: var(--secondary-blue);
    background: var(--light-blue);
    transform: translateY(-2px);
}

.custom-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-box {
    width: 24px;
    height: 24px;
    border: 2px solid var(--medium-gray);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    transition: all 0.3s;
    flex-shrink: 0;
}

.checkbox-box svg {
    width: 16px;
    height: 16px;
    fill: white;
    opacity: 0;
    transition: opacity 0.3s;
}

.custom-checkbox input[type="checkbox"]:checked ~ .checkbox-box {
    background: var(--accent-green);
    border-color: var(--accent-green);
}

.custom-checkbox input[type="checkbox"]:checked ~ .checkbox-box svg {
    opacity: 1;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--dark-gray);
    font-size: 14px;
}

.checkbox-label svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-blue);
    flex-shrink: 0;
}

.custom-checkbox:hover .checkbox-label {
    color: var(--secondary-blue);
}

.footer-preview {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    margin-top: 20px;
}

.footer-preview h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.footer-preview p {
    margin-bottom: 10px;
    color: var(--dark-gray);
}

/* Floating Contact Buttons */
.floating-contacts {
    position: fixed;
    left: 25px;
    bottom: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: slideInLeft 0.6s ease-out;
}

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

.floating-btn {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
    text-decoration: none;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
    }
}

.floating-btn:hover {
    transform: scale(1.15) translateY(-5px);
    animation: none;
}

.floating-btn svg {
    width: 28px;
    height: 28px;
    fill: white;
    transition: transform 0.3s;
}

.floating-btn:hover svg {
    transform: scale(1.1) rotate(5deg);
}

.floating-call {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.floating-call:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

.floating-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.floating-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.floating-tooltip {
    position: absolute;
    left: 75px;
    background: rgba(30, 41, 59, 0.95);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.floating-tooltip::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 6px 6px 0;
    border-color: transparent rgba(30, 41, 59, 0.95) transparent transparent;
}

.floating-btn:hover .floating-tooltip {
    opacity: 1;
    left: 80px;
}

/* Admin Panel */
.admin-panel {
    display: none;
    min-height: 100vh;
    background: var(--light-gray);
}

.admin-mobile-toggle {
    display: none;
    position: fixed;
    top: 20px;
    left: 80px;
    z-index: 1002;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s;
}

.admin-mobile-toggle:hover {
    background: var(--secondary-blue);
    transform: scale(1.05);
}

.admin-mobile-toggle svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.admin-mobile-toggle:active {
    transform: scale(0.95);
}

.admin-sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    animation: fadeIn 0.3s;
}

.admin-sidebar-overlay.active {
    display: block;
}

.admin-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 260px;
    height: 100vh;
    background: var(--primary-blue);
    color: white;
    padding: 30px 0;
    overflow-y: auto;
    z-index: 1001;
}

.admin-logo {
    padding: 0 25px 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 30px;
}

.admin-logo h2 {
    font-size: 22px;
}

.admin-menu {
    list-style: none;
}

.admin-menu li {
    margin-bottom: 5px;
}

.admin-menu a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.admin-menu a svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.admin-menu a:hover,
.admin-menu a.active {
    background: rgba(255,255,255,0.1);
    color: white;
}

.admin-main {
    margin-left: 260px;
    padding: 30px;
}

.admin-header {
    background: white;
    padding: 25px 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.admin-header h1 {
    color: var(--primary-blue);
    font-size: 28px;
}

.logout-btn {
    background: #ef4444;
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.logout-btn:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

.admin-content {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.admin-section {
    display: none;
}

.admin-section.active {
    display: block;
}

.add-btn {
    background: var(--accent-green);
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.add-btn:hover {
    background: #047857;
    transform: translateY(-2px);
}

.items-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.items-table th {
    background: var(--light-gray);
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--primary-blue);
    border-bottom: 2px solid var(--medium-gray);
}

.items-table td {
    padding: 15px;
    border-bottom: 1px solid var(--medium-gray);
}

.action-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    margin-right: 8px;
    transition: all 0.3s;
}

.edit-btn {
    background: var(--secondary-blue);
    color: white;
}

.delete-btn {
    background: #ef4444;
    color: white;
}

.action-btn:hover {
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from { 
        opacity: 0;
        transform: translateY(-50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive - Tablet */
@media (max-width: 968px) {
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .detail-sidebar {
        position: static;
    }
    
    .admin-mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .admin-sidebar {
        left: -260px;
        transition: left 0.3s ease;
        box-shadow: 4px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .admin-sidebar.active {
        left: 0;
    }
    
    .admin-main {
        margin-left: 0;
        padding: 100px 20px 30px;
    }
    
    .admin-header {
        padding: 20px;
    }
    
    .admin-header h1 {
        font-size: 24px;
    }
    
    .logout-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .admin-content {
        padding: 25px 20px;
    }
    
    .add-btn {
        width: 100%;
        justify-content: center;
    }
    
    .items-table thead {
        display: none;
    }
    
    .items-table tbody {
        display: block;
    }
    
    .items-table tr {
        display: block;
        margin-bottom: 20px;
        padding: 20px;
        border-radius: 12px;
        border: 1px solid var(--medium-gray);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    
    .items-table td {
        display: block;
        padding: 10px 0;
        border: none;
    }
    
    .items-table td::before {
        content: attr(data-label);
        font-weight: 700;
        color: var(--primary-blue);
        display: block;
        margin-bottom: 8px;
        font-size: 13px;
        text-transform: uppercase;
    }
    
    .items-table td:not(:last-child) {
        border-bottom: 1px solid var(--light-blue);
        padding-bottom: 15px;
        margin-bottom: 5px;
    }
    
    .action-btn {
        margin: 5px 8px 5px 0;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .top-bar .container {
        gap: 10px;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
        font-size: 13px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        flex-direction: column;
        padding: 80px 30px 30px;
        z-index: 998;
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 15px;
        font-size: 18px;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        margin-top: 10px;
        padding-left: 20px;
        display: none;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 999;
    }

    .hero-slider {
        height: 500px;
    }

    .slide-content h1 {
        font-size: 36px;
    }

    .slide-content p {
        font-size: 18px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .about-content,
    .contact-content,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .treatments-grid,
    .blog-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .detail-main {
        padding: 25px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .contact-form,
    .contact-info-box {
        padding: 30px 25px;
    }

    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 35px;
    }

    .lightbox-caption {
        bottom: 15px;
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .floating-contacts {
        left: 15px;
        bottom: 20px;
        gap: 12px;
    }
    
    .floating-btn {
        width: 55px;
        height: 55px;
    }
    
    .floating-btn svg {
        width: 26px;
        height: 26px;
    }
    
    .floating-tooltip {
        display: none;
    }
    
    .settings-grid,
    .settings-grid-3,
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-xlarge {
        max-width: 95%;
        margin: 20px auto;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .floating-contacts {
        left: 10px;
        bottom: 15px;
        gap: 10px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
    }
    
    .floating-btn svg {
        width: 24px;
        height: 24px;
    }
    
    .admin-mobile-toggle {
        width: 48px;
        height: 48px;
        top: 15px;
        left: 350px;
    }
    
    .admin-mobile-toggle svg {
        width: 26px;
        height: 26px;
    }
    
    .admin-main {
        padding: 85px 15px 20px;
    }
    
    .admin-content {
        padding: 20px 15px;
    }
    
    .admin-header {
        padding: 15px;
    }
    
    .admin-header h1 {
        font-size: 20px;
    }
    
    .modal-content {
        margin: 15px;
        padding: 25px 20px;
    }
    
    .modal-large,
    .modal-xlarge {
        max-width: calc(100% - 30px);
    }
}

/* Admin panel floating butonları gizle */
.admin-panel ~ .floating-contacts {
    display: none;
}