/* Pico.css Override Styles - Place at beginning of styles.css */

/* Override Pico.css semantic elements to remove default padding */
main, article, section {
    padding: 0;
    margin: 0;
}

/* Prevent Pico from adding padding to body */
body {
    padding: 0 !important;
}

/* Override Pico's container-fluid to work with our design */
.container-fluid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Reset Pico button styles for custom buttons */
button.service-btn {
    margin: 20px auto 0;
    padding: 12px 30px;
}

/* Override Pico link styles for navigation */
nav ul li a {
    padding: 0;
    margin: 0;
    border-radius: 0;
}

/* Keep custom card styling */
.service-card,
.fair-card,
.contact-card,
.welcome-card {
    margin: 0;
}

/* Override Pico list styles */
.service-card ul,
.service-features {
    list-style: none !important;
    padding-left: 0 !important;
}

.service-card ul li,
.service-features li {
    list-style: none !important;
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #D4AF37;
    --dark-gold: #B8960F;
    --light-gold: #F4E4BC;
    --dark-bg: #1a1a1a;
    --light-bg: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --accent-red: #C1272D;
    --accent-teal: #5FA8A8;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #C1272D 0%, #8B1F23 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    padding: 0.5rem 2rem;
}

.navbar ul:first-of-type {
    margin: 0;
    padding: 0;
}

.navbar ul:first-of-type li {
    list-style: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
}

.logo span {
    font-weight: 600;
    color: var(--light-gold);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--light-gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--light-gold);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M50 10L60 40L90 40L67 57L77 87L50 70L23 87L33 57L10 40L40 40Z" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 1.5rem;
}

.hero-title {
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    font-size: 4rem;
}

.hero-title .highlight {
    color: var(--light-gold);
    display: block;
    font-weight: 900;
    font-size: 5rem;
}

.hero-subtitle {
    margin-bottom: 0.5rem;
    font-weight: 300;
    font-size: 1.8rem;
}

.hero-subtitle-chinese {
    margin-bottom: 2rem;
    opacity: 0.9;
    font-size: 1.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

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

.btn-primary:hover {
    background: var(--light-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-gold);
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f9f9f9, white);
}

.welcome-card {
    background: white;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    border: 3px solid var(--primary-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.welcome-logo img {
    height: 100px;
    margin-bottom: 20px;
}

.section-title {
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--text-light);
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.welcome-heading {
    color: var(--accent-red);
    margin: 30px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.welcome-text {
    color: var(--text-light);
    line-height: 1.8;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 25px 30px;
    border-radius: 10px;
    text-align: left;
    transition: all 0.3s;
    border-left: 4px solid var(--primary-gold);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
    border-left-width: 6px;
}

.service-icon {
    display: none;
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-weight: 600;
}

.service-card > p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Canton Fair Section */
.canton-fair-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--light-gold), #f9f9f9);
}

.section-description {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
}

.fair-packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 1400px) {
    .fair-packages {
        gap: 25px;
    }
}

@media (max-width: 1200px) {
    .fair-packages {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

.fair-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
}

.fair-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.fair-card:nth-child(1):hover {
    border-color: #C1272D;
}

.fair-card:nth-child(2):hover {
    border-color: #D4AF37;
}

.fair-card:nth-child(3):hover {
    border-color: #5FA8A8;
}

.fair-image-container {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.fair-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
    display: block;
    cursor: pointer;
}

.fair-card:hover .fair-image {
    transform: scale(1.08);
}

/* Image Modal/Lightbox */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.image-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    line-height: 1;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.fair-header {
    padding: 35px 30px;
    text-align: center;
    color: white;
    position: relative;
}

.fair-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
}

.fair-header.phase1 {
    background: linear-gradient(135deg, #C1272D 0%, #8B1F23 100%);
}

.fair-header.phase2 {
    background: linear-gradient(135deg, #D4AF37 0%, #B8960F 100%);
}

.fair-header.phase3 {
    background: linear-gradient(135deg, #5FA8A8 0%, #3D7878 100%);
}

.fair-header h3 {
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.fair-dates {
    font-weight: 600;
    letter-spacing: 1px;
}

.fair-content {
    padding: 35px;
}

.fair-badge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px 25px;
    background: linear-gradient(135deg, var(--light-gold) 0%, #F9EED4 100%);
    border-radius: 15px;
    border: 2px solid var(--primary-gold);
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.2);
}

.price {
    font-weight: 800;
    color: var(--accent-red);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.discount {
    color: var(--primary-gold);
    font-weight: 700;
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.fair-content h4 {
    color: var(--text-dark);
    margin-top: 20px;
    margin-bottom: 10px;
}

.fair-categories {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
}

.inclusion-title {
    color: var(--accent-red);
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.inclusion-list {
    list-style: none;
    padding-left: 0;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-gold);
}

.inclusion-list li {
    padding: 10px 0;
    padding-left: 35px;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
}

.inclusion-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 1.6rem;
    background: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.other-phases {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    border-radius: 15px;
    border: 2px solid #ddd;
}

.other-phases h5 {
    color: var(--text-dark);
    margin-bottom: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.other-phases p {
    color: var(--text-dark);
    margin: 10px 0;
    font-weight: 500;
    padding-left: 15px;
    border-left: 3px solid var(--primary-gold);
    padding: 8px 0 8px 15px;
}

/* Company Setup Section */
.company-setup-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2a2a2a 100%);
    color: white;
}

.setup-content {
    max-width: 900px;
    margin: 0 auto;
}

.setup-text h2 {
    color: var(--primary-gold);
    margin-bottom: 30px;
}

.special-offer {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.discount-badge {
    background: var(--accent-red);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
}

.price-badge {
    background: var(--primary-gold);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
}

.info-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 5px solid var(--primary-gold);
}

.info-box h3 {
    margin-bottom: 15px;
    color: var(--light-gold);
}

.info-box p {
    margin: 10px 0;
}

.advantages {
    margin: 30px 0;
}

.advantages h3 {
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.advantages ul {
    list-style: none;
    padding-left: 0;
}

.advantages li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
}

.advantages li::before {
    content: '★';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    font-size: 1.5rem;
    line-height: 1;
}

.business-scope {
    margin: 30px 0;
}

.business-scope h3 {
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.business-scope ol {
    padding-left: 25px;
}

.business-scope li {
    padding: 10px 0;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-card {
    background: linear-gradient(135deg, #f9f9f9 0%, white 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    font-size: 0.85rem;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.contact-card h3 {
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.contact-item .icon {
    font-size: 1.3rem;
}

.contact-item p {
    color: var(--text-light);
    margin: 5px 0;
}

.contact-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: var(--primary-gold);
    text-decoration: underline;
}

.qr-card {
    grid-column: 1 / -1;
}

.qr-codes {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    margin: 30px 0;
}

.qr-code {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    object-fit: contain;
}

.qr-text {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f9f9f9, white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(212, 175, 55, 0.25);
    border-color: var(--primary-gold);
}

.blog-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.blog-category {
    background: var(--primary-gold);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-title {
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
    font-size: 1.3rem;
}

.blog-excerpt {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.blog-tags .tag {
    background: var(--light-gold);
    color: var(--dark-gold);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-tags .tag:hover {
    background: var(--primary-gold);
    color: white;
}

/* Blog Card Links */
.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

/* Blog Hero (for blog listing page) */
.blog-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
    overflow: hidden;
}

/* Blog Post Styles */
.blog-post {
    margin-top: 80px;
    background: white;
    min-height: 100vh;
}

.blog-post-hero {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.blog-post-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    background: white;
}

.blog-post-header {
    margin-bottom: 40px;
}

.blog-post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.blog-post-title {
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
    font-size: 2.5rem;
}

.blog-post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1a1a1a;
}

.blog-post-content h2 {
    color: var(--primary-gold);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 2rem;
}

.blog-post-content h3 {
    color: #1a1a1a;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 700;
}

.blog-post-content p {
    margin-bottom: 20px;
    color: #1a1a1a;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 20px;
    padding-left: 40px;
    color: #1a1a1a;
}

.blog-post-content li {
    margin-bottom: 10px;
    color: #1a1a1a;
}

.blog-post-content strong {
    color: #000000;
    font-weight: 700;
}

.blog-post-content a {
    color: var(--primary-gold);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.blog-post-content a:hover {
    color: var(--dark-gold);
    text-decoration: none;
}

.blog-post-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--light-gold);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.back-to-blog {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-gold);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-to-blog:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.blog-share {
    text-align: right;
}

.blog-share p {
    margin-bottom: 10px;
    color: var(--text-light);
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    display: inline-block;
    padding: 8px 20px;
    background: var(--light-gold);
    color: var(--dark-gold);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--primary-gold);
    color: white;
}

/* Related Posts */
.related-posts {
    background: linear-gradient(to bottom, #f9f9f9, white);
    padding: 80px 0;
}

.related-posts .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
}

.footer-logo p {
    font-weight: 700;
    color: var(--primary-gold);
}

.footer-tagline {
    color: var(--light-gold);
    margin: 15px 0;
}

.footer-text {
    color: #999;
    margin: 15px 0;
}

.footer-copyright {
    color: #666;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container,
    .container-fluid {
        padding: 0 30px;
    }

    .fair-packages {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .container,
    .container-fluid {
        padding: 0 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background: linear-gradient(135deg, #C1272D 0%, #8B1F23 100%);
        width: 280px;
        height: 100vh;
        text-align: left;
        transition: right 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        padding: 100px 30px 30px;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 0;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 5px 0;
    }

    .nav-menu a::after {
        bottom: 0;
    }

    /* All sections */
    section {
        padding: 50px 0 !important;
    }

    .hero {
        height: auto;
        min-height: 80vh;
        padding: 60px 20px;
        margin-top: 70px;
    }

    .hero-title {
        line-height: 1.3;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .welcome-section {
        padding: 50px 0;
    }

    .welcome-card {
        padding: 30px 20px;
    }

    .welcome-logo img {
        height: 80px;
    }

    .welcome-text {
        line-height: 1.6;
    }

    .services-section {
        padding: 50px 0;
    }

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

    .service-card {
        padding: 25px;
    }

    .canton-fair-section {
        padding: 50px 0;
    }

    .section-description {
        padding: 0 10px;
    }

    .fair-packages {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .fair-image-container {
        height: 250px;
    }

    .fair-header {
        padding: 25px 20px;
    }

    .fair-content {
        padding: 20px;
    }

    .fair-badge {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .company-setup-section {
        padding: 50px 0;
    }

    .setup-content {
        padding: 0 10px;
    }

    .special-offer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .discount-badge,
    .price-badge {
        padding: 12px 25px;
        width: 100%;
        text-align: center;
    }

    .contact-section {
        padding: 50px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .qr-card {
        grid-column: span 1;
    }

    .qr-codes {
        gap: 30px;
    }

    .qr-code {
        max-width: 500px;
    }

    .blog-section {
        padding: 50px 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }

    .blog-image {
        height: 200px;
    }

    .blog-content {
        padding: 25px 20px;
    }

    .footer {
        padding: 30px 0;
    }
}

@media (max-width: 480px) {
    .container,
    .container-fluid {
        padding: 0 15px;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .logo img {
        height: 35px;
    }

    .logo span {
        letter-spacing: 0.5px;
    }

    /* All sections */
    section {
        padding: 40px 0 !important;
    }

    .hero {
        padding: 40px 15px;
        min-height: 70vh;
        margin-top: 65px;
    }

    .hero-subtitle {
        margin-bottom: 0.3rem;
    }

    .hero-subtitle-chinese {
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        gap: 12px;
    }

    .btn {
        padding: 10px 25px;
        width: 100%;
        max-width: 280px;
    }

    .welcome-section {
        padding: 40px 0;
    }

    .welcome-card {
        padding: 25px 15px;
        border-width: 2px;
    }

    .welcome-logo img {
        height: 60px;
    }

    .section-title {
        margin-bottom: 8px;
    }

    .section-subtitle {
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .welcome-heading {
        margin: 20px 0;
    }

    .welcome-text {
        line-height: 1.5;
    }

    .services-section {
        padding: 40px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }

    .service-card {
        padding: 20px;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .canton-fair-section {
        padding: 40px 0;
    }

    .section-description {
        margin-bottom: 30px;
    }

    .fair-packages {
        gap: 25px;
        margin-top: 30px;
    }

    .fair-card {
        border-radius: 15px;
    }

    .fair-image-container {
        height: 200px;
    }

    .fair-header {
        padding: 20px 15px;
    }

    .fair-header h3 {
        margin-bottom: 8px;
    }

    .fair-content {
        padding: 15px;
    }

    .fair-badge {
        padding: 12px;
        margin-bottom: 20px;
    }

    .fair-content h4 {
        margin-top: 15px;
    }

    .fair-categories {
        line-height: 1.6;
    }

    .inclusion-title {
        margin-top: 20px;
    }

    .inclusion-list li {
        padding: 6px 0;
        padding-left: 25px;
    }

    .other-phases {
        margin-top: 20px;
        padding: 15px;
    }

    .other-phases h5 {
        margin-bottom: 10px;
    }

    .company-setup-section {
        padding: 40px 0;
    }

    .setup-content {
        padding: 0;
    }

    .setup-text h2 {
        margin-bottom: 20px;
    }

    .special-offer {
        gap: 12px;
        margin-bottom: 20px;
    }

    .discount-badge,
    .price-badge {
        padding: 10px 20px;
        border-radius: 30px;
    }

    .info-box {
        padding: 15px;
        margin: 20px 0;
    }

    .info-box h3 {
        margin-bottom: 10px;
    }

    .info-box p {
        line-height: 1.5;
    }

    .advantages,
    .business-scope {
        margin: 20px 0;
    }

    .advantages h3,
    .business-scope h3 {
        margin-bottom: 15px;
    }

    .advantages ul,
    .business-scope ol {
        padding-left: 20px;
    }

    .advantages li {
        padding: 8px 0;
        padding-left: 28px;
    }

    .business-scope li {
        padding: 8px 0;
    }

    .contact-section {
        padding: 40px 0;
    }

    .contact-grid {
        gap: 15px;
        margin-top: 30px;
    }

    .contact-card {
        padding: 20px 15px;
        border-radius: 12px;
    }

    .contact-card h3 {
        margin-bottom: 15px;
    }

    .contact-item {
        gap: 12px;
        margin: 12px 0;
    }

    .contact-item .icon {
        /* Using default size */
    }

    .contact-item p {
        /* Using default size */
    }

    .qr-codes {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        margin: 15px 0;
    }

    .qr-code {
        max-width: 350px;
        border-radius: 8px;
    }

    .qr-text {
        margin-top: 10px;
    }

    .footer {
        padding: 30px 0 20px;
    }

    .footer-logo {
        gap: 12px;
        margin-bottom: 15px;
    }

    .footer-logo img {
        height: 45px;
    }

    .footer-tagline {
        margin: 12px 0;
    }

    .footer-text {
        margin: 10px 0;
    }

    .footer-copyright {
        margin-top: 20px;
        padding-top: 15px;
    }

    .blog-section {
        padding: 40px 0;
    }

    .blog-grid {
        gap: 20px;
        margin-top: 25px;
    }

    .blog-image {
        height: 180px;
    }

    .blog-content {
        padding: 20px 15px;
    }

    .blog-title {
        font-size: 1.15rem;
        margin-bottom: 12px;
    }

    .blog-excerpt {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .blog-tags .tag {
        font-size: 0.75rem;
        padding: 5px 10px;
    }

    .blog-hero {
        height: 40vh;
        min-height: 300px;
        margin-top: 65px;
    }

    .blog-post-hero {
        height: 300px;
    }

    .blog-post-container {
        padding: 40px 15px;
    }

    .blog-post-title {
        font-size: 1.8rem;
    }

    .blog-post-content {
        font-size: 1rem;
        line-height: 1.7;
    }

    .blog-post-content h2 {
        font-size: 1.5rem;
        margin-top: 30px;
    }

    .blog-post-content h3 {
        font-size: 1.2rem;
        margin-top: 25px;
    }

    .blog-post-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-share {
        text-align: left;
        width: 100%;
    }

    .share-buttons {
        flex-wrap: wrap;
    }

    .related-posts {
        padding: 40px 0;
    }
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 999;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

.service-card,
.fair-card,
.contact-card,
.blog-card {
    animation: fadeIn 0.6s ease-in-out;
}

/* Contact Hero Image */
.contact-hero-image {
    margin: 40px 0;
    text-align: center;
}

.contact-banner {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.contact-banner:hover {
    transform: scale(1.02);
}

/* Service Button */
.service-btn {
    margin-top: auto;
    padding: 10px 24px;
    background: var(--primary-gold);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    align-self: flex-start;
}

.service-btn:hover {
    background: var(--dark-gold);
    transform: translateX(3px);
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
}

.service-card[data-service] {
    cursor: pointer;
}

/* Page Hero for Individual Pages */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    margin-top: 70px;
    overflow: hidden;
}

.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.page-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 60px 20px;
}

.page-hero .hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero .hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Active Navigation Link */
.nav-menu a.active {
    color: var(--primary-gold);
    font-weight: 600;
    border-bottom: 2px solid var(--primary-gold);
}

/* Contact Form Styles */
.contact-form-container {
    max-width: 800px;
    margin: 40px auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

.contact-form button[type="submit"] {
    margin-top: 20px;
    padding: 14px 40px;
    font-size: 1.1rem;
}

/* Service Features List */
.service-features {
    list-style: none !important;
    list-style-type: none !important;
    padding: 0 !important;
    margin: 12px 0 15px 0;
    flex-grow: 1;
    padding-left: 0 !important;
}

.service-features li {
    padding: 6px 0 6px 22px;
    position: relative;
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.88rem;
    list-style: none !important;
    list-style-type: none !important;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 1rem;
}

.contact-info-section {
    margin-top: 60px;
}

/* Responsive Styles for Forms */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .page-hero .hero-title {
        font-size: 2.5rem;
    }

    .page-hero .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact-form-container {
        padding: 25px 15px;
    }

    .page-hero .hero-title {
        font-size: 2rem;
    }

    .page-hero .hero-subtitle {
        font-size: 1rem;
    }
}
