/* ========== CSS Variables ========== */
:root {
    /* 主题色 - 高端深蓝色+金色 */
    --primary-color: #1a365d;      /* 深蓝色 */
    --primary-light: #2c5282;      /* 浅蓝色 */
    --accent-color: #c9a227;       /* 金色 */
    --accent-light: #d4af37;       /* 浅金色 */
    --text-dark: #1a202c;          /* 深色文字 */
    --text-gray: #4a5568;          /* 灰色文字 */
    --text-light: #718096;         /* 浅灰色文字 */
    --white: #ffffff;
    --bg-light: #f7fafc;           /* 浅色背景 */
    --bg-dark: #1a202c;            /* 深色背景 */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    --gradient-gold: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    --gradient-dark: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-color) 100%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

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

.section-header-caf72f {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-be41db {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title-be41db::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.section-subtitle-7a80b1 {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 20px auto 0;
}

.section-label-fbc29b {
    display: inline-block;
    padding: 5px 15px;
    background: var(--gradient-gold);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== Header & Navigation ========== */
.header-55abce {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.header-55abce.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
}

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

.logo-52dce3 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon-26a32c {
    width: 45px;
    height: 45px;
    background: var(--gradient-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
}

.logo-text-f63135 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-text-f63135 span {
    color: var(--accent-color);
}

.nav-menu-a72526 {
    display: flex;
    gap: 35px;
}

.nav-link-8af1df {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 10px 0;
    transition: var(--transition);
}

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

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

.nav-link-8af1df:hover::after {
    width: 100%;
}

.nav-contact-079ba7 {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 25px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-contact-079ba7:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-toggle-13e164 {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle-13e164 span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* ========== Hero Section ========== */
.hero-660a3e {
    min-height: 100vh;
    background: var(--gradient-dark);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-660a3e::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../imgs/banner.jpg') center / cover;
    animation: float 20s linear infinite;
    opacity: 0.15;
}

@keyframes float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50px); }
}

.hero-content-9c2323 {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge-a2fd37 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.hero-title-c8b2af {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-title-c8b2af span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc-cfce7d {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-buttons-de6762 {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-0d99b8 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary-3a5dfe {
    background: var(--gradient-gold);
    color: var(--white);
}

.btn-primary-3a5dfe:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.4);
}

.btn-secondary-f43713 {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary-f43713:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
}

.hero-stats-8dcb8a {
    display: flex;
    gap: 50px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-aaeae5 {
    text-align: center;
}

.hero-stat-number-fbcebb {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
}

.hero-stat-label-697763 {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

.hero-image-977682 {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 600px;
    z-index: 2;
}

.hero-image-placeholder-86f1f9 {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.8) 0%, rgba(44, 82, 130, 0.6) 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-image-placeholder-86f1f9::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

/* ========== Services Section ========== */
.services-238114 {
    background: var(--bg-light);
}

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

.service-card-c5ace9 {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card-c5ace9::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.service-card-c5ace9:hover::before {
    transform: scaleX(1);
}

.service-icon-80cb0e {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-color);
    transition: var(--transition);
}

.service-card-c5ace9:hover .service-icon-80cb0e {
    background: var(--gradient-gold);
    color: var(--white);
}

.service-title-a2c9a6 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-desc-be9143 {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========== Service Advantages ========== */
.advantages-0435e5 {
    background: var(--white);
}

.advantages-content-209cbb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.advantage-item-55aeec {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: var(--transition);
}

.advantage-item-55aeec:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.advantage-icon-48af30 {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.advantage-text-c28174 h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.advantage-text-c28174 p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ========== About Section ========== */
.about-23ddda {
    background: var(--bg-light);
}

.about-content-464829 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-7c2468 {
    position: relative;
}

.about-image-main-ce09a4 {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.about-image-main-ce09a4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-badge-c21074 {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 180px;
    height: 180px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.about-image-badge-number-d9b173 {
    font-size: 3rem;
    font-weight: 800;
}

.about-image-badge-text-18574c {
    font-size: 0.9rem;
}

.about-text-960934 h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.about-text-960934 h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-text-960934 p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features-cb4f0b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.about-feature-fa8f6b {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature-icon-29aa01 {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}

.about-feature-text-92a4fd {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* ========== Products Section ========== */
.products-87eaa6 {
    background: var(--white);
}

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

.product-card-87a8da {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.product-card-87a8da:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image-ebcce2 {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
}

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

.product-card-87a8da:hover .product-image-ebcce2 img {
    transform: scale(1.1);
}

.product-badge-6c41f5 {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    background: var(--accent-color);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
}

.product-content-2e2f77 {
    padding: 25px;
}

.product-title-ca81d3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.product-desc-121a5d {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.product-link-8f0b8f {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: var(--accent-color);
    font-weight: 600;
    transition: var(--transition);
}

.product-link-8f0b8f:hover {
    gap: 15px;
}

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

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

.news-card-d54245 {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.news-image-7d9f31 {
    width: 100%;
    height: 200px;
    position: relative;
}

.news-image-7d9f31 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-date-4ca6c4 {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

.news-meta-30cde4 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.news-title-da8676 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: var(--transition);
}

.news-card-d54245:hover .news-title-da8676 {
    color: var(--accent-color);
}

.news-excerpt-08c754 {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ========== FAQ Section ========== */
.faq-d1dff5 {
    background: var(--white);
}

.faq-list-726b9e {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-15f8f9 {
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item-15f8f9:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question-12be03 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-question-12be03:hover {
    color: var(--accent-color);
}

.faq-icon-190418 {
    width: 30px;
    height: 30px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    transition: var(--transition);
}

.faq-item-15f8f9.active .faq-icon-190418 {
    background: var(--accent-color);
    color: var(--white);
    transform: rotate(180deg);
}

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

.faq-answer-content-88b0b3 {
    padding: 0 30px 25px;
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.faq-item-15f8f9.active .faq-answer-3eb528 {
    max-height: 200px;
}

/* ========== Testimonials Section ========== */
.testimonials-55907f {
    background: var(--gradient-dark);
    color: var(--white);
}

.testimonials-55907f .section-title-be41db {
    color: var(--white);
}

.testimonials-55907f .section-label-fbc29b {
    background: rgba(255, 255, 255, 0.2);
}

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

.testimonial-card-cd0ca1 {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.testimonial-card-cd0ca1:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.testimonial-header-54d311 {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.testimonial-avatar-eecabe {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.testimonial-info-4df3e1 h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-info-4df3e1 p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-rating-613527 {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.testimonial-rating-613527 i {
    color: var(--accent-light);
    font-size: 0.9rem;
}

.testimonial-content-308a68 {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-style: italic;
}

/* ========== Contact Section ========== */
.contact-ec153d {
    background: var(--bg-light);
}

.contact-content-706036 {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info-114615 h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-info-114615 h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.contact-info-114615 p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-details-a4fcfc {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item-5acfa4 {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon-27d14e {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent-color);
    box-shadow: var(--shadow-sm);
}

.contact-text-ab3c1c h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-text-ab3c1c p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
}

.contact-form-97a1f9 {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.form-title-383c8b {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.form-row-f83b9a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

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

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

.form-input-e7faec,
.form-textarea-999a3c {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
    background: var(--bg-light);
}

.form-input-e7faec:focus,
.form-textarea-999a3c:focus {
    outline: none;
    border-color: var(--accent-color);
    background: var(--white);
}

.form-textarea-999a3c {
    resize: vertical;
    min-height: 120px;
}

.form-submit-be367e {
    width: 100%;
    padding: 18px;
    background: var(--gradient-gold);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit-be367e:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.4);
}

.flink-section-7037d6 {
    background: white;
    color: #2d3748;
    padding: 30px 0;
}
.flink-header-192100{
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 10px;
}
.flink-section-7037d6 li{
    list-style: none;
    display: inline;
    padding-right: 20px;
}
.flink-section-7037d6 a{
    color: #718096;
    text-decoration: none;
}

/* ========== Footer ========== */
.footer-e591fa {
    background: var(--bg-dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content-555ee4 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand-f17574 p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
    line-height: 1.7;
}

.footer-social-cf162f {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social-cf162f a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-social-cf162f a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-title-92846d {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title-92846d::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

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

.footer-link-3c3c9a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-link-3c3c9a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-bottom-2d5461 {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ========== Responsive Design ========== */
@media (max-width: 1024px) {
    .hero-title-c8b2af {
        font-size: 2.8rem;
    }

    .hero-image-977682 {
        width: 400px;
        height: 500px;
    }

    .services-grid-f3a4fa,
    .products-grid-047dfd,
    .news-grid-0654ac,
    .testimonials-grid-21be71 {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .section-title-be41db {
        font-size: 2rem;
    }

    .nav-menu-a72526 {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: var(--shadow-md);
    }

    .nav-menu-a72526.active {
        display: flex;
    }

    .mobile-toggle-13e164 {
        display: flex;
    }

    .hero-660a3e {
        padding-top: 100px;
    }

    .hero-content-9c2323 {
        text-align: center;
    }

    .hero-title-c8b2af {
        font-size: 2.2rem;
    }

    .hero-buttons-de6762 {
        justify-content: center;
    }

    .hero-stats-8dcb8a {
        justify-content: center;
    }

    .hero-image-977682 {
        display: none;
    }

    .services-grid-f3a4fa,
    .products-grid-047dfd,
    .news-grid-0654ac,
    .testimonials-grid-21be71 {
        grid-template-columns: 1fr;
    }

    .advantages-content-209cbb {
        grid-template-columns: 1fr;
    }

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

    .about-image-7c2468 {
        order: -1;
    }

    .about-image-main-ce09a4 {
        height: 350px;
    }

    .about-image-badge-c21074 {
        width: 120px;
        height: 120px;
        bottom: -20px;
        right: 20px;
    }

    .about-image-badge-number-d9b173 {
        font-size: 2rem;
    }

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

    .contact-content-706036 {
        grid-template-columns: 1fr;
    }

    .form-row-f83b9a {
        grid-template-columns: 1fr;
    }

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

    .footer-title-92846d::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social-cf162f {
        justify-content: center;
    }
}

/* ========== Animations ========== */
.fade-in-073a08 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-073a08.visible-4a03c0 {
    opacity: 1;
    transform: translateY(0);
}