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

        body {
            font-family: 'Georgia', serif;
            color: #333;
            line-height: 1.6;
            background: #0a0a0a;
            overflow-x: hidden;
        }

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

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

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes shimmer {
            0% { background-position: -1000px 0; }
            100% { background-position: 1000px 0; }
        }

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

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

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

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.95);
            padding: 20px 5%;
            z-index: 1000;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
            backdrop-filter: blur(10px);
            animation: fadeIn 0.5s ease-in;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-size: 26px;
            font-weight: bold;
            color: #d4af37;
            letter-spacing: 3px;
            animation: slideInLeft 0.8s ease-out;
            position: relative;
        }

        .logo::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #d4af37, transparent);
            animation: shimmer 3s infinite;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 40px;
            animation: slideInRight 0.8s ease-out;
        }

        nav a {
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            letter-spacing: 1px;
            transition: all 0.3s;
            text-transform: uppercase;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #d4af37;
            transition: width 0.3s;
        }

        nav a:hover::after {
            width: 100%;
        }

        nav a:hover {
            color: #d4af37;
            transform: translateY(-2px);
        }

        .page-hero {
            margin-top: 80px;
            height: 60vh;
            background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
            animation: rotate 30s linear infinite;
        }

        .page-hero-content {
            position: relative;
            z-index: 10;
        }

        .page-hero h1 {
            font-size: 64px;
            font-weight: 300;
            letter-spacing: 6px;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease-out;
        }

        .page-hero p {
            font-size: 20px;
            letter-spacing: 3px;
            color: #d4af37;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .contact-container {
            background: #fff;
            padding: 100px 5%;
        }

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

        .contact-intro h2 {
            font-size: 42px;
            font-weight: 300;
            margin-bottom: 20px;
            letter-spacing: 3px;
            color: #333;
        }

        .contact-intro p {
            font-size: 18px;
            color: #666;
            line-height: 1.9;
        }

        .contact-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
        }

        .contact-info {
            animation: fadeInUp 0.8s ease-out;
        }

        .contact-info h3 {
            font-size: 32px;
            font-weight: 300;
            margin-bottom: 40px;
            letter-spacing: 2px;
            color: #333;
        }

        .info-item {
            display: flex;
            align-items: start;
            margin-bottom: 35px;
            padding: 25px;
            background: #f8f8f8;
            border-left: 4px solid #d4af37;
            transition: all 0.3s;
        }

        .info-item:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .info-icon {
            width: 50px;
            height: 50px;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .info-content h4 {
            font-size: 18px;
            color: #d4af37;
            margin-bottom: 8px;
            letter-spacing: 1px;
        }

        .info-content p {
            font-size: 16px;
            color: #666;
            line-height: 1.6;
        }

        .info-content a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s;
        }

        .info-content a:hover {
            color: #d4af37;
        }

        .social-links {
            display: flex;
            gap: 20px;
            margin-top: 40px;
        }

        .social-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f8f8f8;
            border: 2px solid #d4af37;
            transition: all 0.3s;
            cursor: pointer;
        }

        .social-icon:hover {
            background: #d4af37;
            transform: translateY(-5px);
        }

        .contact-form-wrapper {
            animation: fadeInUp 0.8s ease-out 0.3s both;
        }

        .contact-form {
            background: #f8f8f8;
            padding: 50px;
            border-radius: 5px;
        }

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

        .form-group label {
            display: block;
            font-size: 16px;
            color: #333;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e0e0e0;
            background: #fff;
            font-size: 16px;
            font-family: 'Georgia', serif;
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #d4af37;
        }

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

        .submit-btn {
            width: 100%;
            padding: 18px;
            background: #d4af37;
            color: #fff;
            border: none;
            font-size: 16px;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s;
            font-family: 'Georgia', serif;
            position: relative;
            overflow: hidden;
        }

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

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

        .submit-btn:hover {
            background: #c9a030;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        }

        .map-section {
            background: #1a1a1a;
            padding: 100px 5%;
        }

        .map-section h2 {
            font-size: 42px;
            font-weight: 300;
            text-align: center;
            margin-bottom: 60px;
            letter-spacing: 3px;
            color: #fff;
        }

        .map-container {
            max-width: 1400px;
            margin: 0 auto;
            height: 500px;
            background: #2a2a2a;
            border: 2px solid rgba(212, 175, 55, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .map-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .map-placeholder {
            color: #666;
            font-size: 18px;
            letter-spacing: 2px;
        }

        /* Pop-up стили */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            backdrop-filter: blur(5px);
        }

        .popup-overlay.active {
            display: flex;
            animation: fadeIn 0.3s ease-out;
        }

        .popup-content {
            background: #fff;
            padding: 60px 50px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            position: relative;
            animation: scaleIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
        }

        .popup-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .popup-close:hover {
            transform: rotate(90deg);
        }

        .popup-close::before,
        .popup-close::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 30px;
            height: 3px;
            background: #333;
            transition: background 0.3s;
        }

        .popup-close::before {
            transform: translate(-50%, -50%) rotate(45deg);
        }

        .popup-close::after {
            transform: translate(-50%, -50%) rotate(-45deg);
        }

        .popup-close:hover::before,
        .popup-close:hover::after {
            background: #d4af37;
        }

        .success-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 30px;
            animation: scaleIn 0.6s ease-out 0.3s both;
        }

        .popup-content h3 {
            font-size: 32px;
            font-weight: 300;
            color: #333;
            margin-bottom: 20px;
            letter-spacing: 2px;
            animation: slideDown 0.6s ease-out 0.5s both;
        }

        .popup-content p {
            font-size: 17px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 35px;
            animation: fadeInUp 0.6s ease-out 0.7s both;
        }

        .popup-btn {
            display: inline-block;
            padding: 15px 50px;
            background: #d4af37;
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: all 0.3s;
            border: 2px solid #d4af37;
            cursor: pointer;
            animation: fadeInUp 0.6s ease-out 0.9s both;
        }

        .popup-btn:hover {
            background: transparent;
            color: #d4af37;
            transform: translateY(-2px);
        }

        footer {
            background: #000;
            color: #fff;
            padding: 80px 5%;
            text-align: center;
        }

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

        .footer-section {
            animation: fadeInUp 0.8s ease-out;
        }

        .footer-section h3 {
            font-size: 20px;
            margin-bottom: 25px;
            color: #d4af37;
            letter-spacing: 2px;
        }

        .footer-section p,
        .footer-section a {
            color: #999;
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: all 0.3s;
        }

        .footer-section a:hover {
            color: #d4af37;
            transform: translateX(5px);
        }

        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            color: #666;
            font-size: 14px;
            letter-spacing: 1px;
        }

        @media (max-width: 768px) {
            .page-hero h1 {
                font-size: 42px;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .contact-form {
                padding: 30px;
            }

            nav ul {
                gap: 20px;
            }

            nav a {
                font-size: 12px;
            }

            .popup-content {
                padding: 40px 30px;
            }
        }