/* ==================== 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-0836c1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding-834046 {
    padding: 80px 0;
}

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

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

.section-title-c66687 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-c66687 p {
    font-size: 18px;
    color: var(--text-light);
    margin-top: 20px;
}

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

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

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

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

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

.logo-2399b1 i {
    font-size: 32px;
}

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

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

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

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

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

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

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

.btn-001db4 {
    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-d6373d {
    background: var(--primary-color);
    color: var(--bg-white);
}

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

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

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

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

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

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

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

/* ==================== Hero Section ==================== */
.hero-71385a {
    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-71385a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../imgs/banner.jpg') center / cover;
    opacity: 0.2;
}

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

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

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

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

.hero-buttons-560dd3 .btn-001db4 {
    padding: 15px 35px;
}

.hero-buttons-560dd3 .btn-secondary-eb4a3a {
    background: var(--bg-white);
    color: var(--primary-color);
}

.hero-buttons-560dd3 .btn-secondary-eb4a3a:hover {
    background: var(--primary-light);
}

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

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

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

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

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

.form-group-de9e95 input,
.form-group-de9e95 select,
.form-group-de9e95 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-de9e95 input:focus,
.form-group-de9e95 select:focus,
.form-group-de9e95 textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.1);
}

.hero-form-b7020a .btn-001db4 {
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

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

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

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

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

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

.advantage-card-e74fb1 {
    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-e74fb1::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-e74fb1:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

.advantage-icon-4814c4 {
    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-e74fb1:hover .advantage-icon-4814c4 {
    background: var(--primary-color);
}

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

.advantage-card-e74fb1:hover .advantage-icon-4814c4 i {
    color: var(--bg-white);
}

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

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

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

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

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

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

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

.service-card-c3eca2:hover .service-image-cc9896 img {
    transform: scale(1.1);
}

.service-overlay-2d29a5 {
    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-6ba3a6 {
    padding: 30px;
}

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

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

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

.service-feature-e1f87b {
    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-e1f87b i {
    color: var(--secondary-color);
    font-size: 12px;
}

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

.service-link-880f4a:hover {
    gap: 12px;
}

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

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

.process-fd9f03 .section-title-c66687 h2 {
    color: var(--bg-white);
}

.process-fd9f03 .section-title-c66687 p {
    color: rgba(255, 255, 255, 0.7);
}

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

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

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

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

.step-number-c6f853 {
    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-c6f853 span {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
}

.step-icon-5b0027 {
    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-e4b5d1 h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 15px;
}

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

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

.about-image-9a8105 {
    position: relative;
}

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

.about-image-9a8105::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-04c575 h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.about-text-04c575 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-04c575 .subtitle-9a69bc {
    display: block;
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

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

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

.stat-item-f3a615 {
    text-align: center;
}

.stat-item-f3a615 .number-93ffa5 {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

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

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

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

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

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

.case-overlay-71898c {
    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-71898c h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.case-overlay-71898c p {
    font-size: 13px;
    opacity: 0.8;
}

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

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

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

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

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

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

.news-card-330697:hover .news-image-dcdb24 img {
    transform: scale(1.1);
}

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

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

.news-content-b1912c {
    padding: 25px;
}

.news-content-b1912c 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-b1912c h3 a:hover {
    color: var(--primary-color);
}

.news-content-b1912c 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-8db4a2 {
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

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

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

.faq-toggle-306dae {
    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-3b3c6e.active .faq-toggle-306dae {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: rotate(180deg);
}

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

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

.faq-item-3b3c6e.active .faq-answer-fcb8c9 {
    max-height: 500px;
}

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

.reviews-8cafac .section-title-c66687 h2 {
    color: var(--bg-white);
}

.reviews-8cafac .section-title-c66687 p {
    color: rgba(255, 255, 255, 0.7);
}

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

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

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

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

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

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

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

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

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

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

/* ==================== Contact Section ==================== */
.contact-wrapper-2ece17 {
    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-a52b39 {
    background: var(--primary-color);
    padding: 50px;
    color: var(--bg-white);
}

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

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

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

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

.contact-item-7a2bc7 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-938bbc h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

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

.contact-form-section-987a1f {
    padding: 50px;
}

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

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

.contact-form-29b4cb .form-row-c4d72e {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form-29b4cb .form-group-de9e95 {
    margin-bottom: 20px;
}

.contact-form-29b4cb .btn-001db4 {
    width: 100%;
}
/* Flink */
.flink-section-a084b9 {
    background: white;
    color: #2d3748;
    padding: 30px 0;
}
.flink-header-f247a2{
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 10px;
}
.flink-section-a084b9 li{
    list-style: none;
    display: inline;
    padding-right: 20px;
}
.flink-section-a084b9 a{
    color: #718096;
    text-decoration: none;
}
/* ==================== Footer ==================== */
.footer-e99360 {
    background: var(--bg-dark);
    color: var(--bg-white);
    padding: 60px 0 30px;
}

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

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

.footer-brand-b33cd3 .logo-2399b1 {
    color: var(--bg-white);
    margin-bottom: 20px;
}

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

.footer-social-827e4d {
    display: flex;
    gap: 12px;
}

.footer-social-827e4d 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-827e4d a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

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

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

.footer-links-4e6844 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

.footer-bottom-5c25f3 {
    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-5c25f3 p {
    font-size: 14px;
    opacity: 0.7;
}

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

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

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

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

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

    .advantages-grid-85e61d,
    .services-grid-c4220a,
    .news-grid-f2f6ea,
    .reviews-grid-69af6e {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .about-image-9a8105 {
        order: -1;
    }

    .contact-wrapper-2ece17 {
        grid-template-columns: 1fr;
    }

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

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

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

    .menu-toggle-23b395 {
        display: flex;
    }

    .nav-menu-e363f9 {
        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-e363f9.active {
        transform: translateY(0);
    }

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

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

    .header-cta-56acf6 {
        display: none;
    }

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

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

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

    .advantages-grid-85e61d,
    .services-grid-c4220a,
    .news-grid-f2f6ea,
    .reviews-grid-69af6e,
    .cases-grid-de66d0 {
        grid-template-columns: 1fr;
    }

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

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

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

    .faq-question-b09e35 {
        padding: 20px;
    }

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

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

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

    .footer-social-827e4d {
        justify-content: center;
    }

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

    .footer-bottom-5c25f3 {
        flex-direction: column;
        text-align: center;
    }

    .contact-info-a52b39,
    .contact-form-section-987a1f {
        padding: 40px 25px;
    }

    .contact-form-29b4cb .form-row-c4d72e {
        grid-template-columns: 1fr;
    }

    .trust-badges-21d519 {
        justify-content: center;
    }
}

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

    .hero-buttons-560dd3 .btn-001db4 {
        width: 100%;
    }

    .about-text-04c575 h2 {
        font-size: 28px;
    }

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

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

.animate-fadeInUp-026f12 {
    animation: fadeInUp 0.6s ease forwards;
}

.delay-1-989a39 { animation-delay: 0.1s; }
.delay-2-d1cff9 { animation-delay: 0.2s; }
.delay-3-099fac { animation-delay: 0.3s; }
.delay-4-1fc729 { animation-delay: 0.4s; }
.delay-5-038f96 { animation-delay: 0.5s; }
.delay-6-417f92 { animation-delay: 0.6s; }

/* Placeholder styles */
.placeholder-bg-74c64e {
    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;
}