/* 1. VARIABLES & THEME */
:root {
    /* Palette */
    --primary: #1a4d4d;
    --primary-dark: #1a4d4d;
    --primary-green: #1a4d4d;
    --primary-blue: #6ab7e4;
    
    --accent: #0b57d0;
    --accent-blue: #0b57d0;
    --accent-mint: #7fc8b4;
    --accent-light: #7fc8b4;
    --accent-gold: #efc042;
    
    --pastel-green: #d4edda;
    --pastel-green-bg: #f1f6f5;
    --pastel-blue-bg: #e7effb;
    --pastel-mint: #bed3bf;
    
    --white: #ffffff;
    --bg-light: #f8fafc;
    --text: #2c3e50;
    --text-dark: #2c3e50;
    --text-light: #e0f2f1;
    --text-muted: #546e7a;
    
    /* Fonts */
    --font-heading: 'Libre Baskerville', serif;
    --font-body: 'Source Sans 3', sans-serif;
    
    /* Effects (Liquid Glass / iOS) */
    --glass: rgba(255, 255, 255, 0.65);
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-white: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(26, 77, 77, 0.08);
    
    --radius: 14px;
    --blur: blur(20px);
    --shadow: 0 8px 32px rgba(26, 77, 77, 0.1);
}

/* 2. BASE STYLES */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    margin: 0;
    background: #f0f4f4;
    color: var(--text);
    background-color: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: 0.3s;
}

/* 3. LAYOUT & ANIMATIONS */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
    padding: 100px 0;
}

section.show {
    opacity: 1;
    transform: none;
}

section:nth-child(even) {
    background-color: var(--pastel-green-bg);
}

/* Liquid Background */
.liquid-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #f0f7f7 0%, #e2ebf0 100%);
}

.blob {
    position: absolute;
    width: 600px; height: 600px;
    background: var(--primary);
    filter: blur(100px);
    border-radius: 50%;
    z-index: -1;
    animation: move 20s infinite alternate ease-in-out;
    opacity: 0.12;
}

@keyframes move {
    from { transform: translate(-15%, -15%) scale(1); }
    to { transform: translate(25%, 25%) scale(1.1); }
}

/* 4. COMPONENTS */

/* Buttons */
.cta-button {
    background-color: var(--accent-blue) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(11, 87, 208, 0.2);
    border-radius: var(--radius);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(11, 87, 208, 0.8) !important;
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.cta-button:hover {
    background-color: var(--primary-blue) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(106, 183, 228, 0.4);
}

.btn-nav {
    background: var(--accent-gold);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(239, 192, 66, 0.3);
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background-color: var(--primary-blue) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(106, 183, 228, 0.4);
}

.btn-appointment {
    background: var(--accent) !important;
    color: white !important;
    padding: 12px 24px;
    border-radius: var(--radius);
    transition: 0.3s;
    background-color: var(--accent-blue) !important;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 15px rgba(11, 87, 208, 0.25);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.btn-appointment:hover {
    background: var(--accent) !important;
    transform: translateY(-2px);
    background-color: var(--primary-green) !important;
    box-shadow: 0 6px 20px rgba(11, 87, 208, 0.4);
    filter: brightness(1.1);
}

/* List with Symbol */
.list-symbol {
    list-style: none;
    padding: 0;
}

.list-symbol li {
    position: relative;
    padding-left: 1em;
}

.list-symbol li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--accent-mint);
    font-weight: bold;
}

/* List with Symbol */
.list-bullet {
    list-style: none;
    padding: 0;
}

.list-bullet li {
    position: relative;
    padding-left: 1em;
}

.list-bullet li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-mint);
    font-weight: bold;
}

/* Glass Panels & Cards */
.glass-panel {
    background: var(--glass);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(26, 77, 77, 0.05);
    transition: all 0.4s ease;
}

.card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--glass-shadow);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-mint);
    box-shadow: 0 20px 40px rgba(26, 77, 77, 0.08);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.2));
}

/* Header & Nav */
.main-header {
    background: var(--glass-white);
    box-shadow: var(--glass-shadow);
    backdrop-filter: var(--blur);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 0;
    -webkit-backdrop-filter: var(--blur);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.header-logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid transparent;
}

.nav-menu a:hover {
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    color: var(--primary);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-blue);
    transition: 0.3s;
}

/* 5. SECTIONS */

/* Hero */
.hero {
    text-align: center;
    padding: 150px 0;
    background: radial-gradient(circle, #e0f2f1 0%, transparent 70%);
}

.hero-title {
    font-size: 3.5rem;
    margin: 20px 0;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 40px;
}

.hero-btn {
    padding: 20px 40px;
    font-size: 1.1rem;
    text-decoration: none;
}

.badge-online {
    background: var(--primary-blue);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* About */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-hero {
    display: flex;
    align-items: center;
    gap: 70px;
    margin-bottom: 60px;
}

.about-image {
    position: relative;
    flex: 0 0 380px;
}

.doctor-img {
    /*width: 100%;*/
    height:400px;
    border-radius: var(--radius);
    object-fit: cover;
    display: block;
    filter: saturate(1.1);
}

.experience-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: var(--accent-gold);
    color: var(--primary);
    padding: 15px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    font-weight: 800;
}

.experience-badge .years {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
}

.experience-badge .exp-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content .subtitle {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 600;
}

/* Specializations */
.spec-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: var(--primary);
    font-family: var(--font-heading);
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.spec-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: var(--glass-shadow);
}

.spec-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-mint);
    box-shadow: 0 20px 40px rgba(26, 77, 77, 0.08);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.2));
}

.spec-icon-wrapper {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.spec-card h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.spec-card p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    opacity: 0.85;
}

/* Certificates */
.certificates-section {
    background: #ffffff;
    padding: 80px 0;
}

.certificates-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.certificates-title {
    margin-bottom: 10px;
}

.certificates-nav {
    display: flex;
    gap: 10px;
}

.cert-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--accent-mint);
    background: transparent;
    color: var(--primary-dark);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cert-nav-btn:hover {
    background: var(--accent-mint);
    color: white;
    transform: scale(1.1);
}

.zoom-hint {
    text-align: center;
    font-size: 0.8rem;
    color: #99aaaa;
    margin-top: 20px;
}

.diploma-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px 0 40px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-mint) transparent;
}

.diploma-carousel::-webkit-scrollbar {
    height: 6px;
}

.diploma-carousel::-webkit-scrollbar-thumb {
    background: var(--accent-mint);
    border-radius: 10px;
}

.diploma-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border: 2px solid var(--pastel-green);
    transition: transform 0.3s ease;
}

.diploma-card:hover {
    transform: scale(1.02);
}

.diploma-card:has(.zoom-toggle:checked) {
    transform: none !important;
}

.zoom-toggle {
    display: none;
}

.diploma-img-wrapper {
    width: 100%;
    height: 400px;
    cursor: zoom-in;
    display: block;
}

.diploma-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.zoom-toggle:checked + .diploma-img-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.95);
    cursor: zoom-out;
}

.zoom-toggle:checked + .diploma-img-wrapper .diploma-image {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.diploma-info {
    padding: 15px;
    text-align: center;
    background: white;
}

.diploma-info p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--primary-dark);
    margin: 0;
    font-weight: 600;
}

/* Services */
.services-section {
    background: #f0f7f5;
}

.services-title {
    text-align: center;
}

.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
}

.price-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px 25px;
}

.price-val {
    font-weight: 700;
    color: var(--accent);
}

/* Blog */
.blog-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.blog-title {
    font-size: 2.8rem;
    margin: 0;
}

.blog-subtitle {
    margin-top: 10px;
    color: #667e7e;
}

.blog-cta {
    background: transparent;
    border: 2px solid var(--accent-mint);
    color: var(--primary-dark);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    border-radius: var(--radius);
    padding: 30px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 220px;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: var(--glass-shadow);
}

.blog-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.2));
    box-shadow: 0 20px 40px rgba(26, 77, 77, 0.08);
    border-color: var(--accent-mint);
}

.blog-card .category {
    font-size: 0.8rem;
    color: var(--primary-blue);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
    background: rgba(212, 237, 218, 0.6);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
}

.blog-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin: 0 0 20px 0;
    line-height: 1.4;
}

.blog-link {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Booking Section */
.booking-section {
    background: linear-gradient(180deg, #f0f7f5 0%, #ffffff 100%);
    padding: 100px 0;
}

.booking-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.booking-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.booking-desc {
    font-size: 1.1rem;
    color: #4a6363;
}

.booking-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(26, 77, 77, 0.08);
    overflow: hidden;
    border: 1px solid var(--accent-light);
}

.booking-widget-header {
    background: var(--primary-dark);
    color: white;
    padding: 15px 30px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-dot {
    background: var(--accent-mint);
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.booking-iframe {
    border: 0;
}

.booking-footer {
    text-align: center;
    margin-top: 30px;
}

.booking-footer-text {
    font-size: 0.9rem;
    color: #99aaaa;
}

.booking-email-link {
    color: var(--primary-dark);
    font-weight: 600;
}

/* Consultation Details */
.consultation-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.consultation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.consultation-card {
    background: rgba(255, 255, 255, 0.92);
    padding: 45px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 40px rgba(26, 77, 77, 0.06);
    transition: transform 0.3s ease;
}

.consultation-card:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 25px 50px rgba(26, 77, 77, 0.1);
    border-color: var(--accent-mint);
}

.consultation-card h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--primary);
    border-bottom: 2px solid var(--accent-mint);
    padding-bottom: 10px;
    display: inline-block;
    transition: all 0.3s ease;
}

.consultation-card ul {
    list-style: none;
    padding-left: 0;
}

.consultation-card li {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 15px;
    align-items: start;
}

.important-box {
    border: 2px solid var(--accent-gold);
    border-radius: var(--radius);
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Payment Badges & Meta */
.payment-container {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px dashed rgba(0,0,0,0.1);
}

.payment-title {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: block;
    font-weight: 600;
}

.payment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pay-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: transform 0.2s;
    cursor: default;
    border: 1px solid transparent;
}

.pay-badge:hover {
    transform: translateY(-2px);
}

.pay-cash {
    background-color: #f1f8e9;
    color: #33691e;
    border-color: #dcedc8;
}

.pay-kaspi {
    background-color: #ffebee;
    color: #c62828;
    border-color: #ffcdd2;
}

.pay-online {
    background-color: #e3f2fd;
    color: #0d47a1;
    border-color: #bbdefb;
}

/* Service Meta Blocks (Duration, Price, etc) */
.meta-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    padding: 15px 20px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.meta-box:hover {
    transform: translateY(-2px);
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(26, 77, 77, 0.05);
}

.meta-box.highlight {
    background: linear-gradient(135deg, rgba(239, 192, 66, 0.15), rgba(255, 255, 255, 0.8));
    border-color: rgba(239, 192, 66, 0.4);
}

.meta-icon {
    font-size: 1.8rem;
    margin-right: 18px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    line-height: 1;
}

.meta-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.meta-label {
    color: var(--text-muted);
}

.meta-value {
    color: var(--primary-dark);
}

.meta-value.price-main {
    color: var(--primary);
}

.meta-desc {
    color: #7f8c8d;
}

.consultation-notice {
    margin-top: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.2));
    border: 2px solid var(--accent-gold);
    padding: 30px;
    border-radius: var(--radius);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: var(--glass-shadow);
}

.consultation-notice h3 {
    margin-bottom: 15px;
}

.consultation-notice p {
    margin-bottom: 15px;
}

/* Reviews Section */
.reviews-section {
    background-color: #fbfdfd;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-title {
    font-size: 2.8rem;
}

.reviews-separator {
    width: 60px;
    height: 3px;
    background: var(--accent-mint);
    margin: 20px auto;
}

.review-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--glass-shadow);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 77, 77, 0.08);
    border-color: var(--accent-mint);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.2));
}

.review-card::before {
    content: "“";
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    font-family: var(--font-heading);
    color: var(--accent-light);
    line-height: 1;
    opacity: 0.5;
}

.review-stars {
    color: #fbc02d;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a6363;
    margin-bottom: 25px;
    flex-grow: 1;
    z-index: 1;
}

.review-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f0f7f5;
    padding-top: 20px;
}

.author-name {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.05rem;
}

.hidden-schema {
    display: none;
}

/* Map Section */
.map-iframe {
    border-radius: 15px;
}

/* Footer */
.footer-horizontal {
    background: var(--glass-white) !important;
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    color: var(--primary-dark);
    padding: 50px 0;
    width: 100%;
    margin-top: 100px;
    border-top: 1px solid var(--glass-border);
    box-shadow: 0 -10px 40px rgba(26, 77, 77, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.footer-links a {
    color: var(--primary-dark) !important;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--pastel-green) !important;
}

.footer-insta {
    display: flex;
    align-items: center;
    background: var(--glass-bg);
    padding: 8px 15px;
    border-radius: 5px;
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 0.85rem;
    border: 1px solid var(--glass-border);
}

.footer-insta:hover {
    background: #7fc8b4;
    color: #1a4d4d;
}

/* 6. MEDIA QUERIES */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-section {
        padding: 60px 0;
    }
    .diploma-card {
        flex: 0 0 85%;
    }
    .booking-container iframe {
        height: 500px;
    }
    #booking {
        padding: 60px 0;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .menu-toggle {
        display: flex;
    }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--glass-white);
        backdrop-filter: var(--blur);
        -webkit-backdrop-filter: var(--blur);
        border-bottom: 1px solid var(--glass-border);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }
    .nav-menu.active {
        max-height: 400px;
    }
    .nav-links {
        flex-direction: column;
        padding: 20px 0;
        gap: 15px;
    }
    .about-hero {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .about-image {
        flex: 0 0 auto;
        max-width: 320px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer-links {
        justify-content: center;
    }
    .spec-grid {
        grid-template-columns: 1fr;
    }
    .service-grid {
        grid-template-columns: 1fr;
    }
}

/* WhatsApp Button Style */
.btn-whatsapp {
    background-color: #25D366 !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    animation: pulse-green 2s infinite;
}

.btn-whatsapp:hover {
    background-color: #128C7E !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    animation: none;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9990;
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: white;
}

/* Calendar Ribbon Styles */
.calendar-container {
    margin: 30px 0;
    text-align: center;
}

.calendar-ribbon {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto 20px auto;
    padding: 10px 5px 20px 5px;
    scrollbar-width: thin;
}

#calendar-ribbon {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    overflow-x: auto;
    white-space: normal;
}

.calendar-day {
    flex: 0 0 110px;
    background: #f8fafc;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    transition: transform 0.3s ease;
}

.calendar-day.available {
    background: #ffffff;
    border: 2px solid #25D366;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.1);
}

.calendar-day.day-off {
    opacity: 0.6;
    background: #f0f0f0;
    border: 1px solid transparent;
}

.time-slot {
    font-size: 0.85rem;
    color: #1a4d4d;
    margin-top: 8px;
    font-weight: 700;
    background: #e8f5e9;
    padding: 2px 8px;
    border-radius: 10px;
}

.no-slot {
    font-size: 0.8rem;
    color: #999;
    margin-top: 8px;
}

.day-name {
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 600;
}

.day-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: #333;
}
