:root {
    --primary-color: #0d7377;
    --primary-dark: #095456;
    --primary-light: #14a3a8;
    --secondary-color: #1a5f7a;
    --accent-color: #32b5b0;
    --text-dark: #2c3e50;
    --text-light: #5a6c7d;
    --text-muted: #8b9cb5;
    --bg-light: #f8fafb;
    --bg-section: #eef5f6;
    --white: #ffffff;
    --border-color: #e1e8ed;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --shadow-sm: 0 2px 8px rgba(13, 115, 119, 0.08);
    --shadow-md: 0 4px 20px rgba(13, 115, 119, 0.12);
    --shadow-lg: 0 8px 40px rgba(13, 115, 119, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--white);
}

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

/* Header */
.header-2b07b7 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.header-2b07b7.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner-1dace2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo-c4ae76 {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon-eb2517 {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
}

.logo-text-b2679f {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-ac76d8 {
    display: flex;
    gap: 8px;
}

.nav-ac76d8 a {
    padding: 8px 16px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-ac76d8 a:hover {
    color: var(--primary-color);
    background: var(--bg-section);
}

.header-contact-a05b8f {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone-1bd8a0 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.header-phone-1bd8a0 i {
    font-size: 18px;
}

.mobile-menu-btn-e34f91 {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
}

/* Hero Section */
.hero-1f795f {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-section) 100%);
    position: relative;
    overflow: hidden;
}

.hero-1f795f::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(13, 115, 119, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-inner-0b729f {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content-a821df {
    position: relative;
    z-index: 1;
}

.hero-badge-40f212 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.hero-badge-40f212 i {
    color: var(--success-color);
}

.hero-title-2a7c9e {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-title-2a7c9e span {
    color: var(--primary-color);
}

.hero-desc-449851 {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-btns-4e4f54 {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-4bfa6f {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary-3a4deb {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(13, 115, 119, 0.3);
}

.btn-primary-3a4deb:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 115, 119, 0.4);
}

.btn-outline-9529e0 {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-9529e0:hover {
    background: var(--primary-color);
    color: var(--white);
}

.hero-stats-2713de {
    display: flex;
    gap: 40px;
}

.stat-item-6b2a18 {
    text-align: center;
}

.stat-number-7a4053 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label-9398d8 {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
}

.hero-image-675e75 {
    position: relative;
    z-index: 1;
}

.hero-img-wrapper-b03d62 {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-lg);
    padding: 20px;
    position: relative;
}

.hero-img-placeholder-131fa3 {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 80px;
}

.hero-float-card-e59dbe {
    position: absolute;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-float-card-e59dbe.card-1-03d6ee {
    top: 20px;
    left: -40px;
}

.hero-float-card-e59dbe.card-2-7e0ce3 {
    bottom: 40px;
    right: -30px;
}

.float-icon-f7ca9f {
    width: 45px;
    height: 45px;
    background: var(--bg-section);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
}

.float-text-84623f h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.float-text-84623f p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Section Common Styles */
.section-46af70 {
    padding: 100px 0;
}

.section-alt-5d7514 {
    background: var(--bg-light);
}

.section-header-9a6808 {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge-9073ee {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(13, 115, 119, 0.1), rgba(50, 181, 176, 0.1));
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title-955fcd {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-desc-1b4774 {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Services Section */
.services-grid-7a7a20 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card-307e3e {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-card-307e3e:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.service-icon-bcdf15 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: var(--white);
}

.service-card-307e3e h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-card-307e3e p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Advantages Section */
.advantages-wrapper-40bae7 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.advantages-image-e01107 {
    position: relative;
}

.advantages-img-main-da08ed {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 100px;
}

.advantages-badge-4693f7 {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.advantages-badge-4693f7 .number-59a33c {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.advantages-badge-4693f7 .text-97b1ae {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
}

.advantages-list-e46dcf {
    display: grid;
    gap: 24px;
}

.advantage-item-1db659 {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.advantage-item-1db659:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.advantage-icon-4ab428 {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: linear-gradient(135deg, rgba(13, 115, 119, 0.1), rgba(50, 181, 176, 0.1));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 22px;
}

.advantage-content-600e86 h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.advantage-content-600e86 p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Process Section */
.process-timeline-70d6a3 {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 20px;
}

.process-timeline-70d6a3::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.process-step-c58243 {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
    max-width: 200px;
}

.step-number-7cbba1 {
    width: 90px;
    height: 90px;
    background: var(--white);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.process-step-c58243 h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.process-step-c58243 p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* About Section */
.about-wrapper-c4a19d {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-07e81b {
    position: relative;
}

.about-img-placeholder-631bff {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-img-placeholder-631bff img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience-2f3431 {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 25px 35px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-experience-2f3431 .years-ead6c8 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.about-experience-2f3431 .text-97b1ae {
    font-size: 14px;
    margin-top: 4px;
}

.about-content-11bb9b h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-intro-f4b9ac {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.about-text-97f321 {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-features-1a1b33 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 30px;
}

.about-feature-160658 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-dark);
}

.about-feature-160658 i {
    color: var(--success-color);
    font-size: 16px;
}

/* Cases Section */
.cases-grid-568e75 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.case-card-201337 {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.case-card-201337:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.case-image-edb992 {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.case-image-edb992 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.case-card-201337:hover .case-image-edb992 img {
    transform: scale(1.05);
}

.case-overlay-6a5d53 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 115, 119, 0.8), transparent);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.case-card-201337:hover .case-overlay-6a5d53 {
    opacity: 1;
}

.case-overlay-6a5d53 span {
    color: var(--white);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.case-content-fa4bfd {
    padding: 24px;
}

.case-content-fa4bfd h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.case-content-fa4bfd p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* News Section */
.news-grid-301481 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card-d76c18 {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.news-card-d76c18:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.news-image-a341f5 {
    height: 200px;
    overflow: hidden;
}

.news-image-a341f5 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card-d76c18:hover .news-image-a341f5 img {
    transform: scale(1.05);
}

.news-content-069297 {
    padding: 24px;
}

.news-meta-2664eb {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.news-meta-2664eb span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-content-069297 h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-content-069297 p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-link-d56d38 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    margin-top: 16px;
    text-decoration: none;
    transition: var(--transition);
}

.news-link-d56d38:hover {
    gap: 10px;
}

/* FAQ Section */
.faq-wrapper-c789d3 {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item-13137c {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-question-cdb206 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question-cdb206:hover {
    background: var(--bg-light);
}

.faq-question-cdb206 h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-question-cdb206 h4 .q-badge-803797 {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
}

.faq-question-cdb206 i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item-13137c.active .faq-question-cdb206 i {
    transform: rotate(180deg);
}

.faq-answer-9c0194 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item-13137c.active .faq-answer-9c0194 {
    max-height: 500px;
}

.faq-answer-inner-ece08b {
    padding: 0 24px 20px;
    padding-left: 64px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}

/* Testimonials Section */
.testimonials-grid-8dcce5 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card-8dd639 {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition);
}

.testimonial-card-8dd639:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.testimonial-quote-e24344 {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 50px;
    color: var(--bg-section);
}

.testimonial-rating-4a74b8 {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-rating-4a74b8 i {
    color: var(--warning-color);
    font-size: 16px;
}

.testimonial-text-b9c346 {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.testimonial-author-c3db9e {
    display: flex;
    align-items: center;
    gap: 14px;
}

.reviewer-avatar-f90bc5 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info-714068 h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.author-info-714068 p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Contact Section */
.contact-wrapper-0a1cb1 {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-info-09e720 {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 50px;
    color: var(--white);
}

.contact-info-09e720 h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-info-09e720 > p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-items-8e04f0 {
    display: grid;
    gap: 28px;
}

.contact-item-af7e2b {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item-icon-92647d {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-item-content-3bff9c h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-item-content-3bff9c p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-social-a4b1f0 {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-social-a4b1f0 h5 {
    font-size: 14px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.social-links-0145b5 {
    display: flex;
    gap: 12px;
}

.social-links-0145b5 a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
}

.social-links-0145b5 a:hover {
    background: var(--white);
    color: var(--primary-color);
}

.contact-form-3d0fd8 {
    padding: 50px;
}

.contact-form-3d0fd8 h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-form-3d0fd8 > p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.form-grid-06c5d1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group-c8bea3 {
    margin-bottom: 20px;
}

.form-group-c8bea3.full-width-803648 {
    grid-column: span 2;
}

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

.form-group-c8bea3 input,
.form-group-c8bea3 textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 15px;
    color: var(--text-dark);
    transition: var(--transition);
    font-family: inherit;
}

.form-group-c8bea3 input:focus,
.form-group-c8bea3 textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 115, 119, 0.1);
}

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

.form-submit-5d4fb9 {
    margin-top: 10px;
}

.form-submit-5d4fb9 .btn-4bfa6f {
    width: 100%;
    justify-content: center;
}

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

.footer-main-6db9b5 {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-68481c .logo-c4ae76 {
    margin-bottom: 20px;
}

.footer-brand-68481c .logo-icon-eb2517 {
    background: linear-gradient(135deg, var(--primary-light), var(--accent-color));
}

.footer-brand-68481c .logo-text-b2679f {
    color: var(--white);
}

.footer-brand-68481c p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 24px;
}

.footer-certifications-573b60 {
    display: flex;
    gap: 12px;
}

.certification-badge-ae73ba {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent-color);
}

.footer-column-b8bab6 h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-column-b8bab6 ul {
    list-style: none;
}

.footer-column-b8bab6 ul li {
    margin-bottom: 12px;
}

.footer-column-b8bab6 ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column-b8bab6 ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-links-e496a7 {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links-e496a7 h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--white);
}

.friend-links-0a1deb {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.friend-links-0a1deb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: var(--transition);
}

.friend-links-0a1deb a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
}

.footer-bottom-0b5c06 {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-0b5c06 p {
    font-size: 13px;
    opacity: 0.7;
}

.footer-bottom-links-c3072c {
    display: flex;
    gap: 24px;
}

.footer-bottom-links-c3072c a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.footer-bottom-links-c3072c a:hover {
    color: var(--accent-color);
}

/* Back to Top */
.back-to-top-332b5f {
    position: fixed;
    bottom: 180px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top-332b5f.visible-3c709f {
    opacity: 1;
    visibility: visible;
}

.back-to-top-332b5f:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Mobile Menu */
.mobile-menu-125cea {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.mobile-menu-125cea.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-125cea a {
    display: block;
    padding: 12px 16px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mobile-menu-125cea a:hover {
    background: var(--bg-section);
    color: var(--primary-color);
}

/* Trust Badges */
.trust-section-ad3dd4 {
    background: var(--white);
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
}

.trust-badges-807e6d {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-badge-f87b43 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 14px;
}

.trust-badge-f87b43 i {
    font-size: 24px;
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-ac76d8 {
        display: none;
    }

    .mobile-menu-btn-e34f91 {
        display: block;
    }

    .header-phone-1bd8a0 {
        display: none;
    }

    .hero-inner-0b729f {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image-675e75 {
        display: none;
    }

    .hero-btns-4e4f54 {
        justify-content: center;
    }

    .hero-stats-2713de {
        justify-content: center;
    }

    .services-grid-7a7a20 {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantages-wrapper-40bae7 {
        grid-template-columns: 1fr;
    }

    .advantages-image-e01107 {
        order: -1;
    }

    .about-wrapper-c4a19d {
        grid-template-columns: 1fr;
    }

    .about-image-07e81b {
        order: -1;
    }

    .cases-grid-568e75 {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid-301481 {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid-8dcce5 {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper-0a1cb1 {
        grid-template-columns: 1fr;
    }

    .footer-main-6db9b5 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section-46af70 {
        padding: 70px 0;
    }

    .hero-1f795f {
        padding: 120px 0 70px;
    }

    .hero-title-2a7c9e {
        font-size: 32px;
    }

    .hero-desc-449851 {
        font-size: 16px;
    }
    .hero-image-675e75{
        display: none;
    }
    .hero-stats-2713de {
        gap: 24px;
    }

    .stat-number-7a4053 {
        font-size: 28px;
    }

    .section-title-955fcd {
        font-size: 28px;
    }

    .services-grid-7a7a20 {
        grid-template-columns: 1fr;
    }

    .process-timeline-70d6a3 {
        flex-direction: column;
        gap: 30px;
        padding: 0;
    }

    .process-timeline-70d6a3::before {
        display: none;
    }

    .process-step-c58243 {
        max-width: 100%;
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 20px;
    }

    .step-number-7cbba1 {
        min-width: 60px;
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin: 0;
    }

    .cases-grid-568e75 {
        grid-template-columns: 1fr;
    }

    .news-grid-301481 {
        grid-template-columns: 1fr;
    }

    .testimonials-grid-8dcce5 {
        grid-template-columns: 1fr;
    }

    .form-grid-06c5d1 {
        grid-template-columns: 1fr;
    }

    .form-group-c8bea3.full-width-803648 {
        grid-column: span 1;
    }

    .contact-info-09e720,
    .contact-form-3d0fd8 {
        padding: 30px;
    }

    .footer-main-6db9b5 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-0b5c06 {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .trust-badges-807e6d {
        gap: 30px;
    }
    .back-to-top-332b5f{
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-btns-4e4f54 {
        flex-direction: column;
    }

    .btn-4bfa6f {
        width: 100%;
        justify-content: center;
    }

    .about-features-1a1b33 {
        grid-template-columns: 1fr;
    }
}