@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --white: #ffffff;
    --cold-gray: #6C7A89;
    --medical-blue: #0052A5;
    --soft-gold: #D4C5A9;
    --gold-accent: #C9A961;
    --gold-rich: #B8954A;
    --gold-light: #E8DCC0;
    --gold-glow: rgba(201, 169, 97, 0.3);
    --cold-gray-light: #F5F7F9;
    --medical-blue-light: #E6F0F7;
    --medical-blue-dark: #003d7a;
    --text-dark: #1A1F2E;
    --text-gray: #4A5568;
    --shadow-soft: 0 4px 20px rgba(0, 82, 165, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 82, 165, 0.12);
    --shadow-strong: 0 12px 40px rgba(0, 82, 165, 0.15);
    --shadow-gold: 0 4px 20px rgba(201, 169, 97, 0.25);
    --shadow-gold-strong: 0 8px 30px rgba(201, 169, 97, 0.3);
    --shadow-luxury: 0 20px 60px rgba(0, 82, 165, 0.15), 0 0 0 1px rgba(212, 197, 169, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

*:focus {
    outline: none;
}

a, button {
    -webkit-tap-highlight-color: rgba(0, 82, 165, 0.1);
    touch-action: manipulation;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: 
        radial-gradient(circle at 0% 0%, rgba(212, 197, 169, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(0, 82, 165, 0.02) 0%, transparent 50%),
        linear-gradient(180deg, #FAFBFC 0%, #FFFFFF 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    padding: 0;
    margin: 0;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(212, 197, 169, 0.015) 2px,
            rgba(212, 197, 169, 0.015) 4px
        );
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    box-shadow: 
        0 4px 30px rgba(0, 82, 165, 0.08),
        0 0 0 1px rgba(212, 197, 169, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(212, 197, 169, 0.25);
    position: relative;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(201, 169, 97, 0.3) 20%, 
        rgba(201, 169, 97, 0.5) 50%, 
        rgba(201, 169, 97, 0.3) 80%, 
        transparent 100%);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    gap: 2rem;
    flex-wrap: wrap;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.header-contact {
    display: flex;
    align-items: center;
}

.header-phone {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
}

.header-phone::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--medical-blue), var(--gold-accent));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-phone:hover {
    color: var(--medical-blue);
}

.header-phone:hover::after {
    width: 100%;
}

.logo a {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--medical-blue) 0%, var(--gold-accent) 50%, var(--gold-rich) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.5px;
    position: relative;
    text-shadow: 0 0 30px rgba(201, 169, 97, 0.2);
    filter: drop-shadow(0 2px 4px rgba(0, 82, 165, 0.1));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo a:hover {
    filter: drop-shadow(0 4px 8px rgba(201, 169, 97, 0.3));
    transform: scale(1.02);
}

.logo a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--medical-blue) 0%, 
        var(--gold-accent) 50%, 
        var(--gold-rich) 100%);
    opacity: 0.4;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.3);
    transition: all 0.4s ease;
}

.logo a:hover::after {
    opacity: 0.7;
    height: 4px;
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.4);
}

.nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 0;
    display: inline-block;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--medical-blue), var(--gold-accent));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--medical-blue);
}

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

/* Main Hero Section */
.main-hero {
    padding: 4rem 0 5rem;
    background: linear-gradient(180deg, 
        var(--cold-gray-light) 0%, 
        rgba(255, 255, 255, 0.5) 50%,
        var(--cold-gray-light) 100%);
    position: relative;
    overflow: hidden;
}

.main-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 197, 169, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 82, 165, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.main-hero-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.main-hero-card {
    border-radius: 48px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-luxury);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(212, 197, 169, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.main-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, 
        var(--medical-blue) 0%, 
        var(--gold-accent) 50%, 
        var(--gold-rich) 100%);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(201, 169, 97, 0.4);
    z-index: 3;
}

.main-hero-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        var(--shadow-strong),
        0 0 50px rgba(201, 169, 97, 0.25);
    border-color: rgba(201, 169, 97, 0.4);
}

.main-hero-card:hover::before {
    transform: scaleX(1);
}

/* Большая карточка слева */
.main-hero-card-large {
    min-height: 650px;
    grid-row: 1 / 3;
}

.main-hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.main-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.92);
}

.main-hero-card-large:hover .main-hero-image {
    transform: scale(1.05);
    filter: brightness(1);
}

.main-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(0, 82, 165, 0.15) 40%,
        rgba(0, 61, 122, 0.4) 70%,
        rgba(0, 45, 90, 0.6) 100%);
    z-index: 1;
    transition: all 0.5s ease;
}

.main-hero-card-large:hover .main-hero-overlay {
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(0, 82, 165, 0.2) 40%,
        rgba(0, 61, 122, 0.5) 70%,
        rgba(0, 45, 90, 0.7) 100%);
}

.main-hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2.5rem;
    z-index: 2;
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.5) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.main-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 2rem 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.main-hero-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-accent), var(--gold-rich));
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(201, 169, 97, 0.5);
}

.btn-hero-service {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.125rem 2.25rem;
    background: linear-gradient(135deg, 
        var(--medical-blue) 0%, 
        var(--medical-blue-dark) 50%,
        var(--medical-blue) 100%);
    background-size: 200% 100%;
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.0625rem;
    letter-spacing: 0.3px;
    box-shadow: 
        0 8px 24px rgba(0, 82, 165, 0.3),
        0 0 30px rgba(201, 169, 97, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-hero-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.6s ease;
}

.btn-hero-service:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 32px rgba(0, 82, 165, 0.4),
        0 0 40px rgba(201, 169, 97, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background-position: 100% 0;
}

.btn-hero-service:hover::before {
    left: 100%;
}

.btn-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.btn-hero-service:hover .btn-arrow {
    transform: translateX(5px);
}

/* Маленькие карточки справа */
.main-hero-side {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.main-hero-card-small {
    min-height: 300px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.main-hero-card-accent {
    background: linear-gradient(135deg, 
        var(--medical-blue) 0%, 
        var(--medical-blue-dark) 40%,
        var(--gold-accent) 60%,
        var(--medical-blue-dark) 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    position: relative;
}

.main-hero-card-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(201, 169, 97, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 82, 165, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.main-hero-card-dark {
    background: linear-gradient(135deg, 
        var(--text-dark) 0%, 
        #1A1F2E 40%,
        #0F1419 60%,
        #1A1F2E 100%);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
    position: relative;
}

.main-hero-card-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 82, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(201, 169, 97, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.main-hero-card-content {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.main-hero-card-label {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(212, 197, 169, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.875rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.main-hero-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
    letter-spacing: -0.3px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.main-hero-card-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.main-hero-card-decoration,
.main-hero-card-icon {
    font-size: 4rem;
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    opacity: 0.3;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    transition: all 0.5s ease;
    z-index: 1;
}

.main-hero-card:hover .main-hero-card-decoration,
.main-hero-card:hover .main-hero-card-icon {
    opacity: 0.5;
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 6px 20px rgba(201, 169, 97, 0.4));
}

.main-hero-card-accent::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.main-hero-card-accent:hover::after {
    opacity: 1;
}

.main-hero-card-dark::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 82, 165, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.main-hero-card-dark:hover::after {
    opacity: 1;
}

/* Hero (старый стиль для совместимости) */
.hero {
    color: var(--white);
    padding: 0;
    text-align: center;
    border-radius: 0 0 60px 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 82, 165, 0.2),
        inset 0 -4px 20px rgba(0, 0, 0, 0.1);
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    animation: heroImageZoom 20s ease-in-out infinite;
}

@keyframes heroImageZoom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 82, 165, 0.75) 0%, 
        rgba(0, 61, 122, 0.8) 30%,
        rgba(0, 45, 90, 0.85) 60%,
        rgba(0, 61, 122, 0.8) 100%);
    z-index: 1;
    animation: overlayPulse 8s ease-in-out infinite;
}

@keyframes overlayPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.95; }
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 197, 169, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(201, 169, 97, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(201, 169, 97, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.015) 2px,
            rgba(255, 255, 255, 0.015) 4px
        );
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    padding: 7rem 2rem 6rem;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    line-height: 1.15;
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(0, 0, 0, 0.2),
        0 2px 10px rgba(201, 169, 97, 0.2);
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(255, 255, 255, 0.95) 50%,
        rgba(255, 255, 255, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.hero-subtitle {
    font-size: 1.375rem;
    font-weight: 300;
    opacity: 0.98;
    letter-spacing: 0.8px;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(0, 0, 0, 0.1);
    position: relative;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Features */
.features {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--cold-gray-light) 0%, #FFFFFF 100%);
    position: relative;
}

.features-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 1.5rem;
}

.features-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--medical-blue) 0%, 
        var(--gold-accent) 50%, 
        var(--gold-rich) 100%);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(201, 169, 97, 0.4);
}

.features-content {
    max-width: 1000px;
    margin: 0 auto;
}

.features-intro {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 400;
}

.features-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--medical-blue);
    margin: 2.5rem 0 1.5rem;
    letter-spacing: -0.3px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 1px 3px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 197, 169, 0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 2px 6px rgba(0, 0, 0, 0.04);
    border-color: rgba(212, 197, 169, 0.2);
}

.feature-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, 
        var(--medical-blue) 0%, 
        var(--gold-accent) 50%,
        var(--gold-rich) 100%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 82, 165, 0.3);
}

.feature-text {
    flex: 1;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.feature-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 40px;
    text-align: center;
    box-shadow: var(--shadow-luxury);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(212, 197, 169, 0.15);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, 
        var(--medical-blue) 0%, 
        var(--gold-accent) 50%, 
        var(--gold-rich) 100%);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(201, 169, 97, 0.4);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        var(--shadow-strong),
        0 0 40px rgba(201, 169, 97, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(201, 169, 97, 0.4);
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.98) 100%);
}

.feature-card:hover::before {
    transform: scaleX(1);
    height: 6px;
}

.feature-card:hover::after {
    opacity: 1;
}

/* Feature Card with Image */
.feature-card-with-image {
    padding: 0;
    overflow: hidden;
    position: relative;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.feature-image-wrapper {
    position: relative;
    width: 100%;
    height: 65%;
    overflow: hidden;
    flex-shrink: 0;
}

.feature-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 82, 165, 0.1) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.feature-card-with-image:hover .feature-image-wrapper::after {
    opacity: 1;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95);
}

.feature-card-with-image .feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(0, 82, 165, 0.1) 50%,
        rgba(0, 61, 122, 0.3) 100%);
    z-index: 1;
    transition: all 0.5s ease;
}

.feature-card-with-image:hover .feature-image {
    transform: scale(1.1);
    filter: brightness(1);
}

.feature-card-with-image:hover .feature-overlay {
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(0, 82, 165, 0.15) 50%,
        rgba(0, 61, 122, 0.4) 100%);
}

.feature-card-with-image .feature-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem 2rem;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        var(--white) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-top: 3px solid rgba(212, 197, 169, 0.2);
    position: relative;
}

.feature-card-with-image .feature-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--medical-blue) 0%, 
        var(--gold-accent) 50%, 
        var(--gold-rich) 100%);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(201, 169, 97, 0.4);
}

.feature-card-with-image:hover .feature-content {
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(255, 255, 255, 0.98) 100%);
    border-top-color: rgba(201, 169, 97, 0.4);
}

.feature-card-with-image:hover .feature-content::before {
    transform: scaleX(1);
}

.feature-card-with-image .feature-icon {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 3;
}

.feature-card-with-image .feature-content h3 {
    position: relative;
    z-index: 3;
}

.feature-card-with-image .feature-content p {
    position: relative;
    z-index: 3;
    color: var(--text-gray);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.75rem;
    filter: 
        drop-shadow(0 4px 12px rgba(201, 169, 97, 0.4))
        drop-shadow(0 0 20px rgba(201, 169, 97, 0.2));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(8deg);
    filter: 
        drop-shadow(0 6px 20px rgba(201, 169, 97, 0.5))
        drop-shadow(0 0 30px rgba(201, 169, 97, 0.3));
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, var(--medical-blue) 0%, var(--gold-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-size: 1.625rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    position: relative;
    transition: all 0.4s ease;
}

.feature-card:hover h3 {
    filter: drop-shadow(0 2px 8px rgba(201, 169, 97, 0.3));
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* CTA */
.cta {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(180deg, #FFFFFF 0%, var(--medical-blue-light) 100%);
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(212, 197, 169, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--medical-blue);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.cta p {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 1.125rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, 
        var(--medical-blue) 0%, 
        var(--medical-blue-dark) 50%,
        var(--medical-blue) 100%);
    background-size: 200% 100%;
    color: var(--white);
    box-shadow: 
        var(--shadow-soft),
        0 0 20px rgba(0, 82, 165, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        var(--shadow-medium),
        0 0 30px rgba(0, 82, 165, 0.3),
        0 0 60px rgba(201, 169, 97, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background-position: 100% 0;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(-1px);
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, 
        var(--text-dark) 0%, 
        #1A1F2E 50%,
        #0F1419 100%);
    color: var(--white);
    padding: 4rem 0 3rem;
    text-align: center;
    border-radius: 60px 60px 0 0;
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 0 4px 20px rgba(0, 0, 0, 0.3),
        0 -4px 30px rgba(0, 82, 165, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(201, 169, 97, 0.4) 20%, 
        var(--gold-accent) 50%, 
        rgba(201, 169, 97, 0.4) 80%, 
        transparent 100%);
    box-shadow: 0 0 20px rgba(201, 169, 97, 0.5);
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 82, 165, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer p {
    opacity: 0.9;
    font-size: 1rem;
    letter-spacing: 0.8px;
    font-weight: 400;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Service Hero Section */
.service-hero-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, 
        #FFFFFF 0%, 
        var(--cold-gray-light) 50%,
        #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.service-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 197, 169, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 82, 165, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 100%;
}

.service-hero-left {
    display: flex;
    align-items: flex-start;
}

.service-booking-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 40px;
    box-shadow: var(--shadow-luxury);
    border: 2px solid rgba(212, 197, 169, 0.15);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-booking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, 
        var(--medical-blue) 0%, 
        var(--gold-accent) 50%, 
        var(--gold-rich) 100%);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(201, 169, 97, 0.4);
    z-index: 1;
}

.service-booking-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        var(--shadow-strong),
        0 0 50px rgba(201, 169, 97, 0.25);
    border-color: rgba(201, 169, 97, 0.4);
}

.service-booking-card:hover::before {
    transform: scaleX(1);
    height: 6px;
}

.service-booking-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-booking-icon {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(0, 82, 165, 0.1) 0%, 
        rgba(201, 169, 97, 0.1) 100%);
    border-radius: 50%;
    border: 2px solid rgba(212, 197, 169, 0.3);
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 12px rgba(201, 169, 97, 0.2));
}

.service-booking-card:hover .service-booking-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(201, 169, 97, 0.5);
    background: linear-gradient(135deg, 
        rgba(0, 82, 165, 0.15) 0%, 
        rgba(201, 169, 97, 0.15) 100%);
}

.service-booking-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--medical-blue);
    margin: 0 0 1rem 0;
    letter-spacing: -0.3px;
    background: linear-gradient(135deg, var(--medical-blue) 0%, var(--gold-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-booking-text {
    font-size: 1.0625rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.service-hero-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.75rem 0;
    letter-spacing: -1px;
    line-height: 1.1;
    width: 100%;
}

.service-hero-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gold-accent);
    letter-spacing: 2px;
    margin-bottom: 2rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, 
        rgba(0, 82, 165, 0.05) 0%, 
        rgba(201, 169, 97, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.service-hero-description {
    margin-top: 2rem;
}

.service-hero-description p {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* Service Steps Section */
.service-steps-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, 
        var(--cold-gray-light) 0%, 
        #FFFFFF 100%);
    position: relative;
}

.service-steps-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-steps-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 1.5rem;
}

.service-steps-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--medical-blue) 0%, 
        var(--gold-accent) 50%, 
        var(--gold-rich) 100%);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(201, 169, 97, 0.4);
}

.service-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.service-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    min-width: 0;
}

.service-step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        var(--medical-blue) 0%, 
        var(--gold-accent) 50%,
        var(--gold-rich) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    box-shadow: 
        0 8px 24px rgba(0, 82, 165, 0.3),
        0 0 30px rgba(201, 169, 97, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-step:hover .service-step-number {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 
        0 12px 32px rgba(0, 82, 165, 0.4),
        0 0 40px rgba(201, 169, 97, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.service-step-arrow {
    font-size: 2.5rem;
    color: var(--gold-accent);
    margin: 0;
    font-weight: 300;
    transition: all 0.3s ease;
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    filter: drop-shadow(0 2px 8px rgba(201, 169, 97, 0.3));
    z-index: 1;
}

.service-step:last-child .service-step-arrow {
    display: none;
}

.service-step:hover .service-step-arrow {
    transform: translateX(5px);
    color: var(--gold-rich);
}

.service-step-content {
    flex: 1;
    width: 100%;
    max-width: 100%;
}

.service-step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--medical-blue);
    margin: 0 0 1rem 0;
    letter-spacing: -0.3px;
    background: linear-gradient(135deg, var(--medical-blue) 0%, var(--gold-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-step-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
}

.popular-services-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin: 0 auto 3.5rem;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 1.5rem;
    max-width: 100%;
}

.popular-services-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--medical-blue) 0%, 
        var(--gold-accent) 50%, 
        var(--gold-rich) 100%);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(201, 169, 97, 0.4);
}

/* Page Content */
.page-content {
    padding: 4rem 0;
    min-height: 55vh;
    background: linear-gradient(180deg, #FFFFFF 0%, var(--cold-gray-light) 100%);
}


.page-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--medical-blue);
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 1rem;
}

.page-content h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--medical-blue), var(--gold-accent));
    border-radius: 2px;
}

.page-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    margin: 2.5rem 0 1.25rem;
    color: var(--medical-blue);
    font-weight: 600;
    letter-spacing: -0.3px;
}

.page-content p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    color: var(--text-gray);
    font-size: 1.0625rem;
    font-weight: 400;
}

/* About Page Styles */
.about-intro {
    margin-bottom: 3rem;
}

.about-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.about-main-text {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.about-services,
.about-patients,
.about-doctors,
.about-antiage,
.about-droppers,
.about-address {
    margin: 3rem 0;
}

.services-list,
.droppers-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    counter-reset: item;
}

.services-list li,
.droppers-list li {
    counter-increment: item;
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
    line-height: 1.8;
    color: var(--text-gray);
    font-size: 1.0625rem;
}

.services-list li::before,
.droppers-list li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, 
        var(--medical-blue) 0%, 
        var(--gold-accent) 50%,
        var(--gold-rich) 100%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 82, 165, 0.3);
}

.services-list li strong,
.droppers-list li strong {
    color: var(--text-dark);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.droppers-note {
    margin-top: 2rem;
    font-style: italic;
    color: var(--text-gray);
    padding: 1.5rem;
    background: rgba(212, 197, 169, 0.05);
    border-left: 3px solid var(--gold-accent);
    border-radius: 8px;
}

.about-address {
    padding: 2rem;
    background: linear-gradient(135deg, 
        rgba(0, 82, 165, 0.05) 0%, 
        rgba(201, 169, 97, 0.05) 100%);
    border-radius: 24px;
    text-align: center;
}

.about-address h2 {
    margin-top: 0;
}

.about-address p {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin: 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    aspect-ratio: 4 / 3;
    height: 100%;
    width: 100%;
    display: block;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.12),
        0 6px 12px rgba(0, 0, 0, 0.08);
}

.service-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--cold-gray-light);
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    letter-spacing: -0.1px;
    z-index: 2;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.6) 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.service-card:hover .service-title-overlay {
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(0, 0, 0, 0.25) 40%,
        rgba(0, 0, 0, 0.7) 100%);
    padding-bottom: 1.75rem;
}

.service-card-no-image {
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
    aspect-ratio: auto;
    justify-content: center;
}

.service-card-no-image h3 {
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 1rem;
    line-height: 1.4;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.service-card:hover .service-card-no-image h3 {
    color: var(--medical-blue);
}

.service-card-no-image p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.75rem;
    margin-top: 1.75rem;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 32px;
    border: 1px solid rgba(212, 197, 169, 0.2);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--medical-blue), var(--gold-accent));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(212, 197, 169, 0.4);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card h3 {
    color: var(--medical-blue);
    margin-bottom: 1rem;
}

.contact-card p {
    margin-bottom: 0.5rem;
}

/* Clinic Photo Section */
.clinic-photo-section {
    width: 100%;
    background-color: var(--white);
    padding: 2.5rem 0;
}

.clinic-photo {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    max-height: 450px;
    border-radius: 40px;
    object-fit: cover;
    object-position: center 40%;
    margin: 0 auto;
    box-shadow: var(--shadow-luxury);
    border: 3px solid rgba(212, 197, 169, 0.25);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.clinic-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 82, 165, 0.05) 0%, 
        rgba(201, 169, 97, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.clinic-photo:hover {
    transform: scale(1.02);
    box-shadow: 
        var(--shadow-strong),
        0 0 60px rgba(201, 169, 97, 0.3);
    border-color: rgba(201, 169, 97, 0.5);
}

.clinic-photo:hover::before {
    opacity: 1;
}

/* Contacts Map Section */
.contacts-map-section {
    padding: 3.5rem 0;
    background-color: var(--white);
}

.contacts-map-wrapper {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 4rem;
    align-items: start;
}

.contacts-sidebar {
    background: var(--white);
}

.contacts-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 2.5rem 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
    position: relative;
    padding-bottom: 1rem;
}

.contacts-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--medical-blue), var(--gold-accent));
    border-radius: 2px;
}


.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-item {
    padding-bottom: 1.75rem;
    margin-bottom: 1.75rem;
    border-bottom: 1px solid rgba(212, 197, 169, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-bottom-color: rgba(212, 197, 169, 0.4);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-button-wrapper {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 197, 169, 0.2);
}

.contact-button-wrapper .btn-primary {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.contact-label {
    color: var(--cold-gray);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.contact-value {
    color: var(--text-dark);
    font-size: 1.125rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

.contact-link {
    color: var(--medical-blue);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 400;
}

.contact-link:hover {
    color: var(--medical-blue-dark);
}

.map-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.map-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
    background: var(--white);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(212, 197, 169, 0.2);
    backdrop-filter: blur(10px);
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 82, 165, 0.03) 0%, 
        rgba(201, 169, 97, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.map-container:hover {
    box-shadow: 
        var(--shadow-strong),
        0 0 50px rgba(201, 169, 97, 0.25);
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(201, 169, 97, 0.4);
}

.map-container:hover::before {
    opacity: 1;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 28px;
    pointer-events: none;
    z-index: 10;
}

.map-container:hover .map-overlay {
    background: rgba(0, 0, 0, 0.03);
}

.map-overlay-text {
    opacity: 0;
    transition: opacity 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.7rem 1.35rem;
    border-radius: 16px;
    font-size: 0.85rem;
    color: var(--medical-blue);
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.map-container:hover .map-overlay-text {
    opacity: 1;
}

/* Promotions */
.promotions {
    padding: 5rem 0;
    background: linear-gradient(180deg, 
        #FFFFFF 0%, 
        var(--cold-gray-light) 50%,
        #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.promotions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 197, 169, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 82, 165, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.promotions-title {
    font-family: 'Playfair Display', serif;
    text-align: center;
    color: var(--medical-blue);
    font-size: 2.75rem;
    margin-bottom: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.promotions-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--medical-blue) 0%, 
        var(--gold-accent) 50%, 
        var(--gold-rich) 100%);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(201, 169, 97, 0.4);
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.promotion-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    aspect-ratio: 4 / 3;
    min-height: 300px;
    display: block;
    cursor: pointer;
}

.promotion-card::before {
    display: none;
}

.promotion-card::after {
    display: none;
}

.promotion-card:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.12),
        0 6px 12px rgba(0, 0, 0, 0.08);
}

.promotion-card:hover::before {
    display: none;
}

.promotion-card:hover::after {
    display: none;
}

.promotion-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--cold-gray-light);
}

.promotion-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.promotion-card:hover .promotion-image {
    transform: scale(1.1);
}

.promotion-overlay {
    display: none;
}

.promotion-content {
    display: none;
}

.promotion-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    letter-spacing: -0.1px;
    z-index: 2;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.6) 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.promotion-card:hover .promotion-title {
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(0, 0, 0, 0.25) 40%,
        rgba(0, 0, 0, 0.7) 100%);
    padding-bottom: 1.75rem;
}

.promotion-description {
    display: none;
}

.promotion-card-no-image {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promotion-card-no-image .promotion-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem;
    background: var(--white);
    border: none;
    width: 100%;
    height: 100%;
}

.promotion-card-no-image .promotion-title {
    position: static;
    color: var(--text-dark);
    font-size: 1.5rem;
    padding: 0;
    margin: 0 0 1rem 0;
    background: none;
    text-shadow: none;
}

.promotion-card-no-image .promotion-description {
    display: block;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.promotions-footer {
    text-align: center;
    margin-top: 3rem;
}

.btn-promotions-all {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: linear-gradient(135deg, 
        var(--medical-blue) 0%, 
        var(--medical-blue-dark) 50%,
        var(--medical-blue) 100%);
    background-size: 200% 100%;
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.0625rem;
    letter-spacing: 0.3px;
    box-shadow: 
        var(--shadow-soft),
        0 0 20px rgba(0, 82, 165, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-promotions-all::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.6s ease;
}

.btn-promotions-all:hover {
    transform: translateY(-3px);
    box-shadow: 
        var(--shadow-medium),
        0 0 30px rgba(0, 82, 165, 0.3),
        0 0 60px rgba(201, 169, 97, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background-position: 100% 0;
}

.btn-promotions-all:hover::before {
    left: 100%;
}

.btn-promotions-all:hover .btn-arrow {
    transform: translateX(5px);
}

/* Promotions Page */
.promotions-page {
    padding: 5rem 0;
    background: linear-gradient(180deg, 
        var(--cold-gray-light) 0%, 
        #FFFFFF 50%,
        var(--cold-gray-light) 100%);
    position: relative;
    min-height: 70vh;
}

.promotions-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 197, 169, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 82, 165, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.promotions-page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--medical-blue);
    margin-bottom: 3.5rem;
    text-align: center;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 1.5rem;
}

.promotions-page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--medical-blue) 0%, 
        var(--gold-accent) 50%, 
        var(--gold-rich) 100%);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(201, 169, 97, 0.4);
}

.promotions-carousel-wrapper {
    position: relative;
    margin-top: 3rem;
}

.promotions-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0 2rem;
    position: relative;
    z-index: 1;
}

.promotions-carousel::-webkit-scrollbar {
    display: none;
}

.promotion-carousel-card {
    flex: 0 0 390px;
    border-radius: 48px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-luxury);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(212, 197, 169, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: var(--white);
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.promotion-carousel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, 
        var(--medical-blue) 0%, 
        var(--gold-accent) 50%, 
        var(--gold-rich) 100%);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(201, 169, 97, 0.4);
    z-index: 3;
}

.promotion-carousel-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        var(--shadow-strong),
        0 0 50px rgba(201, 169, 97, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(201, 169, 97, 0.4);
}

.promotion-carousel-card:hover::before {
    transform: scaleX(1);
    height: 6px;
}

.promotion-carousel-image-wrapper {
    position: relative;
    width: 100%;
    height: 60%;
    overflow: hidden;
    flex-shrink: 0;
}

.promotion-carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95);
}

.promotion-carousel-card:hover .promotion-carousel-image {
    transform: scale(1.1);
    filter: brightness(1);
}

.promotion-carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(0, 82, 165, 0.1) 50%,
        rgba(0, 61, 122, 0.3) 100%);
    z-index: 1;
    transition: all 0.5s ease;
}

.promotion-carousel-card:hover .promotion-carousel-overlay {
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(0, 82, 165, 0.15) 50%,
        rgba(0, 61, 122, 0.4) 100%);
}

.promotion-carousel-content {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        var(--white) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 3px solid rgba(212, 197, 169, 0.2);
    position: relative;
}

.promotion-carousel-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--medical-blue) 0%, 
        var(--gold-accent) 50%, 
        var(--gold-rich) 100%);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(201, 169, 97, 0.4);
}

.promotion-carousel-card:hover .promotion-carousel-content {
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(255, 255, 255, 0.98) 100%);
    border-top-color: rgba(201, 169, 97, 0.4);
}

.promotion-carousel-card:hover .promotion-carousel-content::before {
    transform: scaleX(1);
}

.promotion-carousel-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--medical-blue);
    margin: 0 0 1rem 0;
    line-height: 1.3;
    letter-spacing: -0.3px;
    background: linear-gradient(135deg, var(--medical-blue) 0%, var(--gold-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

.promotion-carousel-card:hover .promotion-carousel-title {
    filter: drop-shadow(0 2px 8px rgba(201, 169, 97, 0.3));
}

.promotion-carousel-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
    font-weight: 400;
}

.promotion-carousel-card-no-image {
    min-height: 300px;
}

.promotion-carousel-card-no-image .promotion-carousel-content {
    border-top: none;
    background: var(--white);
}

.promotion-carousel-card-no-image .promotion-carousel-content::before {
    display: none;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid rgba(212, 197, 169, 0.3);
    color: var(--medical-blue);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: linear-gradient(135deg, var(--medical-blue) 0%, var(--medical-blue-dark) 100%);
    color: var(--white);
    border-color: var(--gold-accent);
    box-shadow: var(--shadow-medium);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev {
    left: -28px;
}

.carousel-btn-next {
    right: -28px;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

/* Reviews */
.reviews {
    padding: 2.75rem 0;
    background-color: var(--cold-gray-light);
}

.reviews-title {
    font-family: 'Playfair Display', serif;
    text-align: center;
    color: var(--medical-blue);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.reviews-title::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--medical-blue), var(--gold-accent));
    border-radius: 2px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.35rem;
    margin-bottom: 1.75rem;
}

.review-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 36px;
    box-shadow: var(--shadow-luxury);
    border: 2px solid rgba(212, 197, 169, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, 
        var(--medical-blue) 0%, 
        var(--gold-accent) 50%, 
        var(--gold-rich) 100%);
    transform: scaleY(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 2px 0 10px rgba(201, 169, 97, 0.3);
}

.review-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.review-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 
        var(--shadow-strong),
        0 0 50px rgba(201, 169, 97, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(201, 169, 97, 0.4);
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.98) 100%);
}

.review-card:hover::before {
    transform: scaleY(1);
    width: 6px;
}

.review-card:hover::after {
    opacity: 1;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--cold-gray-light);
    gap: 1rem;
}

.review-author-info {
    flex: 1;
    min-width: 0;
}

.review-author {
    display: block;
    background: linear-gradient(135deg, var(--medical-blue) 0%, var(--gold-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.2px;
    transition: all 0.3s ease;
}

.review-card:hover .review-author {
    filter: drop-shadow(0 2px 6px rgba(201, 169, 97, 0.3));
}

.review-stars {
    font-size: 1rem;
    background: linear-gradient(135deg, #FFD700 0%, var(--gold-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.review-date {
    color: var(--cold-gray);
    font-size: 0.85rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.review-text-wrapper {
    flex: 1;
    position: relative;
}

.review-text {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.review-text-collapsed {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-text-expanded {
    display: block;
}

.review-toggle {
    background: none;
    border: none;
    color: var(--medical-blue);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
    text-align: left;
    width: 100%;
}

.review-toggle:hover {
    color: var(--medical-blue-dark);
    text-decoration: underline;
}

.reviews-footer {
    text-align: center;
    margin-top: 1.75rem;
}

.btn-reviews {
    background: linear-gradient(135deg, 
        var(--medical-blue) 0%, 
        var(--medical-blue-dark) 50%,
        var(--medical-blue) 100%);
    background-size: 200% 100%;
    color: var(--white);
    padding: 1.125rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.0625rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        var(--shadow-soft),
        0 0 20px rgba(0, 82, 165, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.6s ease;
}

.btn-reviews:hover {
    transform: translateY(-3px);
    box-shadow: 
        var(--shadow-medium),
        0 0 30px rgba(0, 82, 165, 0.3),
        0 0 60px rgba(201, 169, 97, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background-position: 100% 0;
}

.btn-reviews:hover::before {
    left: 100%;
}

.btn-reviews::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-reviews:hover::after {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .header-right {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        align-items: center;
    }
    
    .header-contact {
        order: -1;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
        width: 100%;
        display: flex !important;
    }
    
    .nav-link {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 0.875rem;
        padding: 0.4rem 0.5rem;
    }
    
    .logo a {
        font-size: 1.5rem;
    }
    
    .header-phone {
        font-size: 0.95rem;
    }

    .main-hero {
        padding: 2rem 0 3rem;
    }
    
    .main-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .main-hero-card-large {
        min-height: 500px;
        grid-row: 1;
    }
    
    .main-hero-side {
        gap: 2rem;
    }
    
    .main-hero-card-small {
        min-height: 250px;
    }
    
    .main-hero-title {
        font-size: 2rem;
    }
    
    .main-hero-text-overlay {
        padding: 2rem 1.5rem;
    }
    
    .main-hero-card-title {
        font-size: 1.5rem;
    }
    
    .main-hero-card-content {
        padding: 2rem 1.5rem;
    }
    
    .main-hero-card-decoration,
    .main-hero-card-icon {
        font-size: 3rem;
        bottom: 1rem;
        right: 1rem;
    }

    .hero {
        border-radius: 0 0 32px 32px;
        min-height: 70vh;
    }
    
    .hero .container {
        padding: 4rem 1.5rem 3.5rem;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.0625rem;
        padding: 1rem 1.5rem;
    }
    
    .feature-card-with-image {
        min-height: 400px;
    }
    
    .feature-image-wrapper {
        height: 60%;
    }
    
    .feature-card-with-image .feature-content {
        padding: 2rem 1.5rem;
    }

    .features-grid,
    .contact-info,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .features-title {
        font-size: 2.25rem;
        margin-bottom: 2rem;
    }
    
    .features-intro {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
    
    .features-subtitle {
        font-size: 1.75rem;
    }
    
    .feature-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .feature-number {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .feature-text {
        font-size: 1rem;
    }
    
    .about-intro h2 {
        font-size: 2rem;
    }
    
    .about-main-text {
        font-size: 1.125rem;
    }
    
    .services-list li,
    .droppers-list li {
        padding-left: 2.5rem;
        font-size: 1rem;
    }
    
    .services-list li::before,
    .droppers-list li::before {
        width: 28px;
        height: 28px;
        font-size: 1.25rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        aspect-ratio: 4 / 3;
        border-radius: 16px;
    }
    
    .service-title-overlay {
        font-size: 1rem;
        padding: 1.25rem 1.5rem;
    }
    
    .promotions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .promotion-card {
        border-radius: 16px;
        min-height: 280px;
    }
    
    .promotion-title {
        font-size: 1rem;
        padding: 1.25rem 1.5rem;
    }

    .contacts-map-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contacts-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .contact-details {
        gap: 1.5rem;
    }

    .contact-item {
        padding-bottom: 1.5rem;
    }

    .map-container {
        height: 360px;
        order: -1;
    }

    .clinic-photo {
        max-height: 280px;
        border-radius: 24px;
    }

    .clinic-photo-section {
        padding: 2rem 0;
    }

    .promotions {
        padding: 3.5rem 0;
    }
    
    .promotions-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .promotions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .promotion-card {
        min-height: 400px;
    }
    
    .promotion-image-wrapper {
        height: 55%;
    }
    
    .promotion-content {
        padding: 2rem 1.5rem;
    }
    
    .promotion-title {
        font-size: 1.625rem;
    }
    
    .promotion-description {
        font-size: 1rem;
    }
    
    .promotions-footer {
        margin-top: 2rem;
    }
    
    .promotions-page {
        padding: 3rem 0;
    }
    
    .promotions-page-title {
        font-size: 2.25rem;
        margin-bottom: 2.5rem;
    }
    
    .promotion-carousel-card {
        flex: 0 0 320px;
        min-height: 450px;
    }
    
    .promotion-carousel-image-wrapper {
        height: 55%;
    }
    
    .promotion-carousel-content {
        padding: 2rem 1.5rem;
    }
    
    .promotion-carousel-title {
        font-size: 1.625rem;
    }
    
    .service-hero-section {
        padding: 2.5rem 0;
    }
    
    .service-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-hero-left {
        position: static;
    }
    
    .service-booking-card {
        padding: 2rem 1.5rem;
    }
    
    .service-booking-icons {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .service-booking-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .service-booking-title {
        font-size: 1.25rem;
    }
    
    .service-booking-text {
        font-size: 0.95rem;
    }
    
    .service-hero-title {
        font-size: 2rem;
    }
    
    .service-hero-subtitle {
        font-size: 0.95rem;
        padding: 0.4rem 0.75rem;
    }
    
    .service-hero-description p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .service-steps-section {
        padding: 2.5rem 0;
    }
    
    .service-steps {
        flex-direction: column;
        gap: 2rem;
    }
    
    .service-step-arrow {
        display: none;
    }
    
    .service-step-number {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .service-step-title {
        font-size: 1.25rem;
    }
    
    .service-step-description {
        font-size: 0.9rem;
    }
    
    .service-steps-title,
    .popular-services-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
    }
    
    .page-content {
        padding: 2.5rem 0;
    }
    
    .page-content h1 {
        font-size: 2.25rem;
    }
    
    .page-content h2 {
        font-size: 1.75rem;
        margin: 2rem 0 1rem;
    }
    
    .page-content p {
        font-size: 1rem;
    }
    
    .promotion-carousel-description {
        font-size: 1rem;
    }
    
    .carousel-btn {
        width: 48px;
        height: 48px;
    }
    
    .carousel-btn-prev {
        left: -24px;
    }
    
    .carousel-btn-next {
        right: -24px;
    }
    
    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .reviews-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .reviews-grid {
        gap: 1.15rem;
    }

    .review-card {
        padding: 1.5rem;
        border-radius: 24px;
    }

    .review-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .review-date {
        margin-left: 0;
        align-self: flex-start;
    }

    .review-text-collapsed {
        -webkit-line-clamp: 6;
    }

    .service-card {
        aspect-ratio: 1;
    }

    .service-title-overlay {
        font-size: 1rem;
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
    }

    .service-card-no-image {
        padding: 1.25rem;
    }

    .service-card-no-image h3 {
        font-size: 1rem;
    }

    .service-card-no-image p {
        font-size: 0.9rem;
    }
}

/* Service Modal */
.service-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 31, 46, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    padding: 1rem;
    animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.service-modal-content {
    background: var(--white);
    border-radius: 48px;
    max-width: 650px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 
        var(--shadow-luxury),
        0 0 80px rgba(0, 82, 165, 0.2),
        0 0 120px rgba(201, 169, 97, 0.15);
    animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(212, 197, 169, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.service-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, 
        var(--medical-blue) 0%, 
        var(--gold-accent) 50%, 
        var(--gold-rich) 100%);
    border-radius: 48px 48px 0 0;
    box-shadow: 0 2px 10px rgba(201, 169, 97, 0.4);
}

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

.service-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--text-dark);
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(212, 197, 169, 0.2);
}

.service-modal-close:hover {
    color: var(--medical-blue);
    background: var(--white);
    transform: rotate(90deg);
    box-shadow: var(--shadow-medium);
}

.modal-service-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 48px 48px 0 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-bottom: 3px solid rgba(212, 197, 169, 0.3);
}

.modal-service-info {
    padding: 2.5rem;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.98) 100%);
}

.modal-service-info h2 {
    font-family: 'Playfair Display', serif;
    color: var(--medical-blue);
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1.25rem;
    line-height: 1.3;
    letter-spacing: -0.3px;
    position: relative;
    padding-bottom: 0.75rem;
}

.modal-service-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--medical-blue), var(--gold-accent));
    border-radius: 2px;
}

.modal-service-info p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 2rem;
}

.btn-book-service {
    background: linear-gradient(135deg, 
        var(--medical-blue) 0%, 
        var(--medical-blue-dark) 50%,
        var(--medical-blue) 100%);
    background-size: 200% 100%;
    color: var(--white);
    padding: 1.25rem 2.25rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    font-size: 1.125rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        var(--shadow-soft),
        0 0 20px rgba(0, 82, 165, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-book-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.6s ease;
}

.btn-book-service::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-book-service:hover {
    transform: translateY(-3px);
    box-shadow: 
        var(--shadow-medium),
        0 0 30px rgba(0, 82, 165, 0.3),
        0 0 60px rgba(201, 169, 97, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background-position: 100% 0;
}

.btn-book-service:hover::before {
    left: 100%;
}

.btn-book-service:hover::after {
    width: 300px;
    height: 300px;
}

@media (max-width: 768px) {
    .service-modal-content {
        max-width: 100%;
        border-radius: 24px 24px 0 0;
        max-height: 90vh;
        margin: 0;
    }

    .modal-service-info {
        padding: 1.5rem;
    }

    .modal-service-info h2 {
        font-size: 1.5rem;
    }

    .modal-service-image {
        max-height: 250px;
    }
    
    .cta {
        padding: 3rem 0;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .cta p {
        font-size: 1rem;
    }
    
    .reviews-title {
        font-size: 2rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .promotions-title {
        font-size: 2rem;
    }
}

/* Telegram Mini App и очень маленькие экраны */
@media (max-width: 480px) {
    /* Оптимизация изображений */
    img {
        max-width: 100%;
        height: auto;
    }
    
    .service-image,
    .promotion-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Улучшаем touch-цели */
    .nav-link,
    .btn,
    .service-card,
    .promotion-card {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Оптимизация для безопасных зон (iPhone) */
    .header {
        padding-top: env(safe-area-inset-top, 0);
    }
    
    .footer {
        padding-bottom: env(safe-area-inset-bottom, 0);
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .header-content {
        padding: 0.75rem 0;
        gap: 0.75rem;
    }
    
    .logo a {
        font-size: 1.375rem;
    }
    
    .header-phone {
        font-size: 0.875rem;
    }
    
    .nav {
        gap: 0.5rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 0.35rem 0.4rem;
    }
    
    .main-hero {
        padding: 1.5rem 0 2rem;
    }
    
    .main-hero-card-large {
        min-height: 400px;
    }
    
    .main-hero-title {
        font-size: 1.75rem;
    }
    
    .main-hero-card-small {
        min-height: 200px;
    }
    
    .main-hero-card-title {
        font-size: 1.25rem;
    }
    
    .main-hero-card-content {
        padding: 1.5rem;
    }
    
    .service-hero-section {
        padding: 2rem 0;
    }
    
    .service-hero-title {
        font-size: 1.75rem;
    }
    
    .service-booking-card {
        padding: 1.5rem 1.25rem;
    }
    
    .service-booking-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    .service-booking-title {
        font-size: 1.125rem;
    }
    
    .service-steps-title,
    .popular-services-title {
        font-size: 1.75rem;
    }
    
    .service-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .service-step-title {
        font-size: 1.125rem;
    }
    
    .services-grid {
        gap: 1.25rem;
    }
    
    .service-card {
        border-radius: 16px;
    }
    
    .service-title-overlay {
        font-size: 0.95rem;
        padding: 1rem 1.25rem;
    }
    
    .promotions-grid {
        gap: 1.25rem;
    }
    
    .promotion-card {
        min-height: 250px;
    }
    
    .promotion-title {
        font-size: 0.95rem;
        padding: 1rem 1.25rem;
    }
    
    .features-title {
        font-size: 1.75rem;
    }
    
    .features-intro {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 1.25rem;
    }
    
    .feature-number {
        width: 35px;
        height: 35px;
        font-size: 1.25rem;
    }
    
    .feature-text {
        font-size: 0.95rem;
    }
    
    .page-content h1 {
        font-size: 2rem;
    }
    
    .page-content h2 {
        font-size: 1.5rem;
    }
    
    .page-content p {
        font-size: 0.95rem;
    }
    
    .contacts-map-wrapper {
        gap: 2rem;
    }
    
    .contacts-title {
        font-size: 1.75rem;
    }
    
    .contact-button-wrapper {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .btn-primary,
    .btn-book-service {
        padding: 1rem 1.75rem;
        font-size: 1rem;
    }
    
    .btn-reviews {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .service-modal-content {
        border-radius: 20px 20px 0 0;
        max-height: 95vh;
    }
    
    .modal-service-info {
        padding: 1.25rem;
    }
    
    .modal-service-info h2 {
        font-size: 1.25rem;
    }
    
    .modal-service-image {
        max-height: 200px;
    }
    
    .cta {
        padding: 2.5rem 0;
    }
    
    .cta h2 {
        font-size: 1.75rem;
    }
    
    .reviews-title {
        font-size: 1.75rem;
    }
    
    .review-card {
        padding: 1.25rem;
    }
    
    .review-author {
        font-size: 0.95rem;
    }
    
    .review-text {
        font-size: 0.875rem;
    }
}

/* Очень маленькие экраны (для Telegram Mini App) */
@media (max-width: 360px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .nav-link {
        font-size: 0.75rem;
        padding: 0.3rem 0.35rem;
    }
    
    .main-hero-title {
        font-size: 1.5rem;
    }
    
    .service-hero-title {
        font-size: 1.5rem;
    }
    
    .service-steps-title,
    .popular-services-title {
        font-size: 1.5rem;
    }
    
    .page-content h1 {
        font-size: 1.75rem;
    }
    
    .page-content h2 {
        font-size: 1.375rem;
    }
}

