/* ==========================================
   CSS Variables & Base Styles - 浅色高端风格
   ========================================== */
:root {
    --primary-color: #8B6914;
    --primary-dark: #6B4F0E;
    --primary-light: #B48E3A;
    --secondary-color: #1A1A2E;
    --light-bg: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #F0F1F3;
    --text-color: #333333;
    --text-muted: #666666;
    --text-light: #999999;
    --white: #FFFFFF;
    --border-color: rgba(139, 105, 20, 0.15);
    --card-bg: #FFFFFF;
    --gradient-gold: linear-gradient(135deg, #8B6914 0%, #B48E3A 50%, #8B6914 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 4px 20px rgba(139, 105, 20, 0.25);
    --transition: all 0.3s ease;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

/* ==========================================
   Buttons
   ========================================== */
.btn-83541a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary-11d5f7 {
    background: var(--gradient-gold);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.btn-primary-11d5f7:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(139, 105, 20, 0.4);
}

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

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

.btn-block-922813 {
    width: 100%;
}

/* ==========================================
   Header & Navigation
   ========================================== */
.header-cb3906 {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.header-cb3906.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.nav-wrapper-8faa78 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-0a6b4e i {
    font-size: 28px;
}

.nav-menu-3a1923 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link-f1b2c8 {
    padding: 10px 16px;
    font-size: 14px;
    color: var(--text-color);
    border-radius: var(--radius-sm);
    position: relative;
}

.nav-link-f1b2c8:hover,
.nav-link-f1b2c8.active {
    color: var(--primary-color);
}

.nav-link-f1b2c8::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link-f1b2c8:hover::after,
.nav-link-f1b2c8.active::after {
    width: 20px;
}

.mobile-toggle-b06890 {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 24px;
    cursor: pointer;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero-cbf2f8 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FDFBF7 0%, #F5F0E6 100%);
    overflow: hidden;
}

.hero-cbf2f8::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../imgs/banner.jpg') center / cover;
    opacity: 0.15;
}

.hero-overlay-cbf22c {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(253, 251, 247, 0.5) 70%);
}

.hero-content-3da2a0 {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero-badge-60e99c {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 105, 20, 0.1);
    border: 1px solid var(--border-color);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-size: 14px;
}

.hero-title-09d1a6 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-543536 {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons-d355d9 {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-stats-59a357 {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.stat-item-9877bf {
    text-align: center;
}

.stat-number-447730 {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-number-447730::after {
    content: '+';
}

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

.scroll-indicator-615e13 {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--primary-color);
    font-size: 24px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-15px); }
    60% { transform: translateX(-50%) translateY(-8px); }
}

/* ==========================================
   Section Styles
   ========================================== */
.section-63dc6f {
    padding: 100px 0;
}

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

.section-tag-28789a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 105, 20, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.section-title-60e95e {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

.section-desc-726f10 {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

.service-card-ff3041:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-image-5e846b {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--light-gray);
}

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

.service-card-ff3041:hover .service-image-5e846b img {
    transform: scale(1.1);
}

.service-overlay-acd84e {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 105, 20, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.service-card-ff3041:hover .service-overlay-acd84e {
    opacity: 1;
}

.service-overlay-acd84e i {
    font-size: 32px;
    color: var(--white);
}

.service-content-fe67da {
    padding: 25px;
}

.service-title-58c7be {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
}

.service-text-8bd739 {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link-e1ca63 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 14px;
}

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

/* ==========================================
   Advantages Section
   ========================================== */
.advantages-4473cc {
    background: linear-gradient(135deg, #FDFBF7 0%, #F5F0E6 100%);
    position: relative;
    overflow: hidden;
}

.advantages-4473cc::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 105, 20, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.advantages-grid-28d204 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

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

.advantage-card-a3310e:hover {
    background: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.advantage-icon-667507 {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
font-size: 32px;
    color: var(--white);
}

.advantage-title-f2f474 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}

.advantage-text-f21431 {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

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

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

.about-image-45060f {
    position: relative;
}

.about-image-45060f img {
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.about-badge-b0e928 {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-gold);
    padding: 25px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.badge-number-fb63b5 {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.badge-text-c68ac9 {
    font-size: 12px;
    color: var(--white);
    font-weight: 500;
}

.about-content-9a37f7 .section-tag-28789a {
    margin-bottom: 15px;
}

.about-title-172764 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

.about-intro-c41c79 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.about-text-1c54f2 {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

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

.feature-item-55f2bc {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-color);
}

.feature-item-55f2bc i {
    color: var(--primary-color);
}

/* ==========================================
   Cases Section
   ========================================== */
.cases-ad73b3 {
    background: var(--light-gray);
}

.cases-grid-b087fc {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
}

.case-card-3b492e {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.case-card-3b492e.large-ed05fd {
    grid-column: span 2;
    grid-row: span 2;
}

.case-image-988264 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--medium-gray);
}

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

.case-card-3b492e:hover .case-image-988264 img {
    transform: scale(1.1);
}

.case-overlay-fffef3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.case-card-3b492e:hover .case-overlay-fffef3 {
    transform: translateY(0);
    opacity: 1;
}

.case-tag-8d43f1 {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.case-title-4ffcfc {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}

.case-desc-a25767 {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}

/* ==========================================
   News Section
   ========================================== */
.news-e71a86 {
    background: linear-gradient(135deg, #FDFBF7 0%, #F5F0E6 100%);
}

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

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

.news-card-191d25:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.news-image-df5293 {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--light-gray);
}

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

.news-card-191d25:hover .news-image-df5293 img {
    transform: scale(1.05);
}

.news-date-5c5624 {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.news-title-e1c204 {
    font-size: 18px;
    font-weight: 600;
    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-text-ca76dd {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta-3850e3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.news-time-12f3fc {
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-link-d5692a {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

/* ==========================================
   FAQ Section
   ========================================== */
.faq-80223d {
    background: var(--light-bg);
}

.faq-wrapper-6dd1ff {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-item-dae3a4:hover,
.faq-item-dae3a4.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.faq-question-d00b25 {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question-d00b25:hover {
    background: rgba(139, 105, 20, 0.03);
}

.faq-icon-66c654 {
    width: 36px;
    height: 36px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-icon-66c654 i {
    font-size: 14px;
    color: var(--white);
    transition: var(--transition);
}

.faq-item-dae3a4.active .faq-icon-66c654 i {
    transform: rotate(45deg);
}

.faq-question-d00b25 h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
}

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

.faq-item-dae3a4.active .faq-answer-9de412 {
    max-height: 300px;
}

.faq-answer-9de412 p {
    padding: 0 25px 25px 76px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ==========================================
   Reviews Section
   ========================================== */
.reviews-5198a1 {
    background: linear-gradient(135deg, #FDFBF7 0%, #F5F0E6 100%);
}

.reviews-slider-3df2a3 {
    overflow: hidden;
    margin-bottom: 40px;
}

.reviews-track-1a021d {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.review-card-045f55 {
    flex: 0 0 calc(33.333% - 20px);
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.review-card-045f55:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.review-header-9968d0 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-info-4086e6 {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar-096660 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.reviewer-name-bb006d {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 3px;
}

.reviewer-company-a75f50 {
    font-size: 13px;
    color: var(--text-muted);
}

.review-rating-cc55af {
    color: var(--primary-color);
    font-size: 14px;
}

.review-rating-cc55af i {
    margin-left: 2px;
}

.review-content-7d2542 {
    position: relative;
}

.quote-icon-78ba8b {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 32px;
    color: var(--primary-color);
    opacity: 0.3;
}

.review-content-7d2542 p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    padding-left: 45px;
}

.slider-controls-f1cf9b {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.slider-btn-251cd2 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: var(--white);
    color: var(--text-color);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn-251cd2:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.slider-dots-5eed0a {
    display: flex;
    gap: 10px;
}

.slider-dot-60db40 {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot-60db40.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 10px;
}

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

.contact-wrapper-8b0c5b {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-7cf004 .section-tag-28789a {
    margin-bottom: 15px;
}

.contact-title-710636 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

.contact-desc-e3a045 {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.info-list-4141be {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item-a782eb {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon-d63951 {
    width: 56px;
    height: 56px;
    background: rgba(139, 105, 20, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon-d63951 i {
    font-size: 22px;
    color: var(--primary-color);
}

.info-content-2f5035 h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
}

.info-content-2f5035 p {
    font-size: 14px;
    color: var(--text-muted);
}

.contact-form-wrapper-f8a42b {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.form-title-a57f0b {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 30px;
    text-align: center;
}

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

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

.form-group-a24867 input,
.form-group-a24867 textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--light-gray);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-color);
    font-size: 15px;
    transition: var(--transition);
}

.form-group-a24867 input:focus,
.form-group-a24867 textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 105, 20, 0.1);
    background: var(--white);
}

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

.flink-section-86868b {
    background: white;
    color: #2d3748;
    padding: 30px 0;
}
.flink-header-0385fc{
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 10px;
}
.flink-section-86868b li{
    list-style: none;
    display: inline;
    padding-right: 20px;
}
.flink-section-86868b a{
    color: #718096;
    text-decoration: none;
}
/* ==========================================
   Footer
   ========================================== */
.footer-72aedc {
    background: var(--secondary-color);
    padding-top: 80px;
}

.footer-top-8c586c {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo-bc8fd2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.footer-logo-bc8fd2 i {
    font-size: 28px;
}

.footer-desc-4b71fe {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social-f4b982 {
    display: flex;
    gap: 15px;
}

.social-link-8e8a93 {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 18px;
    transition: var(--transition);
}

.social-link-8e8a93:hover {
    background: var(--primary-color);
    color: var(--white);
}

.footer-links-71f4a7 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

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

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

.footer-column-1fa014 li {
    margin-bottom: 12px;
}

.footer-column-1fa014 a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.footer-column-1fa014 a:hover {
    color: var(--primary-light);
}

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

.copyright-083f96,
.icp-11caec {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* ==========================================
   Back to Top
   ========================================== */
.back-to-top-53c3c8 {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-gold);
    border: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
    z-index: 999;
}

.back-to-top-53c3c8.visible-a8852e {
    opacity: 1;
    visibility: visible;
}

.back-to-top-53c3c8:hover {
    transform: translateY(-5px);
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 1024px) {
    .services-grid-a58fd1,
    .advantages-grid-28d204,
    .news-grid-eab9ed {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cases-grid-b087fc {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
    }
    
    .case-card-3b492e.large-ed05fd {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .review-card-045f55 {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .nav-menu-3a1923 {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu-3a1923.active {
        right: 0;
    }
    
    .nav-link-f1b2c8 {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .mobile-toggle-b06890 {
        display: block;
        z-index: 1001;
    }
    
    .hero-title-09d1a6 {
        font-size: 36px;
    }
    
    .hero-subtitle-543536 {
        font-size: 16px;
    }
    
    .hero-buttons-d355d9 {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-stats-59a357 {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .stat-number-447730 {
        font-size: 36px;
    }
    
    .section-63dc6f {
        padding: 60px 0;
    }
    
    .section-title-60e95e {
        font-size: 28px;
    }
    
    .services-grid-a58fd1,
    .advantages-grid-28d204,
    .news-grid-eab9ed {
        grid-template-columns: 1fr;
    }
    
    .about-wrapper-b6e2ae,
    .contact-wrapper-8b0c5b {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-badge-b0e928 {
        right: 20px;
        bottom: -30px;
    }
    
    .about-features-692835 {
        grid-template-columns: 1fr;
    }
    
    .cases-grid-b087fc {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .case-card-3b492e,
    .case-card-3b492e.large-ed05fd {
        grid-column: span 1;
        grid-row: span 1;
        height: 200px;
    }
    
    .review-card-045f55 {
        flex: 0 0 100%;
    }
    
    .footer-top-8c586c {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links-71f4a7 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom-e75de9 {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container-247ea4 {
        padding: 0 15px;
    }
    
    .hero-title-09d1a6 {
        font-size: 28px;
    }
    
    .btn-83541a {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .contact-form-wrapper-f8a42b {
        padding: 25px;
    }
    
    .footer-links-71f4a7 {
        grid-template-columns: 1fr;
    }
}
