/* ==================== CSS Variables ==================== */
:root {
    --primary-color: #0056b3;
    --primary-dark: #004494;
    --primary-light: #e7f1ff;
    --secondary-color: #28a745;
    --secondary-dark: #218838;
    --accent-color: #17a2b8;
    --text-color: #333333;
    --text-light: #666666;
    --text-lightest: #999999;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-dark: #2c3e50;
    --border-color: #e9ecef;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --border-radius-lg: 16px;
}

/* ==================== Reset & Base ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Arial, 'Microsoft YaHei', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.section-padding-347c88 {
    padding: 80px 0;
}

.section-title-1dd598 {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-1dd598 h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title-1dd598 h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-title-1dd598 p {
    font-size: 18px;
    color: var(--text-light);
    margin-top: 20px;
}

.section-subtitle-9d53e1 {
    display: block;
    font-size: 14px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}

/* ==================== Header ==================== */
.header-274762 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header-274762.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.header-inner-5c9f8b {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-7bbeaa {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-7bbeaa i {
    font-size: 32px;
}

.nav-menu-017273 {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link-0ff2b2 {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    padding: 8px 0;
}

.nav-link-0ff2b2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link-0ff2b2:hover::after,
.nav-link-0ff2b2.active::after {
    width: 100%;
}

.nav-link-0ff2b2:hover {
    color: var(--primary-color);
}

.header-cta-ccb4ee {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-number-34d556 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
}

.btn-dea944 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary-8ad331 {
    background: var(--primary-color);
    color: var(--bg-white);
}

.btn-primary-8ad331:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary-e0dbd6 {
    background: var(--secondary-color);
    color: var(--bg-white);
}

.btn-secondary-e0dbd6:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-3641af {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-3641af:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

/* Mobile Menu Toggle */
.menu-toggle-ab98cf {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle-ab98cf span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* ==================== Hero Section ==================== */
.hero-1dbe91 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #003d80 100%);
    padding-top: 80px;
    overflow: hidden;
}

.hero-1dbe91::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../imgs/banner.jpg') center / cover;
    opacity: 0.2;
}

.hero-content-5dfae9 {
    position: relative;
    z-index: 1;
    align-items: center;
    text-align: center;
    max-width: 600px;
}

.hero-text-0a7d5f h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text-0a7d5f p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons-fca8f7 {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-buttons-fca8f7 .btn-dea944 {
    padding: 15px 35px;
}

.hero-buttons-fca8f7 .btn-secondary-e0dbd6 {
    background: var(--bg-white);
    color: var(--primary-color);
}

.hero-buttons-fca8f7 .btn-secondary-e0dbd6:hover {
    background: var(--primary-light);
}

.hero-form-073654 {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-form-073654 h3 {
    font-size: 24px;
    color: var(--text-color);
    margin-bottom: 10px;
    text-align: center;
}

.hero-form-073654 > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 25px;
}

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

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

.form-group-548152 input,
.form-group-548152 select,
.form-group-548152 textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: var(--bg-white);
}

.form-group-548152 input:focus,
.form-group-548152 select:focus,
.form-group-548152 textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.1);
}

.hero-form-073654 .btn-dea944 {
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

/* Trust Badges */
.trust-badges-726ba1 {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-badge-e47cfa {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.trust-badge-e47cfa i {
    font-size: 20px;
    color: var(--secondary-color);
}

/* ==================== Service Advantages ==================== */
.advantages-805a7f {
    background: var(--bg-light);
}

.advantages-grid-f417f2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.advantage-card-324542 {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.advantage-card-324542::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: var(--transition);
}

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

.advantage-card-324542:hover::before {
    transform: scaleX(1);
}

.advantage-icon-5c4447 {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.advantage-card-324542:hover .advantage-icon-5c4447 {
    background: var(--primary-color);
}

.advantage-icon-5c4447 i {
    font-size: 32px;
    color: var(--primary-color);
    transition: var(--transition);
}

.advantage-card-324542:hover .advantage-icon-5c4447 i {
    color: var(--bg-white);
}

.advantage-card-324542 h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

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

/* ==================== Service Content ==================== */
.services-grid-3d3f97 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card-c8b1ea {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.service-image-29c90c {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-image-29c90c img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card-c8b1ea:hover .service-image-29c90c img {
    transform: scale(1.1);
}

.service-overlay-a9feb0 {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-content-bd2235 {
    padding: 30px;
}

.service-content-bd2235 h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.service-content-bd2235 p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features-ed304c {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.service-feature-e518e3 {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-light);
    background: var(--bg-light);
    padding: 6px 12px;
    border-radius: 15px;
}

.service-feature-e518e3 i {
    color: var(--secondary-color);
    font-size: 12px;
}

.service-link-81ebe0 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
}

.service-link-81ebe0:hover {
    gap: 12px;
}

/* ==================== Process Flow ==================== */
.process-8d2ea1 {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.process-8d2ea1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../imgs/banner2.jpg') center / cover;
    opacity: 0.2;
}

.process-8d2ea1 .section-title-1dd598 h2 {
    color: var(--bg-white);
}

.process-8d2ea1 .section-title-1dd598 p {
    color: rgba(255, 255, 255, 0.7);
}

.process-steps-fa3217 {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.process-step-a454ba {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.process-step-a454ba::after {
    content: '';
    position: absolute;
    top: 50px;
    right: -50%;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
}

.process-step-a454ba:last-child::after {
    display: none;
}

.step-number-357ee9 {
    width: 100px;
    height: 100px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.step-number-357ee9 span {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
}

.step-icon-8c8eb5 {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 16px;
}

.process-step-a454ba h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 15px;
}

.process-step-a454ba p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* ==================== About Us ==================== */
.about-content-f3c655 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-06889c {
    position: relative;
}

.about-image-06889c img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-image-06889c::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--primary-color);
    border-radius: var(--border-radius-lg);
    z-index: -1;
}

.about-text-28109d h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.about-text-28109d h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.about-text-28109d .subtitle-84ed13 {
    display: block;
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.about-text-28109d p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-stats-6f827d {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.stat-item-3c816d {
    text-align: center;
}

.stat-item-3c816d .number-56dc92 {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-item-3c816d .label-e1e88c {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
}

/* ==================== Product Cases ==================== */
.cases-grid-ff8051 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.case-card-30fdb1 {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.case-card-30fdb1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.case-card-30fdb1:hover img {
    transform: scale(1.1);
}

.case-overlay-07ae86 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--bg-white);
}

.case-overlay-07ae86 h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.case-overlay-07ae86 p {
    font-size: 13px;
    opacity: 0.8;
}

/* ==================== News Section ==================== */
.news-ac6553 {
    background: var(--bg-light);
}

.news-grid-f0a5df {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card-aadba1 {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.news-image-314e38 {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

.news-card-aadba1:hover .news-image-314e38 img {
    transform: scale(1.1);
}

.news-meta-516b1e {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--bg-white);
}

.news-meta-516b1e span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-content-97caf7 {
    padding: 25px;
}

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

.news-content-97caf7 h3 a:hover {
    color: var(--primary-color);
}

.news-content-97caf7 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;
}

/* ==================== FAQ Section ==================== */
.faq-list-8680d9 {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-3bb9f6 {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question-382db8 {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

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

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

.faq-question-382db8 h4 i {
    color: var(--primary-color);
    font-size: 18px;
}

.faq-toggle-3083bd {
    width: 30px;
    height: 30px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item-3bb9f6.active .faq-toggle-3083bd {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: rotate(180deg);
}

.faq-answer-d0a9d0 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-content-9559e5 {
    padding: 0 30px 25px 60px;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-item-3bb9f6.active .faq-answer-d0a9d0 {
    max-height: 500px;
}

/* ==================== Reviews Section ==================== */
.reviews-d2440f {
    background: var(--bg-dark);
}

.reviews-d2440f .section-title-1dd598 h2 {
    color: var(--bg-white);
}

.reviews-d2440f .section-title-1dd598 p {
    color: rgba(255, 255, 255, 0.7);
}

.reviews-grid-664c57 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card-178272 {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    position: relative;
}

.review-card-178272::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    color: var(--primary-light);
    font-family: Georgia, serif;
    line-height: 1;
}

.review-header-1833f0 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

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

.reviewer-info-0e4f67 h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 4px;
}

.reviewer-info-0e4f67 span {
    font-size: 14px;
    color: var(--text-lightest);
}

.review-stars-945444 {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
}

.review-stars-945444 i {
    color: #ffc107;
    font-size: 14px;
}

.review-content-d06b18 {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

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

.contact-info-ccb9fa {
    background: var(--primary-color);
    padding: 50px;
    color: var(--bg-white);
}

.contact-info-ccb9fa h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info-ccb9fa > p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-items-00e48f {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item-83f005 {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-item-83f005 i {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item-text-ea7a4f h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-item-text-ea7a4f p {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-form-section-22d781 {
    padding: 50px;
}

.contact-form-section-22d781 h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

.contact-form-section-22d781 > p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-form-71c4f5 .form-row-a6d357 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form-71c4f5 .form-group-548152 {
    margin-bottom: 20px;
}

.contact-form-71c4f5 .btn-dea944 {
    width: 100%;
}
/* Flink */
.flink-section-b00ce8 {
    background: white;
    color: #2d3748;
    padding: 30px 0;
}
.flink-header-4dd934{
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 10px;
}
.flink-section-b00ce8 li{
    list-style: none;
    display: inline;
    padding-right: 20px;
}
.flink-section-b00ce8 a{
    color: #718096;
    text-decoration: none;
}
/* ==================== Footer ==================== */
.footer-575efc {
    background: var(--bg-dark);
    color: var(--bg-white);
    padding: 60px 0 30px;
}

.footer-content-da89f5 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand-e74ebf {
    max-width: 300px;
}

.footer-brand-e74ebf .logo-7bbeaa {
    color: var(--bg-white);
    margin-bottom: 20px;
}

.footer-brand-e74ebf p {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social-377a0c {
    display: flex;
    gap: 12px;
}

.footer-social-377a0c a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
}

.footer-social-377a0c a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-column-9f61b4 h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-column-9f61b4 h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-links-7da275 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-7da275 a {
    font-size: 15px;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links-7da275 a:hover {
    opacity: 1;
    padding-left: 8px;
    color: var(--primary-color);
}

.footer-bottom-76e43d {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-76e43d p {
    font-size: 14px;
    opacity: 0.7;
}

.footer-bottom-links-048e63 {
    display: flex;
    gap: 25px;
}

.footer-bottom-links-048e63 a {
    font-size: 14px;
    opacity: 0.7;
}

.footer-bottom-links-048e63 a:hover {
    opacity: 1;
}

/* ==================== Mobile Responsive ==================== */
@media (max-width: 1024px) {
    .hero-content-5dfae9 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text-0a7d5f h1 {
        font-size: 38px;
    }

    .advantages-grid-f417f2,
    .services-grid-3d3f97,
    .news-grid-f0a5df,
    .reviews-grid-664c57 {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .about-content-f3c655 {
        grid-template-columns: 1fr;
    }

    .about-image-06889c {
        order: -1;
    }

    .contact-wrapper-5ea299 {
        grid-template-columns: 1fr;
    }

    .footer-content-da89f5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-padding-347c88 {
        padding: 60px 0;
    }

    .section-title-1dd598 h2 {
        font-size: 28px;
    }

    .menu-toggle-ab98cf {
        display: flex;
    }

    .nav-menu-017273 {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        transform: translateY(-150%);
        transition: var(--transition);
        gap: 0;
    }

    .nav-menu-017273.active {
        transform: translateY(0);
    }

    .nav-item-7201a5 {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link-0ff2b2 {
        display: block;
        padding: 15px 0;
    }

    .header-cta-ccb4ee {
        display: none;
    }

    .hero-1dbe91 {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-text-0a7d5f h1 {
        font-size: 32px;
    }

    .hero-form-073654 {
        padding: 30px 25px;
    }

    .advantages-grid-f417f2,
    .services-grid-3d3f97,
    .news-grid-f0a5df,
    .reviews-grid-664c57,
    .cases-grid-ff8051 {
        grid-template-columns: 1fr;
    }

    .process-steps-fa3217 {
        flex-direction: column;
        gap: 40px;
    }

    .process-step-a454ba::after {
        display: none;
    }

    .about-stats-6f827d {
        flex-wrap: wrap;
        justify-content: center;
    }

    .faq-question-382db8 {
        padding: 20px;
    }

    .faq-answer-content-9559e5 {
        padding: 0 20px 20px 20px;
    }

    .footer-content-da89f5 {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand-e74ebf {
        max-width: 100%;
    }

    .footer-social-377a0c {
        justify-content: center;
    }

    .footer-column-9f61b4 h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom-76e43d {
        flex-direction: column;
        text-align: center;
    }

    .contact-info-ccb9fa,
    .contact-form-section-22d781 {
        padding: 40px 25px;
    }

    .contact-form-71c4f5 .form-row-a6d357 {
        grid-template-columns: 1fr;
    }

    .trust-badges-726ba1 {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons-fca8f7 {
        flex-direction: column;
    }

    .hero-buttons-fca8f7 .btn-dea944 {
        width: 100%;
    }

    .about-text-28109d h2 {
        font-size: 28px;
    }

    .contact-info-ccb9fa h3 {
        font-size: 26px;
    }
}

/* ==================== Animations ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp-4b841c {
    animation: fadeInUp 0.6s ease forwards;
}

.delay-1-7365e5 { animation-delay: 0.1s; }
.delay-2-e3dc99 { animation-delay: 0.2s; }
.delay-3-60737a { animation-delay: 0.3s; }
.delay-4-0dcd48 { animation-delay: 0.4s; }
.delay-5-7d6f1e { animation-delay: 0.5s; }
.delay-6-ceb75c { animation-delay: 0.6s; }

/* Placeholder styles */
.placeholder-bg-0963f1 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 48px;
}