        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #2563eb;
            --primary-dark: #1d4ed8;
            --secondary-color: #10b981;
            --accent-color: #f59e0b;
            --danger-color: #dc2626;
            --success-color: #059669;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --bg-light: #f8fafc;
            --bg-white: #ffffff;
            --border-light: #e5e7eb;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: var(--bg-light);
        }

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

        /* Header and mobile menu styles moved to header-footer.css */

        /* Contacts Section */
        .contacts {
            padding: 40px 0 80px;
        }

        .page-header {
            background: var(--bg-white);
            padding: 40px;
            margin-bottom: 50px;
            border-radius: 16px;
            box-shadow: var(--shadow-md);
        }

        .breadcrumbs {
            margin-bottom: 20px;
            font-size: 14px;
        }

        .breadcrumbs a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

        .page-title {
            font-size: 3rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .page-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 700px;
        }

        /* Contact Methods */
        .contact-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-bottom: 50px;
        }

        .contact-method {
            background: var(--bg-white);
            padding: 32px 24px;
            border-radius: 20px;
            text-align: center;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-light);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .contact-method::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        }

        .contact-method:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
            border-color: rgba(37, 99, 235, 0.2);
        }

        .contact-icon {
            font-size: 48px;
            margin-bottom: 20px;
            display: block;
        }

        .contact-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 16px;
        }

        .contact-info {
            color: var(--text-light);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .contact-action {
            background: var(--secondary-color);
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            font-weight: 700;
            font-size: 14px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .contact-action:hover {
            background: var(--success-color);
            transform: translateY(-2px);
        }

        .contact-action.secondary {
            background: var(--primary-color);
        }

        .contact-action.secondary:hover {
            background: var(--primary-dark);
        }

        /* Main Contact Section */
        .main-contact {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .contact-info-section {
            background: var(--bg-white);
            padding: 40px 32px;
            border-radius: 20px;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-light);
        }

        .contact-form-section {
            background: var(--bg-white);
            padding: 40px 32px;
            border-radius: 20px;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-light);
        }

        .section-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 24px;
            padding: 20px;
            background: var(--bg-light);
            border-radius: 16px;
            transition: all 0.3s ease;
            border: 1px solid var(--border-light);
        }

        .contact-item:hover {
            background: rgba(37, 99, 235, 0.05);
            border-color: rgba(37, 99, 235, 0.2);
        }

        .contact-item-icon {
            font-size: 24px;
            margin-right: 16px;
            width: 40px;
            text-align: center;
            flex-shrink: 0;
        }

        .contact-details h4 {
            color: var(--text-dark);
            font-weight: 700;
            margin-bottom: 4px;
            font-size: 1.1rem;
        }

        .contact-details p {
            color: var(--text-light);
            margin: 0;
            line-height: 1.5;
        }

        .contact-details a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .contact-details a:hover {
            color: var(--primary-dark);
        }

        /* Contact Form */
        .form-group {
            margin-bottom: 20px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--text-dark);
            font-size: 14px;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid var(--border-light);
            border-radius: 12px;
            font-size: 16px;
            background: var(--bg-white);
            color: var(--text-dark);
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }

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

        .form-submit {
            background: var(--secondary-color);
            color: white;
            padding: 16px 32px;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.3s ease;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .form-submit:hover {
            background: var(--success-color);
            transform: translateY(-2px);
        }

        .form-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .form-note {
            margin-top: 16px;
            font-size: 14px;
            color: var(--text-light);
            text-align: center;
            font-style: italic;
        }

        /* Working Hours */
        .working-hours {
            background: linear-gradient(135deg, #dbeafe, #bfdbfe);
            border: 2px solid var(--primary-color);
            padding: 32px;
            border-radius: 20px;
            margin-top: 32px;
        }

        .working-hours h4 {
            color: var(--primary-dark);
            margin-bottom: 20px;
            font-size: 1.3rem;
            font-weight: 700;
            text-align: center;
        }

        .hours-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 12px;
        }

        .hours-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 16px;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 12px;
            font-size: 14px;
        }

        .hours-item.today {
            background: rgba(37, 99, 235, 0.15);
            font-weight: 700;
            border: 2px solid var(--primary-color);
        }

        .hours-item.closed {
            opacity: 0.7;
        }

        .hours-special {
            text-align: center;
            margin-top: 16px;
            padding: 16px;
            background: rgba(16, 185, 129, 0.1);
            border-radius: 12px;
            border: 1px solid var(--secondary-color);
            color: var(--success-color);
            font-weight: 600;
        }

        .hours-special-link {
            color: inherit;
            text-decoration: none;
            display: block;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .hours-special-link:hover {
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        /* Map Section */
        .map-section {
            background: var(--bg-white);
            padding: 40px 32px;
            border-radius: 20px;
            box-shadow: var(--shadow-md);
            margin-bottom: 50px;
            border: 1px solid var(--border-light);
        }

        .map-header {
            text-align: center;
            margin-bottom: 32px;
        }

        .map-header h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .map-address {
            color: var(--text-light);
            font-size: 1.1rem;
        }

        .map-container {
            width: 100%;
            height: 400px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-light);
        }

        .google-map {
            width: 100%;
            height: 100%;
            border-radius: 16px;
        }

        /* OpenStreetMap custom marker styles */
        .custom-marker {
            background: transparent !important;
            border: none !important;
        }

        .leaflet-popup-content-wrapper {
            border-radius: 12px !important;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
        }

        .leaflet-popup-tip {
            background: white !important;
        }

        /* Fix anchor positioning for contact form */
        #contact-form {
            scroll-margin-top: 100px; /* Отступ для фиксированного хедера */
        }

        /* Smooth scrolling for anchor links */
        html {
            scroll-behavior: smooth;
        }


        .map-directions {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 32px;
        }

        .direction-item {
            background: var(--bg-light);
            padding: 24px;
            border-radius: 16px;
            border: 1px solid var(--border-light);
            transition: all 0.3s ease;
        }

        .direction-item:hover {
            background: rgba(37, 99, 235, 0.05);
            border-color: var(--primary-color);
        }

        .direction-title {
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

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

        /* Emergency Contact */
        .emergency-contact {
            background: linear-gradient(135deg, #fee2e2, #fecaca);
            border: 2px solid var(--danger-color);
            padding: 32px;
            border-radius: 20px;
            text-align: center;
            margin-bottom: 50px;
        }

        .emergency-contact h3 {
            color: #991b1b;
            margin-bottom: 16px;
            font-size: 1.5rem;
            font-weight: 800;
        }

        .emergency-contact p {
            color: #7f1d1d;
            margin-bottom: 20px;
        }

        .emergency-phones {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .emergency-phone {
            background: var(--danger-color);
            color: white;
            padding: 12px 24px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .emergency-phone:hover {
            background: #b91c1c;
            transform: translateY(-2px);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--success-color) 100%);
            padding: 60px 40px;
            border-radius: 20px;
            color: white;
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-section h2 {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 16px;
        }

        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 32px;
            opacity: 0.95;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .cta-btn {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 16px 32px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            gap: 8px;
        }

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

        /* Loading Animation */
        .loading-spinner {
            display: inline-block;
            width: 16px;
            height: 16px;
            border: 2px solid #ffffff;
            border-radius: 50%;
            border-top-color: transparent;
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* Success/Error Messages */
        .message {
            padding: 16px 20px;
            border-radius: 12px;
            margin-bottom: 20px;
            font-weight: 600;
            display: none;
        }

        .message.success {
            background: #d1fae5;
            color: #065f46;
            border: 1px solid #a7f3d0;
        }

        .message.error {
            background: #fee2e2;
            color: #991b1b;
            border: 1px solid #fecaca;
        }

        /* Footer */
        .footer {
            background: var(--text-dark);
            color: white;
            padding: 60px 0 32px;
        }

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

        .footer-section h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 24px;
            color: white;
        }

        .footer-section p {
            color: #d1d5db;
            line-height: 1.8;
            margin-bottom: 8px;
        }

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

        .footer-section a:hover {
            color: white;
        }

        .footer-nav {
            display: flex;
            gap: 24px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .footer-nav a {
            color: #93c5fd;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .footer-nav a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 24px;
            text-align: center;
            color: #9ca3af;
        }

        /* Mobile Responsive */
        @media (max-width: 968px) {
            .nav {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .main-contact {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            
            .contact-methods {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 16px;
            }
            
            .page-header {
                padding: 40px 24px;
            }
            
            .page-title {
                font-size: 2.5rem;
            }
            
            .contact-methods {
                grid-template-columns: 1fr;
            }
            
            .contact-info-section,
            .contact-form-section {
                padding: 32px 24px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .hours-grid {
                grid-template-columns: 1fr;
            }
            
            .map-directions {
                grid-template-columns: 1fr;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .emergency-phones {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 480px) {
            .header-content {
                padding: 12px 0;
            }
            
            .page-header {
                padding: 40px 20px;
            }
            
            .logo {
                font-size: 24px;
            }
            
            .logo-icon {
                font-size: 28px;
            }
            
            /* .phone-main стили в header-footer.css */
            
            .page-title {
                font-size: 2rem;
            }
            
            .contact-method {
                padding: 24px 20px;
            }
            
            .contact-icon {
                font-size: 40px;
            }
            
            .map-container {
                height: 300px;
            }
            
            .cta-section {
                padding: 50px 24px;
            }
            
            .cta-section h2 {
                font-size: 1.8rem;
            }
        }

        /* Animation Classes */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* High contrast mode support */
        @media (prefers-contrast: high) {
            :root {
                --border-light: #000000;
                --text-light: #000000;
            }
        }

        /* Reduced motion support */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
