/* ВЕСЬ ПРЕДЫДУЩИЙ КОД CSS ОСТАЕТСЯ ЗДЕСЬ */
/* ... (скопируйте ваш старый CSS-код) ... */

/* ДОБАВЬТЕ ЭТО В КОНЕЦ ФАЙЛА style.css */
.btn-primary:disabled {
    background-color: #c5a032;
    cursor: wait;
    opacity: 0.7;
}

/* ... (здесь весь CSS-код из предыдущего ответа) ... */
:root { --primary-color: #0a2b4c; --secondary-color: #d4af37; --text-color: #333; --bg-color: #f4f7fa; --white-color: #ffffff; --font-family: 'Montserrat', sans-serif; } * { margin: 0; padding: 0; box-sizing: border-box; } html { scroll-behavior: smooth; } body { font-family: var(--font-family); color: var(--text-color); line-height: 1.6; background-color: var(--white-color); } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } h1, h2, h3 { color: var(--primary-color); line-height: 1.3; } h1 { font-size: 3rem; } h2 { font-size: 2.4rem; text-align: center; margin-bottom: 60px; } section { padding: 90px 0; } .subtitle { font-size: 1.2rem; color: #555; max-width: 700px; margin: 15px auto 30px auto; } .btn-primary { display: inline-block; background-color: var(--secondary-color); color: var(--white-color); padding: 15px 35px; border-radius: 5px; text-decoration: none; font-weight: 600; font-size: 1.1rem; transition: all 0.3s ease; border: none; cursor: pointer; box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3); } .btn-primary:hover { background-color: #c5a032; transform: translateY(-4px); box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4); } .header { background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(10px); padding: 10px 0; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(0, 0, 0, 0.05); } .header-content { display: flex; justify-content: space-between; align-items: center; } .logo img { max-height: 50px; } .nav-menu { list-style: none; display: flex; } .nav-menu li { margin-left: 35px; } .nav-menu a { text-decoration: none; color: var(--primary-color); font-weight: 600; position: relative; padding-bottom: 5px; } .nav-menu a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 0; background-color: var(--secondary-color); transition: width 0.3s ease; } .nav-menu a:hover::after { width: 100%; } .header-contact-btn { background: var(--primary-color); color: var(--white-color); padding: 10px 20px; border-radius: 5px; text-decoration: none; font-weight: 600; transition: background-color 0.3s ease; } .header-contact-btn:hover { background-color: #08223d; } .hero { padding: 120px 0; text-align: center; color: var(--white-color); position: relative; background-image: url('src/1.jpg'); background-size: cover; background-position: center; background-attachment: fixed; } .hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(10, 43, 76, 0.7); z-index: 1; } .hero-content { position: relative; z-index: 2; } .hero h1 { color: var(--white-color); } .hero .subtitle { color: rgba(255, 255, 255, 0.9); } .animate-on-load { opacity: 0; transform: translateY(20px); animation: fadeInUp 0.8s ease forwards; } .animate-on-load:nth-child(2) { animation-delay: 0.2s; } .animate-on-load:nth-child(3) { animation-delay: 0.4s; } @keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } } .features { background-color: var(--bg-color); } .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .feature-card { background-color: var(--white-color); padding: 35px; border-radius: 10px; text-align: center; box-shadow: 0 5px 25px rgba(0,0,0,0.07); transition: transform 0.3s ease, box-shadow 0.3s ease; border-bottom: 3px solid transparent; } .feature-card:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-bottom-color: var(--secondary-color); } .feature-card h3 { margin: 20px 0 10px; font-size: 1.4rem; } .icon-circle { font-size: 3rem; line-height: 1; color: var(--primary-color); } .services { position: relative; background-image: url('src/2.jpg'); background-size: cover; background-position: center; background-attachment: fixed; color: var(--white-color); } .services::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(10, 43, 76, 0.85); } .services .container { position: relative; z-index: 2; } .services h2 { color: var(--white-color); } .service-card { max-width: 700px; margin: 0 auto; background: rgba(0, 0, 0, 0.3); backdrop-filter: blur(5px); padding: 40px; border-radius: 10px; border: 1px solid rgba(255, 255, 255, 0.2); border-left: 5px solid var(--secondary-color); } .price { font-size: 2rem; font-weight: 700; color: var(--white-color); } .price-note { margin-bottom: 25px; color: rgba(255, 255, 255, 0.8); } .service-card ul { list-style: none; } .service-card li { font-size: 1.1rem; margin-bottom: 15px; } .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .gallery-item { position: relative; overflow: hidden; border-radius: 10px; box-shadow: 0 8px 25px rgba(0,0,0,0.1); cursor: pointer; } .gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; } .gallery-item:hover img { transform: scale(1.1); } .gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); color: var(--white-color); padding: 30px 20px 20px; font-size: 1.2rem; font-weight: 600; } .process { background-color: var(--bg-color); } .process-steps { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; flex-wrap: wrap; } .step { flex-basis: 20%; text-align: center; } .step-number { width: 60px; height: 60px; background: var(--secondary-color); color: var(--white-color); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.8rem; font-weight: 700; margin: 0 auto 20px auto; box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4); } .step h3 { margin-bottom: 10px; } .step-arrow { font-size: 2.5rem; color: var(--secondary-color); margin-top: 50px; } .contact-form { max-width: 600px; margin: 40px auto 0 auto; } .form-group { position: relative; margin-bottom: 20px; } .contact-form input, .contact-form textarea { width: 100%; padding: 15px 20px 15px 50px; border-radius: 5px; border: 1px solid #ddd; font-family: var(--font-family); font-size: 1rem; transition: border-color 0.3s ease; } .contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--secondary-color); box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2); } .contact-form textarea { min-height: 120px; resize: vertical; padding-left: 20px; } .form-group::before { font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; position: absolute; left: 18px; top: 16px; color: #aaa; } .form-group:nth-child(1)::before { content: '⚖️'; } .form-group:nth-child(2)::before { content: '📧'; } .form-message { text-align: center; margin-top: 20px; padding: 15px; border-radius: 5px; display: none; } .form-message.success { background-color: #d4edda; color: #155724; display: block; } .form-message.error { background-color: #f8d7da; color: #721c24; display: block; } .footer { background-color: #061e36; color: #ccc; text-align: center; padding: 40px 0; } .footer a { color: var(--white-color); text-decoration: none; transition: color 0.3s; } .footer a:hover { color: var(--secondary-color); } .animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; } .animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); } .features-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; } .features-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; } .features-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.3s; } .features-grid .animate-on-scroll:nth-child(5) { transition-delay: 0.4s; } .features-grid .animate-on-scroll:nth-child(6) { transition-delay: 0.5s; } @media (max-width: 992px) { h1 { font-size: 2.6rem; } h2 { font-size: 2.2rem; } .nav-menu { display: none; } .process-steps { flex-direction: column; align-items: center; } .step-arrow { transform: rotate(90deg); margin: 5px 0; } } @media (max-width: 768px) { section { padding: 70px 0; } .features-grid, .gallery-grid { grid-template-columns: 1fr; } } @media (max-width: 480px) { h1 { font-size: 2.2rem; } h2 { font-size: 1.8rem; } .subtitle { font-size: 1rem; } .btn-primary, .contact-form button { width: 100%; text-align: center; } .logo img { max-height: 40px; } }