﻿/* assets/css/style.css */
:root {
    /* Pantone Colors provided */
    --primary: #00A9CE;
    /* Pantone 3125C */
    --secondary: #4FD1C5;
    /* Pantone 3258C */
    --neutral: #F5F5F5;
    /* Pantone Cool Gray 1C */
    --btn-color: #0072CE;
    /* Pantone 7461C */

    --text-dark: #333333;
    --text-light: #666666;
    --white: #FFFFFF;

    --border-radius: 8px;
    --border-radius-lg: 16px;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
}

body {
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary);
}

.bg-light {
    background-color: var(--neutral);
}

.bg-primary {
    background-color: var(--primary);
}

.text-white {
    color: var(--white);
}

.mb-3 {
    margin-bottom: 1rem;
}

.w-100 {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--btn-color);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: #005a9e;
    /* Darker btn */
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #1DA851;
    color: white;
}

.btn-call {
    background-color: var(--text-dark);
    color: white;
}

.btn-call:hover {
    background-color: #111;
    color: white;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-links a {
    margin-left: 30px;
    color: var(--text-dark);
    font-weight: 600;
}

.nav-links a:not(.btn):hover {
    color: var(--primary);
}

.nav-links a.btn {
    margin-left: 30px;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Align contents to the left */
    position: relative;
    padding-top: 80px;
    text-align: left;
    /* Text aligned to the left */
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient mapping from solid primary on the left transitioning to transparent on the right */
    background: linear-gradient(90deg, rgba(0, 169, 206, 0.95) 0%, rgba(0, 169, 206, 0.6) 50%, rgba(79, 209, 197, 0) 100%);
    z-index: 1;
}

/* 3-Image Sliding Slider */
.slider-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.slider-container {
    display: flex;
    width: 300%;
    /* 100% per slide */
    height: 100%;
    transition: transform 1.5s cubic-bezier(0.86, 0, 0.07, 1);
}

.slide-bg {
    flex: 1 0 33.333%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /* Optional slow zoom inside the slide */
    transition: transform 10s ease-out;
}

/* Apply specific backgrounds */
.slide-bg:nth-child(1) {
    background-image: url('../img/hero_back.png');
}

.slide-bg:nth-child(2) {
    background-image: url('../img/6.jpg');
}

.slide-bg:nth-child(3) {
    background-image: url('../img/kid.png');
}

.slide-bg.active {
    transform: scale(1.05);
    /* Slow zoom effect during display */
}

/* Slide Indicators (Dots) */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: var(--primary);
    border-color: var(--white);
    transform: scale(1.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: 5%;
}

/* Hide inactive text contents, only show active */
.hero-text-slide {
    display: none;
    animation: slideUpFade 1.5s ease forwards;
}

.hero-text-slide.active {
    display: block;
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--neutral);
    margin: 0 0 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    font-weight: 400;
}

/* Typography styles */
.section-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Services Parallax */
.parallax-services {
    position: relative;
    background-color: var(--neutral);
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Because it's a YouTube shorts (vertical 9:16 aspect ratio roughly), we make sure it covers */
.video-background iframe {
    width: 100vw;
    height: 177.77vw;
    min-height: 100vh;
    min-width: 56.25vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.6;
}

.parallax-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    /* Frosty overlay to ensure text is readable */
    z-index: 1;
}

.parallax-services .container {
    position: relative;
    z-index: 2;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-bottom: 4px solid var(--primary);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 169, 206, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

/* Process Timeline (Horizontal flex for desktop) */
.process-timeline {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.process-step {
    flex: 1;
    min-width: 200px;
    position: relative;
    padding: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* Split Layouts & Image Animations */
.split-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    text-align: left;
}

.split-text {
    flex: 1;
    min-width: 300px;
}

.split-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.split-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(0, 169, 206, 0.15);
    object-fit: cover;
}

@keyframes floatAnim {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.img-float {
    animation: floatAnim 6s ease-in-out infinite;
}

.img-float-delayed {
    animation: floatAnim 6s ease-in-out infinite 3s;
}

/* Education */
.education-content {
    max-width: 100%;
    margin: 0;
    background: transparent;
    padding: 0;
}

.brushing-tips {
    list-style: none;
    padding-left: 0;
}

.brushing-tips li {
    margin-bottom: 15px;
    font-size: 1rem;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.brushing-tips li i,
.brushing-tips li strong {
    flex-shrink: 0;
}

/* Contact Area */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-methods {
    flex: 1;
    min-width: 300px;
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 169, 206, 0.2);
}

.form-message {
    margin-bottom: 15px;
    font-weight: bold;
}

.text-success {
    color: #25D366;
}

.text-danger {
    color: #dc3545;
}

/* Floating Elements */
.floating-wa {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-md);
    z-index: 100;
    transition: var(--transition);
}

.floating-wa:hover {
    transform: scale(1.1);
    color: white;
}

/* Chatbot UI */
.chatbot-widget {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background-color: var(--secondary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    z-index: 100;
    transition: var(--transition);
}

.chatbot-widget:hover {
    transform: scale(1.1);
}

.chatbot-window {
    position: fixed;
    bottom: 160px;
    right: 20px;
    width: 300px;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    z-index: 101;
    display: none;
    flex-direction: column;
    overflow: hidden;
    transform-origin: bottom right;
    animation: scaleUp 0.3s ease;
}

@keyframes scaleUp {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.chatbot-header {
    background: var(--primary);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
}

.chatbot-body {
    padding: 15px;
    height: 200px;
    overflow-y: auto;
    background: #f9f9f9;
}

.chat-msg {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 10px;
    font-size: 0.9rem;
    max-width: 85%;
}

.bot-msg {
    background: #e1f5fe;
    align-self: flex-start;
}

.user-msg {
    background: var(--primary);
    color: white;
    align-self: flex-end;
    margin-left: auto;
}

.chatbot-input {
    padding: 10px;
    border-top: 1px solid #ddd;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.chat-option-btn {
    flex: 1;
    padding: 8px;
    font-size: 0.8rem;
    background: white;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.chat-option-btn:hover {
    background: var(--primary);
    color: white;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 10px 0;
    }

    .nav-links a.btn {
        margin: 10px 0;
        text-align: center;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .process-timeline {
        flex-direction: column;
    }
}

/* Responsive Admin Panel */
@media (max-width: 768px) {

    /* Stack the whole layout and move sidebar to bottom */
    body {
        flex-direction: column !important;
    }

    .sidebar {
        width: 100% !important;
        height: 70px !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        z-index: 9999 !important;
        flex-direction: row !important;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        background: var(--primary) !important;
    }

    .sidebar-header,
    .sidebar-footer {
        display: none !important;
    }

    .sidebar-nav {
        flex: 1 !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-around !important;
        align-items: center !important;
        padding: 0 !important;
        overflow-x: auto;
    }

    .nav-item {
        padding: 5px !important;
        text-align: center !important;
        font-size: 0.65rem !important;
        flex: 1 !important;
        border-left: none !important;
        border-top: 3px solid transparent;
        white-space: nowrap;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        height: 100% !important;
    }

    .nav-item.active {
        background: rgba(255, 255, 255, 0.1) !important;
        border-top: 3px solid var(--secondary) !important;
        border-left: none !important;
        color: var(--secondary) !important;
    }

    .nav-item i {
        display: block !important;
        margin: 0 0 5px 0 !important;
        width: auto !important;
        font-size: 1.2rem !important;
    }

    .main-content {
        margin-bottom: 70px !important;
        /* Space for bottom nav */
    }

    .top-header {
        padding: 15px !important;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .content-area {
        padding: 15px !important;
    }

    .widgets {
        grid-template-columns: 1fr !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
    }

    /* Responsive Data Tables - horizontally scrollable */
    .card table {
        display: block !important;
        width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        white-space: nowrap !important;
    }

    /* Stack grid forms vertically on mobile */
    .card form>div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        display: flex !important;
        flex-direction: column !important;
    }

    /* Shrink the FullCalendar on mobile */
    .fc {
        font-size: 0.85em;
    }

    .fc-toolbar-title {
        font-size: 1.2em !important;
    }

    .fc-header-toolbar {
        flex-direction: column !important;
        gap: 10px !important;
    }
}
/* User Menu Dropdown */
.user-menu { position: relative; display: flex; align-items: center; gap: 10px; cursor: pointer; padding: 5px 15px 5px 5px; border-radius: 30px; background: #fdfdfd; border: 1px solid #eaeaea; transition: all 0.2s ease; }
.user-menu:hover { background: #f4f6f8; border-color: #dcdcdc; }
.user-dropdown { display: none; position: absolute; right: 0; top: 115%; background-color: white; min-width: 180px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); z-index: 2000; border-radius: 12px; overflow: hidden; border: 1px solid #eee; }
.user-menu:hover .user-dropdown { display: block; }
.user-dropdown a { color: #444; padding: 12px 20px; text-decoration: none; display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 500; transition: background 0.2s; }
.user-dropdown a:hover { background-color: #f8f9fa; color: var(--primary); }
.user-dropdown .logout-btn { border-top: 1px solid #eee; color: #dc3545; }
.user-dropdown .logout-btn:hover { background-color: #fff5f5; color: #c82333; }

/* Premium User Menu */
.user-menu-premium { position: relative; display: flex; align-items: center; gap: 12px; padding: 6px 16px 6px 6px; border-radius: 50px; background: transparent; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); cursor: pointer; border: 1px solid transparent; }
.user-menu-premium:hover { background: #ffffff; border-color: #e2e8f0; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03); }
.user-avatar { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.1); border: 2px solid #fff; background: var(--primary); display: flex; align-items: center; justify-content: center; color: white; font-weight: bold;}
.user-avatar img { width: 100%; height: 100%; object-fit: cover; }
.user-info { display: flex; flex-direction: column; justify-content: center; text-align: left; }
.user-name { font-weight: 600; font-size: 0.95rem; color: #1e293b; line-height: 1.2; }
.user-role { font-size: 0.75rem; font-weight: 500; color: #64748b; text-transform: capitalize; }
.user-menu-premium > i { color: #94a3b8; font-size: 0.85rem; transition: transform 0.3s ease; }
.user-menu-premium:hover > i { transform: rotate(180deg); position: relative; top: 1px; }

.dropdown-menu { position: absolute; top: calc(100% + 10px); right: 0; width: 240px; background: #fff; border-radius: 12px; box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1); border: 1px solid #f1f5f9; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); z-index: 9999; }
.user-menu-premium:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-header { padding: 16px 20px; background: #f8fafc; border-radius: 12px 12px 0 0; display: flex; flex-direction: column; text-align: left; }
.dropdown-header strong { color: #0f172a; font-size: 0.95rem; }
.dropdown-header span { color: #64748b; font-size: 0.8rem; margin-top: 2px; }
.dropdown-divider { height: 1px; background: #f1f5f9; margin: 4px 0; }
.dropdown-menu a { display: flex; align-items: center; gap: 12px; padding: 12px 20px; color: #334155; font-size: 0.9rem; font-weight: 500; text-decoration: none; transition: all 0.2s ease; }
.dropdown-menu a i { font-size: 1.1rem; color: #94a3b8; width: 20px; text-align: center; transition: color 0.2s ease; }
.dropdown-menu a:hover { background: #f8fafc; color: var(--primary); }
.dropdown-menu a:hover i { color: var(--primary); }
.dropdown-menu a.text-danger:hover { background: #fef2f2; color: #ef4444; }
.dropdown-menu a.text-danger:hover i { color: #ef4444; }

/* Pro Header User */
.pro-header-user { position: relative; display: flex; align-items: center; gap: 12px; padding: 6px 8px; border-radius: 8px; cursor: pointer; transition: background-color 0.2s; user-select: none; }
.pro-header-user:hover { background-color: rgba(0, 0, 0, 0.04); }
.pro-avatar { width: 36px; height: 36px; border-radius: 50%; background-color: var(--primary); color: white; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; box-shadow: 0 0 0 2px #fff, 0 0 0 3px rgba(0,0,0,0.05); }
.pro-user-info { display: flex; flex-direction: column; text-align: left;}
.pro-name { font-size: 0.875rem; font-weight: 600; color: #111827; line-height: 1.2; }
.pro-role { font-size: 0.75rem; color: #6b7280; text-transform: capitalize; font-weight: 500; }
.pro-chevron { font-size: 0.75rem; color: #9ca3af; margin-left: 4px; }

.pro-dropdown { position: absolute; top: calc(100% + 8px); right: 0; width: 220px; background-color: #ffffff; border-radius: 10px; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); border: 1px solid #e5e7eb; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1); z-index: 50; }
.pro-header-user:hover .pro-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.pro-dropdown-header { padding: 12px 16px; border-bottom: 1px solid #f3f4f6; text-align: left; }
.pro-drop-name { display: block; font-size: 0.875rem; font-weight: 600; color: #111827; }
.pro-drop-email { display: block; font-size: 0.75rem; color: #6b7280; margin-top: 2px; }
.pro-dropdown-body { padding: 6px 0; }
.pro-dropdown-body a { display: flex; align-items: center; gap: 12px; padding: 8px 16px; font-size: 0.875rem; color: #374151; text-decoration: none; transition: background-color 0.15s; font-weight: 500; }
.pro-dropdown-body a:hover { background-color: #f3f4f6; color: #111827; }
.pro-dropdown-body a i { color: #9ca3af; font-size: 1.1rem; width: 20px; text-align: center; }
.pro-dropdown-body a:hover i { color: #4b5563; }
.pro-dropdown-footer { border-top: 1px solid #f3f4f6; padding: 6px 0; }
.pro-logout { display: flex; align-items: center; gap: 12px; padding: 8px 16px; font-size: 0.875rem; color: #ef4444; text-decoration: none; font-weight: 500; transition: background-color 0.15s; }
.pro-logout:hover { background-color: #fef2f2; }
.pro-logout i { color: #ef4444; font-size: 1.1rem; width: 20px; text-align: center; }

/* Cookie Banner Default DentalCelaya */
.cookie-banner { position: fixed; bottom: 20px; left: 20px; right: 20px; max-width: 800px; margin: 0 auto; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(15px); border: 1px solid rgba(0,0,0,0.1); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15); border-radius: var(--border-radius-lg); padding: 25px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; z-index: 10000; transform: translateY(150%); transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.cookie-banner.show { transform: translateY(0); }
.cookie-content { flex: 1; min-width: 300px; display: flex; align-items: flex-start; gap: 20px; }
.cookie-icon { font-size: 2.5rem; color: var(--secondary); margin-top: 5px; }
.cookie-content p { margin: 0; font-size: 0.9rem; color: #555; line-height: 1.5; }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }
@media (max-width: 600px) {
    .cookie-banner { bottom: 10px; left: 10px; right: 10px; flex-direction: column; align-items: stretch; padding: 20px; }
    .cookie-buttons { flex-direction: column; width: 100%; }
    .cookie-buttons .btn { width: 100%; text-align: center; justify-content: center; }
}

/* Privacy Modal & Button */
.btn-privacy-link { background: var(--primary); border: none; color: var(--white); font-size: 0.85rem; font-weight: 500; cursor: pointer; text-decoration: none; margin-top: 10px; padding: 8px 20px; border-radius: 20px; transition: all 0.3s; box-shadow: var(--shadow-sm); display: inline-block; }
.btn-privacy-link:hover { background: var(--secondary); transform: translateY(-2px); box-shadow: var(--shadow-md); color: white; }

.privacy-modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 50, 75, 0.4); backdrop-filter: blur(8px); z-index: 100000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.privacy-modal-overlay.show { opacity: 1; visibility: visible; }
.privacy-modal-content { background: var(--white); width: 90%; max-width: 800px; max-height: 90vh; border-radius: var(--border-radius-lg); box-shadow: 0 25px 60px rgba(0,0,0,0.3); display: flex; flex-direction: column; transform: translateY(30px) scale(0.98); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.privacy-modal-overlay.show .privacy-modal-content { transform: translateY(0) scale(1); }
.privacy-modal-header { padding: 20px 25px; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; }
.privacy-modal-header h3 { margin: 0; color: var(--primary); font-size: 1.3rem; }
.privacy-modal-header button { background: none; border: none; font-size: 1.2rem; color: #888; cursor: pointer; transition: color 0.2s; }
.privacy-modal-header button:hover { color: #ef4444; }
.privacy-modal-body { padding: 25px; overflow-y: auto; font-size: 0.95rem; color: #444; line-height: 1.6; text-align: left; }
.privacy-modal-footer { padding: 15px 25px; border-top: 1px solid #eee; text-align: right; background: #fafafa; border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg); }


/* Custom adjustment for Education section to give more room to text */
#educacion .split-image {
    flex: 0.8 !important;
}

#educacion .split-text {
    flex: 1.2 !important;
}
