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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 50%, #e0e7ff 100%);
    min-height: 100vh;
}

/* Hide Scrollbar */
::-webkit-scrollbar {
    display: none;
}

html {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Glass Card Effects */
.glass-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(239,246,255,0.5) 50%, rgba(241,245,249,0.8) 100%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(239,246,255,0.7) 50%, rgba(241,245,249,0.9) 100%);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    border-color: rgba(59,130,246,0.5);
    transform: translateY(-6px);
}

.glass-card-dark {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

/* Text Gradients */
.text-gradient {
    background: linear-gradient(135deg, #7c3aed, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-white {
    background: linear-gradient(135deg, #bfdbfe, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Floating Menu Styles */
.floating-menu {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
}

.floating-btn {
    position: absolute;
    transition: all 0.5s ease;
    opacity: 0;
    transform: scale(0.75);
    pointer-events: none;
}

.floating-btn.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.floating-btn button {
    padding: 0.75rem;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-btn button:hover {
    transform: scale(1.1);
}

.telegram-btn {
    bottom: -22px;
    right: 51px;
}

.telegram-btn button {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.telegram-btn button:hover {
    box-shadow: 0 25px 50px -12px rgba(59,130,246,0.25);
}

.instagram-btn {
    bottom: 24px;
    right: 55px;
}

.instagram-btn button {
    background: linear-gradient(135deg, #ec4899, #9333ea);
}

.instagram-btn button:hover {
    box-shadow: 0 25px 50px -12px rgba(236,72,153,0.25);
}

.viber-btn {
    bottom: 57px;
    right: 22px;
}

.viber-btn button {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.viber-btn button:hover {
    box-shadow: 0 25px 50px -12px rgba(139,92,246,0.25);
}

.phone-btn {
    bottom: 49px;
    right: -23px;
}

.phone-btn button {
    background: linear-gradient(135deg, #10b981, #059669);
}

.phone-btn button:hover {
    box-shadow: 0 25px 50px -12px rgba(16,185,129,0.25);
}

.main-toggle-btn {
    padding: 1rem;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 25px 50px -12px rgba(59,130,246,0.25);
}

.main-toggle-btn.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

.tooth-icon {
    transition: all 0.3s ease;
}

.close-icon {
    position: absolute;
    transition: all 0.3s ease;
    opacity: 0;
    transform: rotate(180deg);

}

.main-toggle-btn.open .tooth-icon {
    opacity: 0;
    transform: rotate(180deg);
}

.main-toggle-btn.open .close-icon {
    opacity: 1;
    transform: rotate(0deg);
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(4px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    padding: 0.375rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 24px;
    height: 24px;
}

.logo-text h1 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
}

.logo-text p {
    font-size: 0.75rem;
    color: #6b7280;
}

.desktop-nav {
    display: none;
    gap: 1.5rem;
}

.nav-link {
    background: none;
    border: none;
    color: #7c3aed;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.375rem 0;
    font-size: 1.3rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #3b82f6;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #3b82f6;
}

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

.header-actions {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

.phone-link {
    color: #7c3aed;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.2rem;
}

.phone-link:hover {
    color: #1e40af;
}

.cta-button {
    background: linear-gradient(135deg, #7c3aed, #7c3aed);
    color: white;
    border: none;
    padding: 0.375rem 1.25rem;
    border-radius: 0.375rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px -1px rgba(0,0,0,0.1);
    font-size: 0.875rem;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 6px -1px rgba(59,130,246,0.25);
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-line {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: #374151;
    margin: 0.25rem 0;
    transition: all 0.3s ease;
}

.mobile-menu-btn.open .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.open .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.open .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}
/* комментирую */
.mobile-menu {
	display: none;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    padding: 1rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}
/* комментирую */
@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}
/* комментирую */
.mobile-menu.open {
	display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    background: none;
    border: none;
    color: #374151;
    text-align: left;
    padding: 0.5rem 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #3b82f6;
}

.mobile-menu-footer {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

.mobile-phone {
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.mobile-cta {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-cta:hover {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
    
    .header-actions {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

/* Hero Section */
.hero {
    margin: 0;
  background-color: white;
  font-family: sans-serif;
  display: flex;
}
.hcontainer {
  margin-top: 200px; /* отступ сверху */
  display: flex;
  height: 400px;
  width: 100%;
}

.hero-bg {
	width: 50%;
  background-image: url('2.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.hero-overlay {
	
    position: absolute;
    inset: 0;
    
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 4rem;
    max-width: 64rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #7604d8;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-accent {
    color: #7604d8;
    -webkit-background-clip: text;
    
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #7604d8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.hero-cta-primary {
    background: linear-gradient(135deg, #7c3aed, #7c3aed);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    width: 100%;
}

.hero-cta-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(59,130,246,0.25);
}



.hero-cta-secondary:hover {
    background: rgba(255,255,255,0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color:  #7604d8;
    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);
    }
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        width: auto;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

/* Services Section */
.services {
    padding: 9rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

.service-block {
    margin-bottom: 4rem;
}

.service-grid {
    display: grid;
    gap: 2rem;
    align-items: start;
}

.service-info {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(239,246,255,0.5) 50%, rgba(241,245,249,0.8) 100%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    padding: 2rem;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.service-info:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.service-icon {
    padding: 1rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon.blue {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #2563eb;
}

.service-icon.green {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #059669;
}

.service-icon.purple {
    background: linear-gradient(135deg, #e9d5ff, #ddd6fe);
    color: #7c3aed;
}

.service-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-info p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-list li {
    display: flex;
    align-items: center;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.service-list li::before {
    content: '✓';
    color: #059669;
    font-weight: bold;
    margin-right: 0.5rem;
}

.popular-badge {
    background: linear-gradient(135deg, #103ab9, #059669);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    width: fit-content;
}

.service-cta {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.service-cta:hover {
    transform: scale(1.05);
}

.service-cta.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.service-cta.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.pricing-info {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(239,246,255,0.5) 50%, rgba(241,245,249,0.8) 100%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.pricing-info.popular {
    border: 2px solid #10b981;
}

.pricing-info h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.price-list { 
display: flex; 
flex-direction: column; 
gap: 12px; padding: 20px; 
max-width: 600px; 
margin: auto; 
	} 
	
.price-item { 
display: flex; 
justify-content: space-between; 
align-items: center; 
padding: 12px 16px; 
border-radius: 8px; 
font-family: 'Segoe UI', 
sans-serif; font-size: clamp(14px, 2vw, 18px); 
	} 
	
.service { 
flex: 1; padding-right: 10px; 
	} 
	
.price { 
white-space: nowrap; 
font-weight: bold; 
color: #4db6ff; }
	}





.price.blue {
    color: #2563eb;
}

.price.green {
    color: #059669;
}

.price.purple {
    color: #7c3aed;
}

.pricing-cta {
    background: linear-gradient(135deg, #7c3aed, #7c3aed);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.pricing-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(59,130,246,0.25);
}

.pricing-cta.green {
    background: linear-gradient(135deg, #7c3aed, #7c3aed);
}

.pricing-cta.green:hover {
    box-shadow: 0 10px 15px -3px rgba(16,185,129,0.25);
}

.pricing-cta.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.pricing-cta.purple:hover {
    box-shadow: 0 10px 15px -3px rgba(139,92,246,0.25);
}

.info-block {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border: 1px solid #bfdbfe;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    margin-top: 3rem;
}

.info-block h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.info-grid {
    display: grid;
    gap: 1.5rem;
    text-align: left;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.info-icon {
    padding: 0.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon.blue {
    background: #dbeafe;
    color: #2563eb;
}

.info-icon.green {
    background: #dcfce7;
    color: #059669;
}

.info-item h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.info-item p {
    color: #6b7280;
    font-size: 0.875rem;
}

.info-note {
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 1.5rem;
}

@media (min-width: 1024px) {
    .service-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 3rem;
    }
}

/* About Section */
.about {
    padding: 0rem 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #ffffff 100%);
}

.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.feature-icon {
    background: #dbeafe;
    color: #2563eb;
    padding: 0.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #6b7280;
}

.about-image {
    position: relative;
}

.image-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(239,246,255,0.5) 50%, rgba(241,245,249,0.8) 100%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    padding: 2rem;
    border-radius: 1rem;
}

.image-card img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.image-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.image-content p {
    color: #6b7280;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-content h2 {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .about-content h2 {
        font-size: 3rem;
    }
}

/* Schedule Section */
.schedule {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}

.schedule-content {
    max-width: 64rem;
    margin: 0 auto;
}

.schedule-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(239,246,255,0.5) 50%, rgba(241,245,249,0.8) 100%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    padding: 2rem;
    border-radius: 1rem;
    display: grid;
    gap: 2rem;
}

.schedule-info h3,
.appointment-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 0.5rem;
}

.schedule-item.weekdays {
    background: #eff6ff;
}

.schedule-item.saturday {
    background: #f0fdf4;
}

.schedule-item.sunday {
    background: #f9fafb;
}

.schedule-item span:first-child {
    font-weight: 600;
    color: #1f2937;
}

.time.blue {
    font-weight: 700;
    color: #2563eb;
	white-space: nowrap;
}

.time.green {
    font-weight: 700;
    color: #059669;
}

.time.gray {
    font-weight: 700;
    color: #6b7280;
}

.appointment-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.phone-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-icon {
    background: #dbeafe;
    color: #7c3aed;
    padding: 0.75rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-info p {
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.big-phone {
    font-size: 1.5rem;
    font-weight: 700;
    color: #7c3aed;
    text-decoration: none;
}

.big-phone:hover {
    color: #1e40af;
}

.appointment-note {
    background: #eff6ff;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.appointment-note h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.appointment-note p {
    color: #6b7280;
    font-size: 0.875rem;
}

.appointment-cta {
    background: linear-gradient(135deg, #7c3aed, #7c3aed);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.appointment-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(59,130,246,0.25);
}

@media (min-width: 768px) {
    .schedule-card {
        grid-template-columns: 1fr 1fr;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #ffffff 100%);
}

.testimonials-slider {
    position: relative;
}

.testimonials-container {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonials-container::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(239,246,255,0.5) 50%, rgba(241,245,249,0.8) 100%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    padding: 1.5rem;
    border-radius: 1rem;
    flex-shrink: 0;
    width: 20rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    margin-right: 1rem;
}

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

.avatar.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.avatar.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.avatar.red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.avatar.indigo {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.testimonial-info h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.stars {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-card p {
    color: #6b7280;
    line-height: 1.6;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    color: #374151;
    border: none;
    padding: 0.75rem;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.testimonial-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.testimonial-nav.left {
    left: 0;
}

.testimonial-nav.right {
    right: 0;
}

.testimonials-hint {
    text-align: center;
    margin-top: 2rem;
}

.testimonials-hint p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1f2937 0%, #833bf6 100%);
    color: white;
}

.section-header.white h2 {
    color: white;
}

.section-header.white p {
    color: #dbeafe;
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    padding: 1.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: start;
    gap: 1rem;
}

.contact-icon {
    padding: 0.75rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon.blue {
    background: #2563eb;
}

.contact-icon.green {
    background: #059669;
}

.contact-icon.purple {
    background: #7c3aed;
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #dbeafe;
}

.contact-phone {
    color: #bfdbfe;
    text-decoration: none;
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.contact-phone:hover {
    color: white;
}

.work-hours p {
    color: #dbeafe;
    margin-bottom: 0.25rem;
}

.contact-cta {
    background: linear-gradient(135deg, #7c3aed, #7c3aed);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    width: 100%;
}

.contact-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(59,130,246,0.25);
}

.map-container h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.map {
    background: #374151;
    height: 16rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0.5rem;
}

.map-note {
    color: #dbeafe;
    font-size: 0.875rem;
}

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

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: none;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.footer-logo p {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-brand p {
    color: #9ca3af;
}

.footer-services h4,
.footer-contact h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.footer-services ul {
    list-style: none;
}

.footer-services li {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.footer-contact-info p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.footer-phone {
    color:#7c3aed;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-phone:hover {
    color: #93c5fd;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom p {
    color: #9ca3af;
    text-align: center;
}

.visit-counter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.visit-counter svg {
    color: #6b7280;
}

.visit-counter span {
    color: #6b7280;
    font-size: 0.75rem;
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-bottom p {
        text-align: left;
    }
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

/* Button Focus States */
button:focus,
a:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Responsive Typography */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Animation Delays */
.animate-delay-100 {
    animation-delay: 100ms;
}

.animate-delay-200 {
    animation-delay: 200ms;
}

.animate-delay-300 {
    animation-delay: 300ms;
}

/* Print Styles */
@media print {
    .floating-menu,
    .header,
    .scroll-indicator {
        display: none !important;
    }
}
.slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.content {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(239,246,255,0.5) 50%, rgba(241,245,249,0.8) 100%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    padding: 2rem;
    border-radius: 1rem;
}

.content img {

	width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}
.content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.content p {
    color: #6b7280;
	
}
.site-footer { color: #eee; /* светлый текст */ text-align: center; /* по центру */ padding: 20px; /* отступы */ font-family: 'Segoe UI', sans-serif; font-size: 14px; } 
.site-footer a { color: #4db6ff; /* цвет ссылки */ text-decoration: none; /* убрать подчёркивание */ font-weight: bold; } 
.site-footer a:hover { color: #ffcc00; /* цвет при наведении */ }

