@charset "UTF-8";
/*
Theme Name: Weishi Zhiyong Business Services
Description: Custom theme for Weishi Zhiyong Business Services
Version: 1.0.1
Author: Weishi Zhiyong
*/

:root {
    --primary: #0F172A;
    --primary-light: #1E293B;
    --accent: #3B82F6;
    --accent-hover: #2563EB;
    --accent-light: rgba(59, 130, 246, 0.1);
    --text-main: #334155;
    --text-light: #64748B;
    --white: #ffffff;
    --border: #E2E8F0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --container-width: 1200px;
    --header-height: 80px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: #F8FAFC;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.navbar {
    width: 100%;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 40px;
}

.nav-menu ul {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-main);
}

.nav-menu a:hover, .nav-menu .current-menu-item a {
    color: var(--accent);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 8px;
}

.lang-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.3s;
}

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

.lang-link.active {
    background: white;
    color: var(--accent);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.lang-separator {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-main);
}

/* Hero Section */
.hero-section {
    padding-top: calc(var(--header-height) + 80px);
    padding-bottom: 100px;
    background-color: var(--primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-bg-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('/wp-content/themes/trae-company-theme/images/hero-bg.svg');
    background-size: cover;
    background-position: center;
    opacity: 1;
    pointer-events: none;
    z-index: 1;
}

/* Hero Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    animation: fadeInUp 0.8s ease-out;
}

.hero-right {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(to right, #ffffff, #94A3B8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 22px;
    color: #94A3B8;
    margin-bottom: 32px;
    font-weight: 500;
}

.hero-desc-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.hero-desc-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-description {
    font-size: 16px;
    color: #E2E8F0;
    line-height: 1.8;
    margin-bottom: 0;
    text-align: justify;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-desc-card {
        text-align: left;
    }
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.39);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(59, 130, 246, 0.23);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    margin-left: 16px;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-white {
    background: white;
    color: var(--accent);
}

.btn-white:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

/* Sections General */
.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.text-center {
    text-align: center;
}

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

.about-text p {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 16px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.stat-item h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
}

.about-image {
    position: relative;
}

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

/* Process Section */
.process-section {
    background-color: white;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

.step-number {
    width: 40px;
    height: 40px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
}

.step-desc {
    font-size: 14px;
    color: var(--text-light);
}

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

.service-card-link {
    display: block;
    height: 100%;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

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

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.card-icon img {
    width: 32px;
    height: 32px;
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 10px;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.badge {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    background: var(--accent-light);
    padding: 4px 10px;
    border-radius: 12px;
}

/* New Badge for Coming Soon */
.badge-coming-soon {
    display: inline-block;
    vertical-align: middle;
    margin-left: 0;
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 20px;
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5253 100%);
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(238, 82, 83, 0.3);
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(238, 82, 83, 0.4);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(238, 82, 83, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(238, 82, 83, 0);
    }
}

.card-desc {
    color: var(--text-light);
    margin-bottom: 24px;
    flex-grow: 1;
    font-size: 15px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-main);
}

.check-icon {
    color: var(--accent);
    margin-right: 8px;
    font-weight: bold;
    flex-shrink: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
}

.cta-box {
    background: var(--accent);
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-title {
    color: white;
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer - Redesigned */
.site-footer {
    background-color: var(--primary);
    color: #94A3B8;
    padding-top: 80px;
    position: relative;
    font-size: 15px;
}

.footer-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/wp-content/themes/trae-company-theme/images/footer-bg.svg');
    background-size: cover;
    background-position: center bottom;
    opacity: 0.8; /* Increased opacity for visibility */
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr; /* Structured columns */
    gap: 60px;
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 24px;
    filter: brightness(0) invert(1); /* Make logo white */
}

.footer-desc {
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.footer-title {
    color: white;
    font-size: 18px;
    margin-bottom: 24px;
    font-weight: 600;
}

.footer-nav ul li {
    margin-bottom: 14px;
}

.footer-nav a {
    color: #94A3B8;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: white;
    padding-left: 4px; /* Subtle movement */
}

.newsletter-form {
    display: flex;
    margin-bottom: 24px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 8px 0 0 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    outline: none;
}

.newsletter-form input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.newsletter-form button {
    padding: 0 16px;
    background: var(--accent);
    border: none;
    border-radius: 0 8px 8px 0;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: var(--accent-hover);
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    :root {
        --container-width: 960px;
    }
    
    .hero-title { font-size: 48px; }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar .nav-menu {
        display: none; /* Mobile menu hidden by default */
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        flex-direction: column;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
    }
    
    .navbar .nav-menu.active {
        display: flex;
    }
    
    .navbar .nav-menu ul {
        flex-direction: column;
        width: 100%;
        gap: 20px;
        text-align: center;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-section {
        padding-top: 120px;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Inner Page Styles (New Added)
   ========================================= */

/* Page Header */
.page-header {
    background: var(--primary);
    padding: 160px 0 80px;
    text-align: center;
    color: white;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('/wp-content/themes/trae-company-theme/images/hero-bg.svg');
    background-size: cover;
    background-position: center;
    opacity: 1;
    pointer-events: none;
    z-index: 1;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

/* About Page Styles */
.about-section {
    padding: 60px 0;
}

.business-focus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.business-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--accent);
    transition: transform 0.3s;
}

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.business-card h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 16px;
}

.business-card p {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .business-focus-grid {
        grid-template-columns: 1fr;
    }
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.mv-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--accent);
}

.mv-card h2 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 16px;
}

.mv-card p {
    color: var(--text-light);
    font-size: 16px;
}

.values-section {
    background: white;
    padding: 80px 0;
    margin-bottom: 80px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    text-align: center;
    padding: 30px;
    background: #F8FAFC;
    border-radius: 12px;
    transition: transform 0.3s;
}

.value-item:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: bold;
}

.value-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary);
}

.value-item p {
    font-size: 14px;
    color: var(--text-light);
}

.team-section {
    padding-bottom: 80px;
    text-align: center;
}

.team-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    color: var(--text-light);
}

/* Services Page Styles */
.service-detail-item {
    background: white;
    border-radius: 20px;
    padding: 60px;
    margin-bottom: 60px;
    box-shadow: var(--shadow-md);
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}

.service-detail-title {
    font-size: 32px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-detail-desc {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 900px;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #F8FAFC;
    border-radius: 10px;
}

.feature-check {
    color: var(--accent);
    font-weight: bold;
    font-size: 18px;
    margin-top: 2px;
}

.feature-text {
    font-size: 16px;
    color: var(--text-main);
}

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

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.advantage-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.advantage-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

/* Contact Page Styles */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

.contact-info-card {
    background: var(--primary);
    color: white;
    padding: 40px;
    border-radius: 20px;
    height: 100%;
}

.contact-info-card h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.contact-info-intro {
    color: #94A3B8;
    margin-bottom: 40px;
}

.contact-detail-item {
    margin-bottom: 30px;
}

.contact-detail-item h3 {
    font-size: 16px;
    color: var(--accent);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-detail-item p {
    font-size: 16px;
    color: white;
    margin-bottom: 4px;
}

.contact-form-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.contact-form-card h2 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 24px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-light);
}

.contact-submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-submit-btn:hover {
    background: var(--accent-hover);
}

@media (max-width: 768px) {
    .mission-vision-grid,
    .values-grid,
    .service-features-grid,
    .advantages-grid,
    .contact-page-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-title {
        font-size: 32px;
    }
}

/* Badge & Animations */
.badge-coming-soon {
    display: inline-block;
    background: #FEF3C7;
    color: #D97706;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    margin-left: 10px;
    vertical-align: middle;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(217, 119, 6, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(217, 119, 6, 0); }
}
