/* Общие стили */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

/* Навигация */
header {
    background: linear-gradient(to right, #4a90e2, #50c9c3);
    color: white;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.brand-logo-link {
    text-decoration: none;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s;
}

.brand-logo:hover {
    transform: scale(1.05);
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
    transition: color 0.3s;
}

.brand-logo:hover .logo {
    color: #f1c40f;
}

.nav-logo {
    height: 60px;
}

/* Стили для гамбургер-меню */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.nav-links li a:hover {
    color: #f1c40f;
}

.nav-links li a.active {
    color: #f1c40f !important;
    font-weight: 600;
    background: rgba(241, 196, 15, 0.1);
    border-radius: 20px;
    padding: 8px 16px;
    box-shadow: 0 0 15px rgba(241, 196, 15, 0.3);
    text-shadow: 0 0 8px rgba(241, 196, 15, 0.5);
    transition: all 0.3s ease;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 2px 0;
    transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.book-now {
    background: linear-gradient(to right, #f1c40f, #ffca28);
    color: #333;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    justify-content: center;
    transition: transform 0.3s, background 0.3s;
}

.book-now:hover {
    background: linear-gradient(to right, #ffca28, #f1c40f);
    transform: scale(1.05);
}

/* Главный контент */
.main-content {
    margin-top: 100px;
    padding: 15px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Секция заголовка (Hero) */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(to right, #4a90e2, #50c9c3);
    color: white;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    margin: 0;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    margin: 20px 0;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.hero-btn {
    background: linear-gradient(to right, #1e90ff, #00f7d2);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    animation: pulse 2s infinite;
}

.hero-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, #00f7d2, #1e90ff);
}

.support-btn {
    background: linear-gradient(to right, #f1c40f, #ffca28);
    color: rgb(0, 0, 0);
}

.support-btn:hover {
    background: linear-gradient(to right, #f1c40f, #ffca28);
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); }
    50% { transform: scale(1.05); box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); }
    100% { transform: scale(1); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); }
}

/* Секция статистики */
.stats-section {
    background-color: #ffffff;
    padding: 40px 20px;
    text-align: center;
}

.stats-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 36px;
    color: #4a90e2;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Секция преимуществ (Why Choose WEPRO Team?) */
.intro {
    background-color: #f5f5f5;
    padding: 60px 20px;
    text-align: center;
}

.intro h2 {
    font-size: 32px;
    color: #4a90e2;
    margin-bottom: 40px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.feature-item {
    text-align: center;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 200px;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
    object-fit: contain;
}

.feature-item p {
    font-size: 16px;
    color: #666;
    margin: 10px 0;
    flex-grow: 1;
}

/* Секция услуг (для Services) */
.services-preview,
.services-section {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.services-preview h2,
.services-section h2 {
    font-size: 32px;
    color: #4a90e2;
    margin-bottom: 40px;
}

.services-list {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.service-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.service-item h3 {
    font-size: 24px;
    color: #4a90e2;
    margin: 15px 0;
}

.service-item p {
    font-size: 16px;
    color: #666;
    margin: 10px 0;
}

.price {
    font-size: 18px;
    color: #50c9c3;
    font-weight: bold;
}

.book-service {
    background: linear-gradient(to right, #f1c40f, #ffca28);
    border: none;
    padding: 10px 20px;
    color: #333;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    text-decoration: none;
    display: block;
    margin: 10px auto;
}

.book-service:hover {
    background: linear-gradient(to right, #ffca28, #f1c40f);
    transform: scale(1.05);
}

/* Секция Call to Action Banner */
.cta-banner {
    background: linear-gradient(to right, #4a90e2, #50c9c3);
    color: white;
    text-align: center;
    padding: 60px 20px;
    border-radius: 10px;
    margin: 40px 0;
}

.cta-banner h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Секция Testimonials */
.testimonials-section {
    background-color: #f5f5f5;
    padding: 60px 20px;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 32px;
    color: #4a90e2;
    margin-bottom: 40px;
}

.reviews-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.review-item {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.review-item p {
    font-size: 16px;
    color: #666;
    font-style: italic;
    margin: 10px 0;
}

.review-item h4 {
    font-size: 18px;
    color: #4a90e2;
    margin: 10px 0;
}

.review-rating {
    font-size: 16px;
    color: #f1c40f;
    margin: 5px 0;
}

/* Секция отзывов */
.reviews {
    background: linear-gradient(to right, #4a90e2, #50c9c3);
    padding: 60px 20px;
    text-align: center;
    color: #ffffff;
    margin-top: 1.2cm;
}

.reviews h2 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: 700;
}

.reviews-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.review-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.reviewer-initial {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 18px;
}

.reviewer-name {
    font-size: 18px;
    color: #000000;
    font-weight: 500;
}

.rating {
    font-size: 16px;
    color: #00bcd4;
    margin-bottom: 10px;
}

.review-text {
    font-size: 14px;
    color: #bdc3c7;
    line-height: 1.5;
}

/* Секция How It Works */
.how-it-works {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.how-it-works h2 {
    font-size: 32px;
    color: #4a90e2;
    margin-bottom: 40px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.step-item:hover {
    transform: translateY(-5px);
}

.step-item h3 {
    font-size: 24px;
    color: #4a90e2;
    margin-bottom: 15px;
}

.step-item p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Секция ценообразования (для Pricing) */
.pricing-section {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    margin-top: 20px;
}

.pricing-section h2 {
    font-size: 32px;
    color: #4a90e2;
    margin-bottom: 30px;
}

.pricing-content {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-content h3 {
    font-size: 24px;
    color: #50c9c3;
    margin: 20px 0 10px;
}

.pricing-content p {
    font-size: 16px;
    color: #666;
    margin: 10px 0;
}

.pricing-content ul {
    list-style: none;
    padding: 0;
    margin: 0 auto 30px;
    max-width: 600px;
}

.pricing-content li {
    font-size: 16px;
    color: #333;
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

.pricing-content li:before {
    content: "✓";
    color: #50c9c3;
    position: static;
    left: 0;
}

/* Секция "About" */
.about-section {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.about-section h2 {
    font-size: 32px;
    color: #4a90e2;
    margin-bottom: 30px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.about-content p {
    font-size: 16px;
    color: #666;
    margin: 15px 0;
    line-height: 1.6;
}

.team-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-member {
    text-align: center;
}

.team-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.team-card h4 {
    font-size: 18px;
    color: #4a90e2;
    margin: 10px 0;
}

.team-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Секция "Contact" */
.contact-section {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.contact-section h2 {
    font-size: 32px;
    color: #4a90e2;
    margin-bottom: 30px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: linear-gradient(to right, #4a90e2, #50c9c3);
    border-radius: 10px;
    color: white;
}

.contact-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 24px;
    color: #f1c40f;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: white;
}

.contact-card p {
    font-size: 16px;
    margin: 0;
    color: white;
}

.contact-card a {
    color: #f1c40f;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

.map-section {
    margin: 40px 0;
}

.map-section h2 {
    font-size: 32px;
    color: #4a90e2;
    margin-bottom: 20px;
}

.map-section iframe {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #e6f0fa 0%, #f5f5f5 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(to right, #4a90e2, #50c9c3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 40px;
    animation: gradientText 3s ease infinite;
}

@keyframes gradientText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: none;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s, transform 0.3s, border 0.3s;
    font-size: 15px;
    color: #333;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    box-shadow: 0 6px 15px rgba(74, 144, 226, 0.4);
    transform: translateY(-3px);
    border: 1px solid #4a90e2;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Иконки для полей */
.contact-form input {
    background-position: 10px center;
    background-repeat: no-repeat;
    background-size: 20px;
}

.contact-form input[name="name"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%234a90e2' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10z'/%3E%3C/svg%3E");
}

.contact-form input[name="email"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%234a90e2' viewBox='0 0 16 16'%3E%3Cpath d='M.05 3.555A2 2 0 0 1 2 2h12a2 2 0 0 1 1.95 1.555L8 8.414.05 3.555zM0 4.697v7.104l5.803-3.558L0 4.697zM6.761 8.83l-6.57 4.027A2 2 0 0 0 2 14h12a2 2 0 0 0 1.808-1.144l-6.57-4.027L8 9.586l-1.239-.757zm3.436-.586L16 11.801V4.697l-5.803 3.546z'/%3E%3C/svg%3E");
}

.contact-form input[name="phone"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%234a90e2' viewBox='0 0 16 16'%3E%3Cpath d='M3.654 1.328a.678.678 0 0 0-1.015-.063L1.605 2.3c-.483.484-.661 1.169-.45 1.77a17.568 17.568 0 0 0 4.168 6.608 17.569 17.569 0 0 0 6.608 4.168c.601.211 1.286.033 1.77-.45l1.034-1.034a.678.678 0 0 0-.063-1.015l-2.307-1.794a.678.678 0 0 0-.58-.122l-2.19.547a1.745 1.745 0 0 1-1.657-.459L5.482 8.062a1.745 1.745 0 0 1-.46-1.657l.548-2.19a.678.678 0 0 0-.122-.58L3.654 1.328zM1.884.511a1.745 1.745 0 0 1 2.612.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.678.678 0 0 0 .178.643l2.457 2.457a.678.678 0 0 0 .644.178l2.189-.547a1.745 1.745 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.634 18.634 0 0 1-7.01-4.42 18.634 18.634 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877L1.885.511z'/%3E%3C/svg%3E");
}

/* Стили для селекта */
.contact-form select {
    appearance: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234a90e2' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat right 10px center;
    background-color: #ffffff;
    background-size: 16px;
    padding-right: 40px;
}

/* Стили для кнопки */
.contact-form .form-submit {
    background: linear-gradient(to right, #4a90e2, #50c9c3);
    border: none;
    padding: 15px 30px;
    color: white;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    font-size: 16px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

.contact-form .form-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, #50c9c3, #4a90e2);
}

/* Новые стили для thank_you.html */
.thank-you-hero {
    background: linear-gradient(to right, #3498db, #2980b9);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    margin-top: 60px;
}

.thank-you-hero h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.thank-you-hero p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-content {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

.thank-you-content h2 {
    font-size: 1.8em;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thank-you-content p {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.thank-you-content a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

.thank-you-content a:hover {
    text-decoration: underline;
}

/* Секция Contact Form */
.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #e6f0fa 0%, #f5f5f5 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(to right, #4a90e2, #50c9c3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 40px;
    animation: gradientText 3s ease infinite;
}

@keyframes gradientText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    display:flex;
    justify-content:center;
    align-items:center;
    width:95%;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: none;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s, transform 0.3s, border 0.3s;
    font-size: 15px;
    color: #333;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    box-shadow: 0 6px 15px rgba(74, 144, 226, 0.4);
    transform: translateY(-3px);
    border: 1px solid #4a90e2;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Иконки для полей */
.contact-form input {
    background-position: 10px center;
    background-repeat: no-repeat;
    background-size: 20px;
}

.contact-form input[name="name"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%234a90e2' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10z'/%3E%3C/svg%3E");
}

.contact-form input[name="email"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%234a90e2' viewBox='0 0 16 16'%3E%3Cpath d='M.05 3.555A2 2 0 0 1 2 2h12a2 2 0 0 1 1.95 1.555L8 8.414.05 3.555zM0 4.697v7.104l5.803-3.558L0 4.697zM6.761 8.83l-6.57 4.027A2 2 0 0 0 2 14h12a2 2 0 0 0 1.808-1.144l-6.57-4.027L8 9.586l-1.239-.757zm3.436-.586L16 11.801V4.697l-5.803 3.546z'/%3E%3C/svg%3E");
}

.contact-form input[name="phone"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%234a90e2' viewBox='0 0 16 16'%3E%3Cpath d='M3.654 1.328a.678.678 0 0 0-1.015-.063L1.605 2.3c-.483.484-.661 1.169-.45 1.77a17.568 17.568 0 0 0 4.168 6.608 17.569 17.569 0 0 0 6.608 4.168c.601.211 1.286.033 1.77-.45l1.034-1.034a.678.678 0 0 0-.063-1.015l-2.307-1.794a.678.678 0 0 0-.58-.122l-2.19.547a1.745 1.745 0 0 1-1.657-.459L5.482 8.062a1.745 1.745 0 0 1-.46-1.657l.548-2.19a.678.678 0 0 0-.122-.58L3.654 1.328zM1.884.511a1.745 1.745 0 0 1 2.612.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.678.678 0 0 0 .178.643l2.457 2.457a.678.678 0 0 0 .644.178l2.189-.547a1.745 1.745 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.634 18.634 0 0 1-7.01-4.42 18.634 18.634 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877L1.885.511z'/%3E%3C/svg%3E");
}

/* Стили для селекта */
.contact-form select {
    appearance: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234a90e2' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat right 10px center;
    background-color: #ffffff;
    background-size: 16px;
    padding-right: 40px;
}

/* Стили для кнопки */
.contact-form .form-submit {
    background: linear-gradient(to right, #4a90e2, #50c9c3);
    border: none;
    padding: 15px 30px;
    color: white;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    font-size: 16px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

.contact-form .form-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, #50c9c3, #4a90e2);
}

/* Футер */
footer {
    background-color: #1a252f;
    color: white;
    padding: 40px 20px;
    margin-top: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    font-size: 18px;
    color: #f1c40f;
    margin-bottom: 15px;
}

.footer-section p {
    font-size: 14px;
    color: #ddd;
    margin: 5px 0;
}

.footer-section a {
    color: #ddd;
    text-decoration: none;
}

.footer-section a:hover {
    color: #f1c40f;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #3a4a5a;
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: #ddd;
}

/* Unified Footer */
.footer-unified {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    margin-top: 60px;
}

.footer-unified .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: start;
    justify-content: center;
}

@media (max-width: 1024px) {
    .footer-unified .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

.footer-unified .footer-section {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-unified .footer-section h3 {
    color: #50c9c3;
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    width: 100%;
    border-bottom: 2px solid rgba(80, 201, 195, 0.2);
    padding-bottom: 10px;
}

.contact-item,
.office-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 0;
    font-size: 14px;
    width: 100%;
    padding: 8px 0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover,
.office-item:hover {
    background: rgba(80, 201, 195, 0.1);
    padding-left: 10px;
}

.icon {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.chatbot-link {
    color: #50c9c3;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.chatbot-link:hover {
    color: #4a90e2;
    text-decoration: underline;
}

.service-areas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
    width: 100%;
}

.service-areas span {
    padding: 8px 0;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: block;
}

.service-areas span:hover {
    background: rgba(80, 201, 195, 0.1);
    padding-left: 10px;
}

.footer-unified .footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.footer-unified .footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 8px 0;
    border-radius: 6px;
    display: block;
}

.footer-unified .footer-links a:hover {
    color: #50c9c3;
    background: rgba(80, 201, 195, 0.1);
    padding-left: 10px;
}

.footer-unified .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-unified .footer-content {
        padding: 40px 20px 30px;
        gap: 30px;
        grid-template-columns: 1fr;
    }

    .footer-unified .footer-section {
        text-align: center;
        align-items: center;
    }

    .footer-unified .footer-section h3 {
        text-align: center;
    }

    .contact-item,
    .office-item {
        justify-content: center;
        text-align: center;
    }

    .service-areas {
        text-align: center;
    }

    .footer-unified .footer-links {
        align-items: center;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .footer-social {
        gap: 10px;
    }
}

.footer-unified .footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 20px;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.social-link:hover {
    color: white;
    background: rgba(80, 201, 195, 0.8);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(80, 201, 195, 0.4);
}

.social-link.facebook:hover {
    background: #1877f2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

/* WhatsApp Float Widget - Updated positioning with instant load */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 18px;
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
    transition: all 0.3s ease;
    /* Ensure immediate visibility to prevent layout shift */
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.whatsapp-button {
    background: #25D366;
    color: white;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(37, 211, 102, 0.4);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    padding: 0;
    gap: 0;
}

.whatsapp-button:hover {
    background: #20b954;
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.6);
    color: white;
    text-decoration: none;
}

.whatsapp-button i {
    font-size: 28px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* WhatsApp text - hidden on desktop for circular button */
.whatsapp-text {
    display: none;
}

/* Chatbot Loading Optimization - Prevent Layout Shift */
iframe[src*="chatbase.co"] {
    /* Smooth loading transition */
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

iframe[src*="chatbase.co"][data-loaded="true"] {
    opacity: 1;
}

/* Mobile Chatbase Full Screen Override */
@media (max-width: 768px) {
    iframe[src*="chatbase.co"] {
        width: 100vw !important;
        height: 100vh !important;
        max-width: 100vw !important;
        max-height: 100vh !important;
        top: 0 !important;
        left: 0 !important;
        position: fixed !important;
        z-index: 9999 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    /* WhatsApp Mobile Circular Button Styling */
    .whatsapp-button {
        width: 55px;
        height: 55px;
        font-size: 14px;
    }

    .whatsapp-button i {
        font-size: 34px;
    }
}

@media (max-width: 480px) {
    iframe[src*="chatbase.co"] {
        width: 100vw !important;
        height: 100vh !important;
        max-width: 100vw !important;
        max-height: 100vh !important;
        top: 0 !important;
        left: 0 !important;
        position: fixed !important;
        z-index: 9999 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    .whatsapp-button {
        width: 55px;
        height: 55px;
        font-size: 12px;
    }

    .whatsapp-button i {
        font-size: 32px;
    }
}

/* Ensure all interactive elements are clickable */
a, button, input, select, textarea, [onclick], [data-action], .clickable {
    pointer-events: auto !important;
}

/* Ensure navigation is clickable */
.nav-links a, .book-now, .menu-toggle {
    pointer-events: auto !important;
}

/* Ensure form elements are interactive */
form, form * {
    pointer-events: auto !important;
}




/* Модальное окно */
/* Стили для модального окна */
.modal {
    display: none; /* Скрыто по умолчанию */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Полупрозрачный фон */
    z-index: 1000;
    overflow: hidden; /* Запрещаем прокрутку фона */
}

.modal-content {
    background-color: #2c3e50; /* Цвет фона */
    margin: 5% auto; /* Центрирование с отступом сверху */
    padding: 20px;
    border-radius: 10px;
    width: 90%; /* Адаптивная ширина */
    max-width: 500px; /* Максимальная ширина */
    max-height: 80vh; /* Ограничение высоты */
    overflow-y: auto; /* Внутренняя прокрутка по вертикали */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    -webkit-overflow-scrolling: touch; /* Плавная прокрутка на iOS */
    color: white;
}

.modal-content form {
    touch-action: pan-y; /* Разрешаем вертикальную прокрутку на сенсорных устройствах */
}

.close {
    color: #fff;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #ddd;
    text-decoration: none;
    cursor: pointer;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
        max-height: 75vh;
    }
}

@media (max-width: 576px) {
    .modal-content {
        margin: 15% auto;
        width: 98%;
        padding: 15px;
        max-height: 70vh;
    }
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-size: 16px;
}

input, select, textarea {
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
}

button[type="submit"] {
    background-color: #00bcd4;
    color: #ffffff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #0097a7;
}

/* Стили для отображения стоимости */
#costEstimate {
    background-color: #34495e;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    margin: 10px 0;
}

#costEstimate h3 {
    margin: 0;
    font-size: 18px;
}

#costValue {
    color: #f4c430;
    font-weight: bold;
}

/* Стили для чекбоксов услуг */
.services-checkboxes {
    max-height: 200px;
    overflow-y: auto;
    background-color: #34495e;
    padding: 10px;
    border-radius: 5px;
}

.services-checkboxes label {
    display: block;
    margin: 5px 0;
    padding: 5px;
    cursor: pointer;
}

.services-checkboxes label:hover {
    background-color: #465c71;
}

.services-checkboxes input[type="checkbox"] {
    margin-right: 10px;
}

/* iPad specific fixes for header layout */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    nav {
        padding: 0 20px;
        gap: 15px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links li a {
        font-size: 14px;
        padding: 8px 12px;
    }

    .book-now {
        padding: 8px 16px;
        font-size: 14px;
        min-width: 100px;
        white-space: nowrap;
    }

    .brand-logo {
        gap: 8px;
    }

    .logo {
        font-size: 18px;
    }

    .nav-logo {
        height: 45px;
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 10px;
    }

    .brand-logo {
        gap: 5px;
    }

    .nav-logo {
        height: 40px;
    }

    .logo {
        font-size: 18px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(to right, #4a90e2, #50c9c3);
        padding: 15px 0;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links a {
        font-size: 16px;
        display: block;
        text-align: center;
        padding: 10px 20px;
    }

    .nav-links li a.active {
        background: rgba(241, 196, 15, 0.15);
        border-radius: 20px;
        margin: 0 20px;
        text-align: center;
        display: block;
    }

    .menu-toggle {
        display: flex;
        justify-content: center;
        width: 20%;
        align-items: center;
    }

    .book-now {
        padding: 8px 16px;
        font-size: 14px;
        min-width: 100px;
    }

    .main-content {
        margin-top: 80px;
        padding: 10px;
    }

    .hero {
        padding: 60px 15px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-btn {
        width: 95%;
        margin-bottom: 10px;
    }

    .stats-section {
        padding: 30px 10px;
    }

    .stats-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item h3 {
        font-size: 28px;
    }

    .stat-item p {
        font-size: 14px;
    }

    .intro {
        padding: 40px 10px;
    }

    .intro h2 {
        font-size: 26px;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-item {
        padding: 15px;
        min-height: 180px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-item p {
        font-size: 14px;
    }

    .services-preview,
    .services-section {
        padding: 40px 10px;
    }

    .services-preview h2,
    .services-section h2 {
        font-size: 26px;
    }

    .services-list {
        gap: 20px;
    }

    .service-item img {
        height: 150px;
    }

    .service-item h3 {
        font-size: 20px;
    }

    .service-item p {
        font-size: 14px;
    }

    .price {
        font-size: 16px;
    }

    .book-service {
        padding: 10px 20px;
        font-size: 14px;
    }

    .cta-banner {
        padding: 40px 10px;
    }

    .cta-banner h2 {
        font-size: 26px;
    }

    .cta-banner p {
        font-size: 14px;
    }

    .testimonials-section {
        padding: 40px 10px;
    }

    .testimonials-section h2 {
        font-size: 26px;
    }

    .reviews-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-item {
        padding: 15px;
    }

    .review-item p {
        font-size: 14px;
    }

    .review-item h4 {
        font-size: 16px;
    }

    .reviews-container {
        flex-direction: column;
        align-items: center;
    }

    .review-card {
        width: 100%;
        max-width: 250px;
    }

    .how-it-works {
        padding: 40px 10px;
    }

    .how-it-works h2 {
        font-size: 26px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-item h3 {
        font-size: 20px;
    }

    .step-item p {
        font-size: 14px;
    }

    .pricing-section {
        padding: 40px 10px;
    }

    .pricing-section h2 {
        font-size: 26px;
    }

    .pricing-content h3 {
        font-size: 20px;
    }

    .pricing-content p {
        font-size: 14px;
    }

    .pricing-content li {
        font-size: 14px;
    }

    .about-section {
        padding: 40px 10px;
    }

    .about-section h2 {
        font-size: 26px;
    }

    .about-content p {
        font-size: 14px;
    }

    .team-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team-photo {
        width: 120px;
        height: 120px;
    }

    .team-card h4 {
        font-size: 16px;
    }

    .team-card p {
        font-size: 13px;
    }

    .contact-section {
        padding: 40px 10px;
    }

    .contact-section h2 {
        font-size: 26px;
    }

    .contact-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card {
        padding: 15px;
    }

    .contact-card h3 {
        font-size: 18px;
    }

    .contact-card p {
        font-size: 14px;
    }

    .map-section {
        margin: 30px 0;
    }

    .map-section h2 {
        font-size: 26px;
    }

    .map-section iframe {
        height: 300px;
    }

    .contact-content {
        padding: 30px;
    }

    .contact-content h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .contact-form .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 10px 15px 10px 35px;
        font-size: 14px;
    }

    .contact-form .form-submit {
        padding: 12px 25px;
        font-size: 14px;
    }

    .modal-content {
        margin: 20% auto;
        width: 90%;
        max-width: 400px;
        padding: 15px;
    }

    .close {
        font-size: 24px;
    }

    .thank-you-hero {
        padding: 80px 20px;
    }

    .thank-you-hero h1 {
        font-size: 2em;
    }

    .thank-you-hero p {
        font-size: 1em;
    }

    .thank-you-content h2 {
        font-size: 1.5em;
    }

    .thank-you-content p {
        font-size: 1em;
    }
}

@media (max-width: 576px) {
    .logo {
        font-size: 16px;
    }

    .nav-logo {
        height: 30px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .book-now {
        padding: 6px 12px;
        font-size: 13px;
        min-width: 90px;
    }

    .main-content {
        margin-top: 80px;
        padding: 8px;
    }

    .hero {
        padding: 40px 10px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-buttons {
        gap: 10px;
        display: flex;
        justify-items: center;
        align-items: center;
    }

    .hero-btn {
        padding: 10px 20px;
        font-size: 13px;
        justify-content: center;
    }

    .stats-section {
        padding: 20px 8px;
    }

    .stat-item h3 {
        font-size: 24px;
    }

    .stat-item p {
        font-size: 12px;
    }

    .intro {
        padding: 30px 8px;
    }

    .intro h2 {
        font-size: 22px;
    }

    .features {
        gap: 15px;
    }

    .feature-item {
        padding: 10px;
        min-height: 160px;
    }

    .feature-icon {
        width: 120px;
        height: 90px;
    }

    .feature-item p {
        font-size: 13px;
    }

    .services-preview,
    .services-section {
        padding: 30px 8px;
    }

    .services-preview h2,
    .services-section h2 {
        font-size: 22px;
    }

    .services-list {
        gap: 15px;
    }

    .service-item img {
        height: 120px;
    }

    .service-item h3 {
        font-size: 18px;
    }

    .service-item p {
        font-size: 13px;
    }

    .price {
        font-size: 14px;
    }

    .book-service {
        padding: 8px 16px;
        font-size: 13px;
    }

    .cta-banner {
        padding: 30px 8px;
    }

    .cta-banner h2 {
        font-size: 22px;
    }

    .cta-banner p {
        font-size: 13px;
    }

    .testimonials-section {
        padding: 30px 8px;
    }

    .testimonials-section h2 {
        font-size: 22px;
    }

    .reviews-content {
        gap: 15px;
    }

    .review-item {
        padding: 10px;
    }

    .review-item p {
        font-size: 13px;
    }

    .review-item h4 {
        font-size: 15px;
    }

    .how-it-works {
        padding: 30px 8px;
    }

    .how-it-works h2 {
        font-size: 22px;
    }

    .steps {
        gap: 15px;
    }

    .step-item h3 {
        font-size: 18px;
    }

    .step-item p {
        font-size: 13px;
    }

    .pricing-section {
        padding: 30px 8px;
    }

    .pricing-section h2 {
        font-size: 22px;
    }

    .pricing-content h3 {
        font-size: 18px;
    }

    .pricing-content p {
        font-size: 13px;
    }

    .pricing-content li {
        font-size: 13px;
    }

    .about-section {
        padding: 30px 8px;
    }

    .about-section h2 {
        font-size: 22px;
    }

    .about-content p {
        font-size: 13px;
    }

    .team-photo {
        width: 100px;
        height: 100px;
    }

    .team-card h4 {
        font-size: 15px;
    }

    .team-card p {
        font-size: 12px;
    }

    .contact-section {
        padding: 30px 8px;
    }

    .contact-section h2 {
        font-size: 22px;
    }

    .contact-details {
        gap: 15px;
    }

    .contact-card {
        padding: 10px;
    }

    .contact-card h3 {
        font-size: 16px;
    }

    .contact-card p {
        font-size: 13px;
    }

    .map-section {
        margin: 20px 0;
    }

    .map-section h2 {
        font-size: 22px;
    }

    .map-section iframe {
        height: 250px;
    }

    .contact-content {
        padding: 20px;
    }

    .contact-content h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .contact-form .form-row {
        gap: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 70%;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 8px 15px 8px 30px;
        font-size: 13px;
        background-size: 18px;
        display: flex;
        justify-items: center;
        align-items: center;
    }

    .contact-form .form-submit {
        padding: 10px 20px;
        font-size: 13px;
    }

    footer {
        padding: 20px 8px;
    }

    .footer-content {
        gap: 15px;
    }

    .footer-section h3 {
        font-size: 14px;
    }

    .footer-section p {
        font-size: 11px;
    }

    .footer-bottom p {
        font-size: 10px;
    }

    .modal-content {
        margin: 30% auto;
        width: 95%;
        max-width: 350px;
        padding: 10px;
        overflow-y: auto;
        overflow-x: hidden;
        display: block;
    }

    .close {
        font-size: 20px;
    }

    .thank-you-hero {
        padding: 60px 10px;
    }

    .thank-you-hero h1 {
        font-size: 1.5em;
    }

    .thank-you-hero p {
        font-size: 0.9em;
    }

    .thank-you-content h2 {
        font-size: 1.2em;
    }

    .thank-you-content p {
        font-size: 0.9em;
    }
}

/* Секция Locations */
.locations-section {
    background-color: #f5f5f5;
    padding: 40px 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.locations-section p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.locations-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.locations-section li {
    font-size: 16px;
    color: #333;
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

.locations-section li:before {
    position: absolute;
    left: 0;
    color: #4a90e2;
}

@media (max-width: 768px) {
    .locations-section {
        padding: 30px 10px;
    }

    .locations-section p {
        font-size: 14px;
    }

    .locations-section li {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .locations-section {
        padding: 20px 8px;
    }

    .locations-section p {
        font-size: 13px;
    }

    .locations-section li {
        font-size: 13px;
    }
}
