/* Базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #3498db;
    --primary-dark: #2980b9;
    --secondary: #e74c3c;
    --secondary-dark: #c0392b;
    --accent: #9b59b6;
    --text: #2c3e50;
    --text-light: #7f8c8d;
    --background: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-med: linear-gradient(135deg, #3498db, #2c3e50);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
}

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

/* Шапка */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.logo h1 {
    color: var(--text);
    font-size: 28px;
    font-weight: 700;
}

.logo span {
    color: var(--text-light);
    font-size: 12px;
    display: block;
}

.header-contacts {
    text-align: right;
}

.phone {
    font-size: 18px;
    font-weight: bold;
    color: var(--text);
}

.email {
    font-size: 14px;
    color: var(--text-light);
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 10px;
}

.nav a {
    text-decoration: none;
    color: var(--text);
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav a:hover,
.nav a.active {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Герой-баннер */
.hero {
    background: var(--gradient-med);
    color: white;
    padding: 180px 0 120px;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 3.5em;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Заголовок страницы */
.page-header {
    background: var(--gradient-med);
    color: white;
    padding: 140px 0 80px;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-header p {
    font-size: 1.2em;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Кнопки */
.btn-primary {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 18px 35px;
    font-size: 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
    border: 2px solid white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

/* Экстренные случаи - красивый всплывающий блок */
.emergency-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.emergency-trigger {
    background: var(--secondary);
    color: white;
    padding: 20px;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
    text-align: center;
}

.emergency-trigger:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.6);
}

.emergency-trigger i {
    font-size: 24px;
    margin-bottom: 5px;
}

.emergency-trigger span {
    font-size: 10px;
    font-weight: bold;
}

.emergency-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    z-index: 2000;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.emergency-modal.active {
    display: block;
    animation: emergencyPopup 0.5s ease;
}

@keyframes emergencyPopup {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.emergency-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1999;
}

.emergency-modal-overlay.active {
    display: block;
}

.emergency-modal i {
    font-size: 4em;
    color: var(--secondary);
    margin-bottom: 20px;
}

.emergency-modal h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: var(--text);
}

.emergency-modal p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.emergency-phone-large {
    font-size: 2em;
    font-weight: bold;
    color: var(--secondary);
    margin: 20px 0;
    padding: 15px;
    background: #ffeaea;
    border-radius: 15px;
}

/* Сетки */
.services-grid,
.doctors-grid,
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Карточки услуг */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-image {
    background: var(--gradient);
    height: 120px;
    width: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2.5em;
}

.service-card h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: var(--text);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    display: inline-block;
    font-size: 1.4em;
    font-weight: bold;
    color: var(--secondary);
    margin-top: 15px;
    padding: 8px 20px;
    background: #ffeaea;
    border-radius: 25px;
}

/* О нас */
.about {
    padding: 100px 0;
    background: var(--background);
}

.about h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--text);
    font-size: 2.5em;
}

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

.about-text p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.8;
}

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

.stat {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.number {
    display: block;
    font-size: 1.5em;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 10px;
}

.label {
    color: var(--text-light);
    font-size: 1em;
    font-weight: 500;
}

.about-image {
    background: var(--gradient);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: white;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: var(--shadow);
}

/* Преимущества - все в строчку */
.advantages {
    padding: 100px 0;
    background: white;
}

.advantages h2 {
    text-align: center;
    margin-bottom: 60px;
    color: var(--text);
    font-size: 2.5em;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.advantage {
    text-align: center;
    padding: 40px 25px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.advantage:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.advantage i {
    font-size: 3.5em;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
}

.advantage h3 {
    margin-bottom: 15px;
    color: var(--text);
    font-size: 1.3em;
}

.advantage p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Врачи превью */
.doctors-preview {
    padding: 100px 0;
    background: var(--background);
}

.doctors-preview h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--text);
    font-size: 2.5em;
}

/* Карточки врачей */
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.doctor-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.doctor-image {
    background: var(--gradient);
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.1em;
    position: relative;
    overflow: hidden;
    flex-direction: column;
}

.doctor-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
}

.doctor-info {
    padding: 30px;
}

.doctor-info h3 {
    color: var(--text);
    margin-bottom: 10px;
    font-size: 1.4em;
}

.specialty {
    color: var(--primary);
    font-weight: bold;
    margin: 10px 0;
    font-size: 1.1em;
}

.experience {
    color: var(--text-light);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.experience::before {
    content: '⏱️';
}

.education {
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 0.95em;
}

.bio {
    color: #555;
    margin-bottom: 25px;
    font-size: 0.95em;
    line-height: 1.6;
}

/* Отзывы */
.reviews {
    background: white;
    padding: 100px 0;
}

.reviews h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--text);
    font-size: 2.5em;
}

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

.review {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
    border: 1px solid #f0f0f0;
}

.review:before {
    content: '"';
    font-size: 5em;
    color: #ecf0f1;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.review-text {
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    color: #555;
    font-size: 1.1em;
    line-height: 1.7;
}

.review-author {
    font-weight: bold;
    color: var(--text);
    font-size: 1.1em;
}

/* Акции */
.promotions {
    padding: 100px 0;
    background: var(--background);
}

.promotions h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--text);
    font-size: 2.5em;
}

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

.promotion {
    background: var(--gradient);
    color: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.promotion:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transform: rotate(30deg);
}

.promotion h3 {
    margin-bottom: 20px;
    font-size: 1.5em;
    position: relative;
    z-index: 1;
}

.promotion p {
    margin-bottom: 25px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.discount {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.3em;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Запись - современная форма */
.booking {
    background: var(--gradient-med);
    padding: 100px 0;
    color: white;
}

.booking h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.1);
    padding: 50px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* Формы */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 15px;
    font-size: 16px;
    background: rgba(255,255,255,0.1);
    color: white;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: white;
    background: rgba(255,255,255,0.2);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.form-group select option {
    background: var(--text);
    color: white;
}

/* Контакты */
.contacts {
    padding: 80px 0;
    background: var(--background);
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info h2,
.contact-form-section h2 {
    margin-bottom: 40px;
    color: var(--text);
    font-size: 2em;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 1.5em;
    color: var(--primary);
    margin-top: 5px;
}

.contact-item h3 {
    margin-bottom: 8px;
    color: var(--text);
}

.contact-item p {
    margin-bottom: 5px;
    color: var(--text);
    font-weight: 500;
}

.contact-item small {
    color: var(--text-light);
    font-size: 0.9em;
}

.emergency-contact {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-top: 40px;
    border-left: 5px solid var(--secondary);
}

.emergency-contact h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.emergency-phone {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--secondary);
    margin-top: 15px;
    padding: 10px 20px;
    background: #ffeaea;
    border-radius: 10px;
    display: inline-block;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    background: var(--background);
    border-color: #e0e0e0;
    color: var(--text);
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    color: #bdc3c7;
}

.map-section {
    margin-bottom: 60px;
}

.map-section h2 {
    margin-bottom: 30px;
    color: var(--text);
    font-size: 2em;
    text-align: center;
}

.map-placeholder {
    background: var(--gradient);
    height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2em;
}

.transport-info h2 {
    margin-bottom: 40px;
    color: var(--text);
    font-size: 2em;
    text-align: center;
}

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

.transport {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.transport:hover {
    transform: translateY(-5px);
}

.transport i {
    font-size: 2.5em;
    color: var(--primary);
    margin-bottom: 20px;
}

.transport h3 {
    margin-bottom: 15px;
    color: var(--text);
}

.transport p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Услуги полные */
.services-full {
    padding: 80px 0;
    background: var(--background);
}

.services-categories {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.category {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.category h2 {
    margin-bottom: 30px;
    color: var(--text);
    font-size: 1.8em;
    display: flex;
    align-items: center;
    gap: 15px;
}

.category h2 i {
    color: var(--primary);
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid #ecf0f1;
}

.service-item:last-child {
    border-bottom: none;
}

.service-info h3 {
    margin-bottom: 8px;
    color: var(--text);
    font-size: 1.2em;
}

.service-info p {
    color: var(--text-light);
    font-size: 0.95em;
}

.service-price {
    font-size: 1.3em;
    font-weight: bold;
    color: var(--secondary);
    background: #ffeaea;
    padding: 10px 20px;
    border-radius: 25px;
    min-width: 120px;
    text-align: center;
}

/* FAQ */
.faq {
    padding: 100px 0;
    background: white;
}

.faq h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--text);
    font-size: 2.5em;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 2px solid #ecf0f1;
    padding: 30px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    color: var(--text);
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 1.3em;
    display: flex;
    justify-content: between;
    align-items: center;
}

.faq-item h3::after {
    content: '+';
    font-size: 1.5em;
    color: var(--primary);
    margin-left: auto;
}

.faq-item.active h3::after {
    content: '-';
}

.faq-item p {
    color: #666;
    line-height: 1.7;
    display: none;
}

.faq-item.active p {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

/* Модальные окна */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 25px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalShow 0.4s ease;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

@keyframes modalShow {
    from {
        opacity: 0;
        transform: translateY(-60px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 32px;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--secondary);
}

/* Подвал */
.footer {
    background: var(--text);
    color: white;
    padding: 70px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 25px;
    color: var(--primary);
    font-size: 1.4em;
}

.footer-section p,
.footer-section li {
    margin-bottom: 12px;
    color: #bdc3c7;
}

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

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

.footer-section a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

.text-center {
    text-align: center;
    margin-top: 40px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h2 {
        font-size: 2.2em;
    }
    
    .page-header h1 {
        font-size: 2.2em;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .doctors-grid {
        grid-template-columns: 1fr;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    
    .transport-options {
        grid-template-columns: 1fr;
    }
    
    .emergency-floating {
        bottom: 20px;
        right: 20px;
    }
    
    .emergency-trigger {
        width: 70px;
        height: 70px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}