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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f4f2ef;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fefefe;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader {
    width: 50px;
    height: 50px;
    border: 4px solid #e0e6ed;
    border-top: 4px solid #4a90e2;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(244, 242, 239, 0.95);
    backdrop-filter: blur(14px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(196, 154, 93, 0.15);
}

.navbar.scrolled {
    background: rgba(244, 242, 239, 0.98);
    box-shadow: 0 6px 35px rgba(31, 50, 71, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 90px;
    gap: 20px;
}

.nav-logo a {
    font-size: 26px;
    font-weight: 700;
    color: #1f3247;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    height: 44px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}

.nav-menu a {
    color: #2c3e50;
    font-weight: 600;
    transition: color 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: #8b5e34;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-right > * {
    white-space: nowrap;
}

.lang-selector select {
    min-width: 120px;
}

.nav-menu.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.99);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-menu.active ul {
    flex-direction: column;
    gap: 0;
    padding: 20px;
}

.nav-menu.active ul li {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-menu.active ul li:last-child {
    border-bottom: none;
}

.nav-menu.active ul li a {
    display: block;
    padding: 14px 0;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.lang-selector select {
    padding: 8px 12px;
    border: 1px solid #e0e6ed;
    border-radius: 6px;
    background: white;
    font-size: 14px;
}

.btn-whatsapp, .btn-appointment {
    padding: 12px 26px;
    border-radius: 28px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-appointment {
    background: #4a90e2;
    color: white;
}

.btn-whatsapp:hover, .btn-appointment:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f4f2ef 0%, #e7e1dc 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(196, 154, 93, 0.16), rgba(196, 154, 93, 0.04));
    animation: float 6s ease-in-out infinite;
}

.shape1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

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

.shape3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

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

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #5a6c7d;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeInUp 0.9s ease-out 0.4s forwards;
}

.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.85s ease, transform 0.85s ease;
    will-change: opacity, transform;
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #1f3247;
    color: white;
    box-shadow: 0 8px 30px rgba(31, 50, 71, 0.16);
}

.btn-secondary {
    background: #c49a5d;
    color: white;
    box-shadow: 0 8px 30px rgba(196, 154, 93, 0.18);
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(31, 50, 71, 0.18);
}

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

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

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
section {
    padding: 100px 0;
}

section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.detail-item {
    background: #fff8f1;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 18px rgba(31, 50, 71, 0.06);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff8f1;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 18px rgba(31, 50, 71, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(196, 154, 93, 0.14);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
    border-color: rgba(74, 144, 226, 0.3);
}

.service-card,
.detail-item,
.stat-card,
.process-step,
.faq-item,
.blog-card,
.testimonial-card,
.contact-card {
    opacity: 0;
    transform: translateY(20px);
}

.service-card.animate,
.detail-item.animate,
.stat-card.animate,
.process-step.animate,
.faq-item.animate,
.blog-card.animate,
.testimonial-card.animate,
.contact-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.stats {
    background: #f8f3eb;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    align-items: stretch;
}

.stat-card {
    background: #fff8f1;
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: 0 10px 30px rgba(31, 50, 71, 0.08);
    text-align: center;
    border: 1px solid rgba(196, 154, 93, 0.14);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #4a90e2;
    margin-bottom: 15px;
}

.process {
    background: #fdf7ef;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    align-items: stretch;
}

.process-step {
    background: #fff8f1;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(31, 50, 71, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.process-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.process-step h3 {
    margin-bottom: 15px;
}

.process-step p {
    color: #5a6c7d;
    line-height: 1.8;
}

/* FAQ Section */
.faq-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 20px;
    background: #f8f9fa;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.tab-btn.active {
    background: #4a90e2;
    color: white;
}

.faq-category {
    display: none;
}

.faq-category.active {
    display: block;
}

.faq-item {
    background: white;
    margin-bottom: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-answer {
    padding: 0 20px;
    color: #5a6c7d;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
}

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

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

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

.blog-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.04);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(74, 144, 226, 0.95);
    color: white;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.02em;
}

.blog-meta {
    display: block;
    margin-bottom: 14px;
    color: #7a8a9c;
    font-size: 14px;
}

.blog-detail {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    overflow: hidden;
}

.blog-detail-image {
    position: relative;
    overflow: hidden;
    min-height: 420px;
}

.blog-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-content {
    padding: 50px;
}

.blog-detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.blog-lead {
    margin-bottom: 30px;
    color: #5a6c7d;
    font-size: 1.1rem;
    line-height: 1.8;
}

.blog-detail-content p {
    margin-bottom: 22px;
    color: #4e5967;
    line-height: 1.8;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    padding: 14px 26px;
    margin-top: 20px;
    background: #4a90e2;
    color: white;
    border-radius: 999px;
}

.page-hero-blog {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #fbf7f4 0%, #eef1ed 100%);
}

.page-hero-blog .hero-text-block {
    max-width: 760px;
}

.page-hero-blog .eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: #4a90e2;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.page-hero-blog h1 {
    font-size: 3rem;
    line-height: 1.05;
    margin-bottom: 20px;
}

.blog-grid-section {
    padding: 80px 0;
}

.empty-state {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    color: #5a6c7d;
}

.admin-page {
    background: #f7f7f7;
    color: #2c3e50;
    font-family: 'Inter', sans-serif;
}

.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef4fb;
    padding: 30px 20px;
}

.login-card {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    padding: 38px 32px;
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(23,43,71,0.12);
}

.login-card h1 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: #1f3247;
}

.login-card label {
    display: block;
    margin-bottom: 7px;
    font-weight: 600;
    color: #34495e;
}

.login-card input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d9dee4;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: #2c3e50;
}

.login-card button {
    width: 100%;
    padding: 16px;
    background: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
}

.login-error {
    background: #fdecea;
    color: #a12828;
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 20px;
}

.sidebar-user {
    margin: 16px 0 12px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.08);
    border-radius: 14px;
    color: #f1f5fb;
    font-weight: 600;
}

.admin-panel {
    max-width: 1200px;
    margin: 60px auto 80px;
    padding: 0 20px;
}

.admin-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.admin-top h1 {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.admin-top p {
    max-width: 680px;
    color: #5a6c7d;
}

.admin-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.admin-message {
    background: #e9f7ed;
    color: #1a6d3a;
    border-left: 4px solid #4a90e2;
    padding: 18px 24px;
    border-radius: 14px;
    margin-bottom: 30px;
}

.admin-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
}

.admin-table-card,
.admin-form-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 16px 14px;
    border-bottom: 1px solid #eef1f4;
    text-align: left;
    font-size: 0.95rem;
}

.admin-table th {
    color: #4a90e2;
    font-weight: 600;
}

.admin-table tbody tr:hover {
    background: #f8fbfe;
}

.admin-link {
    color: #4a90e2;
    font-weight: 600;
    margin-right: 16px;
}

.admin-delete {
    color: #d64545;
}

.admin-form-card form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #34495e;
}

.admin-form-card form label span {
    color: #d64545;
}

.admin-form-card form input,
.admin-form-card form textarea {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid #e6ebf1;
    border-radius: 12px;
    margin-bottom: 22px;
    font-size: 0.95rem;
    color: #2c3e50;
}

.admin-form-card form textarea {
    resize: vertical;
    min-height: 140px;
}

    .file-drop-box {
        border: 2px dashed #d9dee4;
        border-radius: 18px;
        padding: 24px;
        text-align: center;
        position: relative;
        background: #fafbfc;
        margin-bottom: 22px;
        cursor: pointer;
        transition: border-color 0.25s ease, background 0.25s ease;
    }

    .file-drop-box:hover,
    .file-drop-box.dragover {
        border-color: #4a90e2;
        background: #f3f8ff;
    }

    .file-drop-box p {
        margin-bottom: 14px;
        color: #5a6c7d;
        font-weight: 600;
    }

    .file-drop-box .btn-secondary {
        display: inline-block;
        margin-bottom: 12px;
    }

    .file-drop-box .file-name {
        color: #34495e;
        font-size: 0.95rem;
    }

    .image-preview {
        margin-bottom: 20px;
    }

    .image-preview img {
        width: 100%;
        max-height: 260px;
        object-fit: cover;
        border-radius: 16px;
        border: 1px solid #e6ebf1;
    }

    border-radius: 12px;
}

@media (max-width: 1024px) {
    .admin-grid {
        grid-template-columns: 1fr;
    }

    .admin-top {
        flex-direction: column;
    }
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #4a90e2;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
}

.blog-content {
    padding: 20px;
}

.read-more {
    color: #4a90e2;
    font-weight: 600;
}

/* Why Choose Us */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Appointment Section */
.appointment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.appointment-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a90e2;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #4a90e2;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #357abd;
    transform: translateY(-2px);
}

.success {
    color: #28a745;
    margin-top: 20px;
    font-weight: 600;
}

.btn-whatsapp-large {
    display: inline-block;
    padding: 15px 30px;
    background: #25d366;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-whatsapp-large:hover {
    background: #1da851;
    transform: translateY(-2px);
}

/* Testimonials */
.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
}

.testimonial-card {
    flex: 0 0 400px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    scroll-snap-align: start;
}

.testimonial-quote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.testimonial-author {
    color: #4a90e2;
    font-weight: 600;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

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

/* Footer */
.footer {
    background: linear-gradient(180deg, #191f2b 0%, #111621 100%);
    color: #f2ede7;
    padding: 60px 0 28px;
}

.footer-container {
    display: grid;
    grid-template-columns: 160px minmax(260px, 320px) repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
    padding-left: 20px;
}

.footer-logo-only {
    padding-left: 20px;
}

.footer-text-block {
    padding-top: 10px;
}

.footer-logo {
    display: block;
    width: fit-content;
}

.footer-logo img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    border-radius: 22px;
    box-shadow: 0 28px 65px rgba(0,0,0,0.26);
    background: rgba(255,255,255,0.12);
    padding: 18px;
}

.footer-text-block p {
    margin-top: 0;
    max-width: 380px;
    color: rgba(242, 237, 231, 0.88);
    line-height: 1.95;
}

.footer-section p {
    max-width: 480px;
    color: rgba(242, 237, 231, 0.8);
    line-height: 1.8;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: #d4b67f;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
    color: rgba(242, 237, 231, 0.82);
}

.footer-section ul li a {
    color: rgba(242, 237, 231, 0.92);
    transition: color 0.25s ease;
}

.footer-section ul li a:hover {
    color: #d4b67f;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
    color: rgba(242, 237, 231, 0.72);
}

.footer-bottom a {
    color: #d4b67f;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #4a90e2;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 30px;
    height: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        align-items: center;
        min-height: auto;
        padding: 14px 18px;
    }

    .nav-menu {
        display: none;
        width: 100%;
    }
    
    .nav-menu.active {
        display: block;
    }

    .nav-menu.active ul {
        padding: 16px 18px 18px;
    }
    
    .nav-right {
        display: none;
        width: 100%;
        justify-content: center;
        padding: 0 18px 18px;
        background: #fafbff;
    }

    .nav-menu.active + .nav-right {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .appointment-content {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonials-slider {
        gap: 20px;
    }
    
    .testimonial-card {
        flex: 0 0 300px;
    }
}


@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* RTL Support */
[dir="rtl"] .nav-container {
    direction: rtl;
}

[dir="rtl"] .hero-content {
    direction: rtl;
}

[dir="rtl"] .about-content {
    direction: rtl;
}

[dir="rtl"] .services-content {
    direction: rtl;
}

[dir="rtl"] .faq-content {
    direction: rtl;
}

[dir="rtl"] .blog-content {
    direction: rtl;
}

[dir="rtl"] .contact-content {
    direction: rtl;
}

[dir="rtl"] .appointment-content {
    direction: rtl;
}

[dir="rtl"] .footer-container {
    direction: rtl;
}

[dir="rtl"] .contact-grid {
    direction: rtl;
}

[dir="rtl"] .faq-tabs {
    direction: rtl;
}

[dir="rtl"] .faq-accordion {
    direction: rtl;
}

[dir="rtl"] .blog-grid {
    direction: rtl;
}

[dir="rtl"] .service-cards {
    direction: rtl;
}

[dir="rtl"] .testimonial-slider {
    direction: rtl;
}

[dir="rtl"] .lang-selector select {
    direction: rtl;
}

/* About Page */
.page-hero-about {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #fbf7f4 0%, #f0e8e4 100%);
}

.page-hero-about .eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: #4a90e2;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.page-hero-about h1 {
    font-size: 3rem;
    line-height: 1.05;
    margin-bottom: 20px;
}

.page-hero-about p {
    font-size: 1.3rem;
    color: #5a6c7d;
}

.doctor-bio-section {
    padding: 80px 0;
    background: white;
}

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

.bio-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.bio-image img {
    width: 100%;
    height: auto;
    display: block;
}

.bio-content h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.bio-text {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.bio-text p {
    color: #5a6c7d;
    line-height: 1.8;
    font-size: 1rem;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fafaf9 0%, #f5f0ec 100%);
}

.services-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.section-intro {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.service-card h4 {
    color: #4a90e2;
    margin-bottom: 18px;
    font-size: 1.2rem;
}

.service-card ul {
    list-style: none;
}

.service-card ul li {
    color: #5a6c7d;
    padding: 8px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.service-card ul li:last-child {
    border-bottom: none;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: #f9f9f9;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f0f5ff;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #4a90e2;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    background: #e8f1ff;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 25px;
    color: #5a6c7d;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .bio-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .page-hero-about h1 {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-section h2,
    .services-section h2 {
        font-size: 2rem;
    }
}
.admin-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
    gap: 0;
    background: #eef4fb;
}

.admin-sidebar {
    background: #172b47;
    color: #eef4fb;
    padding: 32px 24px;
    position: sticky;
    top: 0;
    align-self: flex-start;
    min-height: 100vh;
}

.sidebar-brand a {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
}

.sidebar-desc {
    margin: 16px 0 24px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    font-size: 0.95rem;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-nav a {
    display: block;
    padding: 14px 16px;
    border-radius: 16px;
    color: rgba(255,255,255,0.92);
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
}

.admin-main {
    padding: 34px 36px;
}

.admin-dashboard-intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 30px;
}

.dashboard-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 28px 26px;
    box-shadow: 0 18px 40px rgba(24,42,80,0.08);
}

.dashboard-card .card-title {
    color: #4a90e2;
    font-weight: 700;
    margin-bottom: 18px;
}

.dashboard-card .card-number {
    font-size: 3rem;
    font-weight: 800;
    color: #1f3d72;
    margin-bottom: 10px;
}

.quick-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-list li {
    margin-bottom: 12px;
    line-height: 1.8;
    color: #4a5d72;
}

@media (max-width: 1024px) {
    .admin-layout {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
        min-height: auto;
        padding: 24px 18px;
    }

    .admin-main {
        padding: 24px 18px;
    }

    .dashboard-cards {
        grid-template-columns: 1fr;
    }
}
