/* ============================================================
   RESET & BASE STYLES
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #2c3e50;
    background: linear-gradient(135deg, #f5f7fa 0%, #f9fbfc 100%);
    line-height: 1.7;
    letter-spacing: 0.3px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    flex: 1;
}

.main-content {
    flex: 1;
    padding-bottom: 2rem;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.5px;
    color: #2c3e50;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #555;
}

.page-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-size: 2.2rem;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-muted { color: #7f8c8d; }
.text-primary { color: #87CEEB; }
.text-success { color: #28a745; }
.text-error { color: #dc3545; }
.text-warning { color: #ffc107; }
.text-gold { color: #D4AF37; }

.text-link {
    color: #87CEEB;
    border-bottom: 1px solid transparent;
}

.text-link:hover {
    border-bottom-color: #87CEEB;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.ml-1 { margin-left: 0.5rem; }
.ml-2 { margin-left: 1rem; }
.mr-1 { margin-right: 0.5rem; }
.mr-2 { margin-right: 1rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.header {
    background: linear-gradient(135deg, #87CEEB 0%, #6BB3D9 100%);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(135, 206, 235, 0.15);
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    position: relative;
    width: 100%;
    flex-wrap: wrap;
}

/* Menu Toggle */
.menu-toggle {
    display: none !important;
    position: absolute;
    left: -9999px; /* Hide completely from tab order */
}

.menu-icon {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    z-index: 1001;
    padding: 12px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    pointer-events: auto;
    color: #fff;
}

.menu-icon span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.menu-toggle:checked ~ .menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle:checked ~ .menu-icon span:nth-child(2) {
    opacity: 0;
    transform: translateX(-8px);
}

.menu-toggle:checked ~ .menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Removed duplicate :::before - now hamburger bars only with close X animation */

/* Duplicate .menu-icon span rules removed - using first set */

/* Navigation */
.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
    max-width: none;
}

.nav-list {
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    padding: 0;
    background: none;
    box-shadow: none;
    justify-content: center;
    flex-wrap: nowrap;
    width: fit-content;
    max-width: none;
    margin: 0 auto;
}

.nav-list li {
    margin: 0;
    position: relative;
    text-align: center;
}

.nav-list a {
    color: #fff;
    font-weight: 500;
    padding: 0.65rem 1.1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    font-size: 1.05rem;
}

.nav-list a i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.nav-list a:hover i {
    transform: scale(1.2) rotate(5deg);
}

.nav-list a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-list a:hover::before {
    left: 0;
}

.nav-list a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.nav-list .divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 0.3rem;
}

/* Language Selector */
.lang-selector {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: nowrap;
    flex-shrink: 0;
    order: 3;
    margin-left: auto;
}

.lang-selector a {
    padding: 0.35rem 0.6rem !important;
    font-size: 0.85rem;
    font-weight: 600;
    gap: 0 !important;
}

.lang-selector a.active {
    background: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    text-align: center;
    padding: 3rem 1rem;
}

.hero-section .page-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Hero Header (with slideshow) */
.hero-header {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #87CEEB 0%, #6BB3D9 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-header::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(135,206,235,0.45) 0%, rgba(107,179,217,0.45) 100%);
    z-index: 5;
    pointer-events: none;
}

.hero-header .hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fadeSlideshow 15s infinite;
}

.hero-header .hero-slideshow:nth-child(1) {
    background-image: url('../assets/hero1-bg.jpeg');
    animation-delay: 0s;
}

.hero-header .hero-slideshow:nth-child(2) {
    background-image: url('../assets/hero2-bg.jpeg');
    animation-delay: 5s;
}

.hero-header .hero-slideshow:nth-child(3) {
    background-image: url('../assets/hero3-bg.jpeg');
    animation-delay: 10s;
}

@keyframes fadeSlideshow {
    0% { opacity: 0; }
    10% { opacity: 1; }
    33.33% { opacity: 1; }
    43.33% { opacity: 0; }
    100% { opacity: 0; }
}

.hero-header .logo-container {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: fadeInDown 1s ease-out;
}

.hero-header .logo-img {
    height: 100px;
    width: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    animation: bounceIn 1s ease-out;
}

.hero-header .site-name {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    margin: 0;
    animation: slideInUp 1s ease-out 0.2s both;
}

.hero-header .site-tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    margin-top: 0.5rem;
    animation: slideInUp 1s ease-out 0.4s both;
}

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { opacity: 1; }
    70% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

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

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

/* ============================================================
   INFO SECTIONS (3 Column Layout)
   ============================================================ */
.info-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.info-section {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.info-section h2 {
    color: #87CEEB;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

/* ============================================================
   SERVICES GRID & CARDS
   ============================================================ */
.categories-preview {
    margin: 3rem 0;
}

.categories-preview .page-title {
    margin-bottom: 2rem;
}

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

.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(135, 206, 235, 0.2);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #87CEEB;
}

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.service-card .duration {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.service-card .price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #87CEEB;
    margin-bottom: 1rem;
}

.service-card .price .original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    font-weight: 400;
}

/* Discount Badge */
.discount-badge {
    display: inline-block;
    background: #87CEEB;
    color: #fff;
    padding: 0.35rem 0.75rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-left: 0.75rem;
    box-shadow: 0 4px 12px rgba(135, 206, 235, 0.4);
    animation: pulse 2s infinite;
    transform: scale(1.05);
}

.discount-badge.gold {
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

@keyframes pulse {
    0% { box-shadow: 0 4px 12px rgba(135, 206, 235, 0.4); }
    50% { box-shadow: 0 6px 20px rgba(135, 206, 235, 0.6); }
    100% { box-shadow: 0 4px 12px rgba(135, 206, 235, 0.4); }
}


/* Category Section */
.category-section {
    margin-bottom: 3rem;
}

.category-title {
    color: #87CEEB;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #87CEEB;
    display: inline-block;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #87CEEB 0%, #6BB3D9 100%);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 10px rgba(135, 206, 235, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(135, 206, 235, 0.4);
    color: #fff;
}

.btn:active {
    transform: translateY(0);
}

.btn-secondary {
    background: #fff;
    color: #87CEEB;
    border: 2px solid #87CEEB;
    box-shadow: none;
}

.btn-secondary:hover {
    background: #87CEEB;
    color: #fff;
    box-shadow: 0 4px 10px rgba(135, 206, 235, 0.3);
}

.btn-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    box-shadow: 0 4px 10px rgba(220, 53, 69, 0.3);
}

.btn-danger:hover {
    box-shadow: 0 6px 15px rgba(220, 53, 69, 0.4);
}

.btn-success {
    background: linear-gradient(135deg, #28a745 0%, #218838 100%);
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-container {
    max-width: 500px;
    margin: 2rem auto;
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-container .page-title {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #87CEEB;
    box-shadow: 0 0 0 3px rgba(135, 206, 235, 0.2);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237f8c8d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* Checkbox */
.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #87CEEB;
    cursor: pointer;
}

.form-checkbox label {
    margin-bottom: 0;
    cursor: pointer;
}

/* ============================================================
   ALERTS
   ============================================================ */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid;
}

.alert-success {
    background: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.alert-error {
    background: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}

.alert-warning {
    background: #fff3cd;
    border-color: #ffc107;
    color: #856404;
}

.alert-info {
    background: #d1ecf1;
    border-color: #17a2b8;
    color: #0c5460;
}

/* ============================================================
   TABLES
   ============================================================ */
.table-container {
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

thead {
    background: linear-gradient(135deg, #87CEEB 0%, #6BB3D9 100%);
    color: #fff;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

tbody tr {
    transition: background-color 0.2s ease;
}

tbody tr:hover {
    background-color: #f8f9fa;
}

tbody tr:last-child td {
    border-bottom: none;
}

/* Table Actions */
.table-actions {
    display: flex;
    gap: 0.5rem;
}

/* ============================================================
   APPOINTMENT STATUS
   ============================================================ */
.appointment-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-agendado {
    background: #fff3cd;
    color: #856404;
}

.status-confirmado {
    background: #d1ecf1;
    color: #0c5460;
}

.status-concluido {
    background: #d4edda;
    color: #155724;
}

.status-cancelado {
    background: #f8d7da;
    color: #721c24;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #2c3e50;
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section {
    text-align: center;
}

.footer-section h3 {
    color: #87CEEB;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-section a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #87CEEB;
}


.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 768px) {
    .social-links {
        justify-content: center !important;
        align-items: center;
    }
}


.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    margin: 0 0.375rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 0.7rem;
    line-height: 1;
}

.social-links a i {
    margin-right: 0.1rem;
    font-size: 0.85rem;
}

.social-links a:hover {
    color: #fff;
    transform: translateY(-3px);
}

.social-links a[href*="facebook"]:hover {
    background: #1877F2;
}

.social-links a[href*="instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.whatsapp-link:hover {
    background: #25D366;
    color: #fff;
    transform: translateY(-3px);
}

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

.footer-bottom p {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================================
   MODAL
   ============================================================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
}

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

.modal-content {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideInUp 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.8rem;
    cursor: pointer;
    color: #87CEEB;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(135, 206, 235, 0.1);
    transition: all 0.2s ease;
    border: none;
}

.modal-close:hover {
    background: #87CEEB;
    color: #fff;
}

.modal h2 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

/* ============================================================
   LEGAL PAGES (Terms & Privacy)
   ============================================================ */
.legal-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    flex: 1;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #87CEEB;
}

.legal-header h1 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 2.2rem;
}

.legal-header .last-updated {
    color: #7f8c8d;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.legal-section {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #87CEEB;
    transition: all 0.3s ease;
}

.legal-section:hover {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.legal-section h2 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ecf0f1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-section h2::before {
    content: '§';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #87CEEB 0%, #6BB3D9 100%);
    color: #fff;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: bold;
}

.legal-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    position: relative;
}

.legal-section ul li::marker {
    color: #87CEEB;
}

.legal-section strong {
    color: #2c3e50;
}

.legal-section a {
    color: #87CEEB;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.legal-section a:hover {
    color: #6BB3D9;
    border-bottom-color: #6BB3D9;
}

.legal-section .highlight-box {
    background: linear-gradient(135deg, #f8fbfd 0%, #f0f7fa 100%);
    border: 1px solid #e1f0f8;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.legal-section .highlight-box h3 {
    color: #87CEEB;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.legal-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ecf0f1;
}

.legal-footer .btn {
    display: inline-block;
    margin: 0.5rem;
}

/* ============================================================
   PROMOTION POPUP
   ============================================================ */
.promo-popup-corner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 300px;
    width: 90%;
    background: #fff;
    border: 3px solid #87CEEB;
    border-radius: 15px;
    padding: 1.25rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.promo-popup-corner .btn {
    display: block;
    margin: 10px auto 0;
    width: auto;
}

.promo-popup-corner.promo-closing {
    opacity: 0;
    transform: translateX(100%);
}

.promo-popup-corner.promo-closed {
    opacity: 0;
    transform: translateX(110%);
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}


.promo-popup-corner .close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    border: none;
    background: transparent;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    transition: all 0.2s ease;
}

.promo-popup-corner .close-btn:hover {
    background: rgba(255,255,255,0.2);
}


.promo-popup-corner h4 {
    color: #87CEEB;
    margin: 0 0 8px 0;
    font-size: 1.1rem;
}

.promo-popup-corner p {
    font-size: 0.9rem;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.promo-popup-corner .discount {
    font-size: 1.3rem;
    font-weight: bold;
    color: #87CEEB;
    margin-bottom: 10px;
}

/* ============================================================
   CALENDAR STYLES
   ============================================================ */
.calendar-day {
    min-height: 120px;
}

.calendar-header {
    font-size: 0.95rem;
}

.calendar-grid {
    border-radius: 15px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInBg {
    from { background: rgba(0, 0, 0, 0); }
    to { background: rgba(0, 0, 0, 0.7); }
}

@keyframes popIn {
    0% { opacity: 0; transform: scale(0.3) rotate(-10deg); }
    100% { opacity: 1; transform: scale(1); }
}

/* ============================================================
   WELCOME SECTION
   ============================================================ */
.welcome-section {
    text-align: center;
    padding: 2rem 1rem;
}

.welcome-section .page-title {
    font-size: 2rem;
    color: #2c3e50;
}

/* Service Card Images */
.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

/* Large desktop (1200px+) */
@media (min-width: 1200px) {
    .container { max-width: 1200px; }
    .header-container { padding: 0 1rem; gap: 0.25rem; }
    .nav-list { gap: 0.8rem; }\n    .nav-list a { padding: 0.4rem 0.7rem; font-size: 0.95rem; }
    .lang-selector a { padding: 0.25rem 0.4rem; font-size: 0.8rem; }
}

/* Tablet and larger (992px and up) */
@media (max-width: 992px) {
    .container { padding: 1.5rem 1rem; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.3rem; }
    .page-title { font-size: 1.8rem; }
    .hero-header .site-name { font-size: 2.2rem; }
    .hero-header { height: 280px; }
    .services-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
    .nav-list a { padding: 0.5rem 1rem; font-size: 0.95rem; }
    .info-sections { gap: 1.5rem; }
}

/* Mobile tablets (768px and below) */
@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
        justify-content: space-between;
        flex-wrap: nowrap;
    }
    
    .menu-icon {
        display: flex !important;
    }
    
.menu-toggle:checked ~ .menu-icon {
        display: flex !important;
    }
    
    .nav-menu {
        flex: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 80vw);
        height: 100vh;
        overflow-y: auto;
        background: rgba(135, 206, 235, 0.98);
        backdrop-filter: blur(10px);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
        padding-top: 70px;
    }
    
    .menu-toggle:checked ~ .nav-menu {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
    }
    
    .nav-list li {
        width: 100%;
        margin: 0;
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.3s ease;
    }
    
    .menu-toggle:checked ~ .nav-menu .nav-list li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-list li:nth-child(1) { transition-delay: 0.1s; }
    .nav-list li:nth-child(2) { transition-delay: 0.15s; }
    .nav-list li:nth-child(3) { transition-delay: 0.2s; }
    .nav-list li:nth-child(4) { transition-delay: 0.25s; }
    .nav-list li:nth-child(5) { transition-delay: 0.3s; }
    .nav-list li:nth-child(6) { transition-delay: 0.35s; }
    .nav-list li:nth-child(7) { transition-delay: 0.4s; }
    
    .nav-list a {
        width: 100%;
        padding: 1.25rem 2rem !important;
        justify-content: flex-start;
        border-radius: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        font-size: 1.1rem;
        gap: 1rem;
    }
    
    .nav-list a:hover,
    .nav-list a:active {
        background: rgba(255, 255, 255, 0.25);
        transform: translateX(-10px);
    }
    
    .nav-list .divider {
        display: none;
    }
    
    .lang-selector {
        flex-direction: row;
        justify-content: center;
        padding: 1.5rem 2rem;
        gap: 1.5rem;
        border-top: 1px solid rgba(255,255,255,0.2);
        margin-top: auto;
    }
    
    .lang-selector a {
        padding: 0.6rem 1.2rem !important;
        min-width: 44px;
        font-size: 1rem;
        text-align: center;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    .hero-header .site-name { font-size: 1.8rem; }
    .hero-header { height: 220px; }
    .info-sections, .services-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .form-container, .legal-container { margin: 1rem; padding: 1.5rem; }
    th, td { padding: 0.75rem 0.5rem; }
.footer-container { 
    grid-template-columns: 1fr; 
    text-align: center; 
    justify-items: center;
    place-items: center;
}

.promo-popup-corner { 
    right: 1rem !important;
    bottom: 1rem !important;
    width: 200px !important;
    max-width: 200px !important;
    padding: 0.85rem !important;
    font-size: 0.9rem !important;
    transform: scale(0.9) !important;
    transform-origin: bottom right !important;
    bottom: calc(1rem + 10px) !important;
    right: calc(1rem + 10px) !important;
}

.promo-popup-corner {
    bottom: calc(15px + 70px * var(--stack-index, 0)) !important;
}
    
    .promo-popup-corner .discount {
        font-size: 1rem !important;
    }
    
    .promo-popup-corner h4 {
        font-size: 0.95rem !important;
        margin-bottom: 0.25rem !important;
    }
    
    .promo-popup-corner p {
        font-size: 0.8rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2 !important;
    }
    
    .promo-popup-corner .btn {
        padding: 0.4rem 0.6rem !important;
        font-size: 0.75rem !important;
        display: block !important;
        margin: 10px auto 0 !important;
        width: auto !important;
    }
    
    .promo-popup-corner.promo-closed {
        transform: translateX(110%) scale(0.75) !important;
    }
}
    
    .social-links {
        justify-content: center !important;
        align-items: center;
    }


/* Small mobile phones (480px and below) */
@media (max-width: 480px) {
    body {
        font-size: 15px;
    }
    
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .header-container {
        padding: 0 0.75rem;
    }
    
    .menu-icon {
        left: 0.5rem;
    }
    
    .hero-header .site-name {
        font-size: 1.5rem;
    }
    
    .hero-header .site-tagline {
        font-size: 0.9rem;
    }
    
    .hero-header {
        height: 200px;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
    
    .nav-list a {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    th, td {
        padding: 0.5rem 0.25rem;
    }
}

/* Extra small devices (320px and below) */
@media (max-width: 320px) {
    body {
        font-size: 14px;
    }
    
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.25rem; }
    h3 { font-size: 1rem; }
    
    .page-title {
        font-size: 1.25rem;
    }
    
    .hero-header .site-name {
        font-size: 1.25rem;
    }
    
    .nav-list a {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .nav-list a i {
        font-size: 0.9rem;
    }
}

