/* Base Styles */
:root {
    --primary: #404E4D;
    --secondary: #FFE16B;
    --light: #FBFFF2;
    --dark: #000000;
    --gray: #6c757d;
    --light-gray: #f0f2e9;
}

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

/* Font settings for Chinese text */
:lang(zh), 
.zh, 
[data-lang="zh"], 
[lang="zh"],
.chinese-address,
[data-i18n*="address"]:lang(zh) {
    font-family: 'BiauKai', 'STKaiti', 'KaiTi', 'SimKai', serif;
}

body {
    font-family: 'Calibri', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    position: relative;
    overflow-x: hidden;
    padding-top: 80px; /* Account for fixed header */
}

/* Strategic background triangles */
.bg-triangle {
    position: absolute;
    z-index: -1;
    opacity: 0.1;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.bg-triangle.top-right {
    top: 0;
    right: 0;
    width: 40vw;
    height: 40vw;
    background-color: var(--secondary);
    transform: rotate(90deg);
}

.bg-triangle.bottom-left {
    bottom: 0;
    left: 0;
    width: 40vw;
    height: 40vw;
    background-color: var(--secondary);
}

.section-divider {
    height: 120px;
    position: relative;
    margin-top: -60px;
    margin-bottom: -60px;
    z-index: 2;
}

.section-divider .triangle {
    width: 100%;
    height: 100%;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
    background-color: var(--light);
}

.section-divider.dark .triangle {
    background-color: var(--primary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Calibri', 'Arial', sans-serif;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary);
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary);
}

.btn {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--primary);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:hover {
    color: var(--light);
    background-color: var(--primary);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary);
    padding: 0.8rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 2px solid var(--secondary);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    color: var(--secondary);
    padding-left: 5px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: -80px;
    padding: 0;
}

/* Video Background */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 100vw 15vw 0;
    border-color: transparent var(--light) transparent transparent;
    opacity: 0.1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.glassmorphism-container {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 0;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 0;
    font-weight: 300;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-content .highlight {
    color: var(--secondary);
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding: 0 2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border-bottom: none;
}

.highlight{
    font-size: 1.3em;
}

/* Intro Section */
.intro {
    position: relative;
    overflow: hidden;
    padding: 10rem 0;
}

/* Intro heading styles */
.intro h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 3rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.intro h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--secondary);
}

/* Diagonal Split Background */
.diagonal-split {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.diagonal-bg-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light);
    clip-path: polygon(0 0, 0 100%, 100% 100%);
}

.diagonal-bg-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

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

.intro-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.intro-text {
    flex: 1;
    padding: 3rem 4rem;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
    width: 100%;
}

.intro-text p {
    margin-bottom: 1.8rem;
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
}

/* Highlighted text styling */
.highlight {
    color: var(--primary);
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding: 0 2px;
    border-bottom: none;
    text-decoration: none !important;
}

.highlight::after {
    display: none;
}

.highlight:hover {
    color: var(--primary);
    transform: none;
    text-shadow: none;
}

.highlight:hover::after {
    display: none;
}

@keyframes highlight-pulse {
    0%, 100% {
        transform: none;
        opacity: 1;
        text-shadow: none;
    }
}

.intro-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    position: relative;
}

/* Services Preview */
.services-preview {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.services-preview h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-card .icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    position: relative;
}

.service-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.services-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* CTA Section */
.cta {
    background: linear-gradient(rgba(64, 78, 77, 0.85), rgba(64, 78, 77, 0.85)), url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    position: relative;
    display: inline-block;
}

.cta h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary);
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background: linear-gradient(180deg, rgba(255, 225, 107, 0.95) 0%, var(--secondary) 100%);
    color: var(--primary);
    padding: 5rem 0 2rem;
    position: relative;
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--primary);
    opacity: 0.1;
}

footer::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--primary);
    opacity: 0.1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    position: relative;
}

.footer-logo h2 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.footer-logo h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.footer-logo:hover h2::after {
    width: 80px;
}

.footer-logo p {
    margin-bottom: 1.8rem;
    opacity: 0.9;
    line-height: 1.8;
    font-size: 1.05rem;
}

.social-media {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-media a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.social-media a:hover::before {
    width: 120%;
    height: 120%;
}

.social-media a i,
.social-media a .svg-replace {
    color: var(--secondary);
    width: 18px;
    height: 18px;
    font-size: 18px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.social-media a:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.social-media a:hover i,
.social-media a:hover .svg-replace {
    color: var(--primary);
    transform: scale(1.15);
}

.footer-links {
    display: flex;
    flex-direction: column;
    position: relative;
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.4rem;
    margin-bottom: 1.8rem;
    color: var(--primary);
    position: relative;
    padding-bottom: 0.8rem;
    display: inline-block;
}

.footer-links h3:after, .footer-contact h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.footer-links:hover h3:after, .footer-contact:hover h3:after {
    width: 80px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1.5rem;
}

.footer-links ul li {
    margin-bottom: 1rem;
    position: relative;
}

.footer-links ul li a {
    color: var(--primary);
    opacity: 0.85;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 500;
    padding-left: 22px;
    position: relative;
}

.footer-links ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    opacity: 1;
    transform: translateX(5px);
    color: var(--primary);
}

.footer-links ul li a:hover::before {
    opacity: 1;
    background-color: var(--primary);
    transform: translateY(-50%) scale(1.3);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    position: relative;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1.2rem;
    transition: transform 0.3s ease;
    padding: 0.5rem 0;
}

.footer-contact p:hover {
    transform: translateX(5px);
}

.footer-contact p i,
.footer-contact p .svg-replace {
    flex-shrink: 0;
    margin-top: 3px;
    width: 20px;
    height: 20px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.footer-contact p:hover i,
.footer-contact p:hover .svg-replace {
    transform: scale(1.2);
}

.footer-contact p span {
    color: var(--primary);
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(64, 78, 77, 0.15);
    color: var(--primary);
    position: relative;
}

.footer-bottom p {
    opacity: 0.9;
    font-size: 1rem;
}

.footer-bottom a {
    color: var(--primary);
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.footer-bottom a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.footer-bottom a:hover::after {
    width: 100%;
}

.footer-decorations {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.footer-shape {
    position: absolute;
    opacity: 0.1;
    background-color: var(--primary);
}

.footer-shape.shape-1 {
    top: 20%;
    left: 5%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.footer-shape.shape-2 {
    bottom: 15%;
    right: 5%;
    width: 120px;
    height: 120px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.footer-shape.shape-3 {
    bottom: 40%;
    left: 50%;
    width: 60px;
    height: 60px;
    transform: rotate(45deg);
}

/* Responsive footer fixes */
@media (max-width: 991px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 4rem 0 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-logo, .footer-links, .footer-contact {
        width: 100%;
        text-align: center;
    }
    
    .footer-logo p {
        text-align: center;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-logo h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-media {
        justify-content: center;
        margin-top: 1.5rem;
    }
    
    .footer-links h3:after, .footer-contact h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links ul {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links ul li a {
        padding-left: 0;
    }
    
    .footer-links ul li a::before {
        display: none;
    }
    
    .footer-contact p {
        justify-content: center;
        text-align: left;
    }
    
    .footer-contact p:hover {
        transform: translateY(-5px);
    }
    
    .footer-shape.shape-1 {
        width: 60px;
        height: 60px;
    }
    
    .footer-shape.shape-2 {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-bottom {
        font-size: 0.9rem;
    }
    
    .footer-logo h2 {
        font-size: 1.8rem;
    }
    
    .footer-content {
        gap: 2.5rem;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(64, 78, 77, 0.8), rgba(64, 78, 77, 0.8)), url('../images/page-header.jpg');
    background-size: cover;
    background-position: center;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 75px;
    position: relative;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--light);
    opacity: 0.5;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* About Page Styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    position: relative;
}

.about-text {
    position: relative;
}

.about-text h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
}

.about-text p {
    margin-bottom: 1.5rem;
}

.our-approach {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.our-approach h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.our-approach h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.approach-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.approach-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    position: relative;
}

.approach-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.team h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

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

.member-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.team-member h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.position {
    color: var(--gray);
    font-style: italic;
    margin-bottom: 1rem;
}

.values {
    background-color: var(--light-gray);
}

.values h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
}

.values-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.value-item {
    margin-bottom: 2rem;
}

.value-item h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.values-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Services Page Styles */
.services-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.services-intro-text h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.services-intro-text p {
    margin-bottom: 1.5rem;
}

.services-intro-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.services-detailed {
    background-color: var(--light-gray);
}

.services-detailed h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
}

.service-detailed-item {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid var(--secondary);
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background-color: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.service-content h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-content p {
    margin-bottom: 1.5rem;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
}

.feature i {
    color: var(--secondary);
    margin-right: 0.5rem;
}

.services-process h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50px;
    right: 50px;
    height: 2px;
    background-color: var(--secondary);
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 150px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-step h3 {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.testimonials {
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 3rem;
    color: var(--primary);
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: left;
    border-top: 4px solid var(--secondary);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.author-info h4 {
    margin-bottom: 0.2rem;
    color: var(--primary);
}

.author-info p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Enhanced Contact Page Styles */
.contact-info {
    text-align: center;
    padding-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-color: var(--secondary);
    opacity: 0.05;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    z-index: -1;
}

.contact-card-unified {
    background-color: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.contact-card-unified::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--secondary);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: left;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info-item .icon {
    background-color: var(--light-gray);
    color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-item:hover .icon {
    background-color: var(--secondary);
    color: var(--primary);
}

.contact-info-item .content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.contact-info-item .content p {
    color: var(--gray);
    line-height: 1.6;
}

/* Updated FAQ Section */
.faq-section {
    position: relative;
    overflow: hidden;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    background-color: white;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: white;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary);
    flex: 1;
    padding-right: 15px;
}

.faq-question .dropdown-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    transition: all 0.3s ease;
}

.faq-question .dropdown-icon .svg-replace {
    width: 14px;
    height: 14px;
    display: block;
    color: var(--secondary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: white;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray);
    line-height: 1.8;
}

.faq-answer.active {
    max-height: 300px; /* Adjust as needed to accommodate content */
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1.2rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 0 1.2rem 1.2rem;
    }
}

@media (max-width: 576px) {
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .faq-answer-content {
        padding: 0 1rem 1rem;
    }
}

/* Enhanced Contact Form Section */
.contact-form-section {
    background-color: var(--light);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    height: 80%;
    background-color: var(--secondary);
    opacity: 0.05;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    z-index: 0;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
    position: relative;
    z-index: 2;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    overflow: hidden;
}

.contact-form-container {
    padding: 3rem;
    position: relative;
}

.form-header {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.form-header::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary);
}

.form-subtitle {
    color: var(--gray);
    margin-bottom: 2.5rem;
    font-size: 1.15rem;
    text-align: center;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-family: 'Calibri', 'Arial', sans-serif;
    transition: all 0.3s ease;
    background-color: #fafafa;
    color: var(--primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
    font-size: 0.9rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(255, 225, 107, 0.2);
    outline: none;
    background-color: white;
}

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

.btn-form {
    background-color: var(--primary);
    color: var(--light);
    padding: 1rem 2rem;
    font-size: 1rem;
    border: none;
    width: 100%;
    margin-top: 1rem;
}

.btn-form:hover {
    background-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.contact-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.contact-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(64, 78, 77, 0.85);
    color: white;
    padding: 1rem;
    font-size: 0.9rem;
    text-align: center;
}

.image-caption i {
    color: var(--secondary);
    margin-right: 0.5rem;
}

@media (max-width: 1100px) {
    nav ul li {
        margin-left: 1rem;
    }
    
    nav ul li a {
        font-size: 0.9rem;
    }
}

@media (max-width: 991px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .zoom-scheduler-container {
        border-radius: 0 0 10px 10px;
        padding: 2rem;
    }
    
    .vertical-divider {
        height: 80px;
        width: 100%;
        margin: 0;
        justify-content: center;
        background-color: var(--light-gray);
    }
    
    .vertical-divider span {
        transform: none;
    }

    .intro-content,
    .about-content,
    .values-content,
    .services-intro-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .intro-text,
    .about-text,
    .services-intro-text {
        order: 2;
    }
    
    .intro-image,
    .about-image,
    .services-intro-image {
        order: 1;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .process-step {
        margin-bottom: 2rem;
    }
    
    .service-detailed-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-icon-large {
        margin: 0 auto 1.5rem;
    }

    /* Responsive styles for diagonal split */
    .diagonal-bg-left {
        clip-path: polygon(0 0, 0 100%, 100% 80%);
    }
    
    .diagonal-bg-right {
        clip-path: polygon(0 80%, 100% 0, 100% 100%);
    }
    
    .intro-text {
        background-color: rgba(255, 255, 255, 0.9);
        margin: 0 auto;
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    
    header {
        padding: 0.8rem 0;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    nav ul {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: var(--primary);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
        opacity: 0;
        z-index: 1000;
        padding: 0;
    }
    
    nav ul.active {
        max-height: 500px;
        opacity: 1;
        padding: 1rem 0;
        overflow-y: auto;
    }
    
    nav ul li {
        margin: 0;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        transition-delay: calc(0.05s * var(--i, 0));
        text-align: center;
    }
    
    nav ul.active li {
        opacity: 1;
        transform: translateY(0);
        padding: 0.5rem 2rem;
    }
    
    nav ul li a {
        display: block;
        padding: 0.8rem 0;
        font-size: 1rem;
    }
    
    .mobile-toggle {
        display: block;
        cursor: pointer;
        font-size: 1.5rem;
        color: var(--secondary);
        position: relative;
        z-index: 1001;
    }
    
    .language-toggle {
        margin-left: auto;
        margin-right: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .testimonial-slider {
        grid-template-columns: 1fr;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid, 
    .client-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    /* Adjusted diagonal split for mobile */
    .diagonal-bg-left {
        clip-path: polygon(0 0, 0 100%, 100% 70%);
    }
    
    .diagonal-bg-right {
        clip-path: polygon(0 70%, 100% 0, 100% 100%);
    }
    
    .intro-content {
        padding: 0 1rem;
    }
    
    .intro-text {
        padding: 1.5rem;
        max-width: 100%;
        background-color: rgba(255, 255, 255, 0.9);
        margin: 0 auto;
    }
    
    .glassmorphism-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .intro h2, 
    .services-preview h2, 
    .cta h2,
    .about-text h2,
    .our-approach h2,
    .team h2,
    .values h2,
    .services-detailed h2,
    .services-process h2,
    .testimonials h2,
    .faq-section h2,
    .map-section h2 {
        font-size: 1.8rem;
    }
    
    .page-header {
        height: 30vh;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .contact-form-container,
    .zoom-scheduler-container {
        padding: 1.5rem;
    }
    
    .form-header {
        font-size: 1.6rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links, 
    .footer-contact {
        margin-top: 1.5rem;
    }
}

/* Enhanced Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--secondary);
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo {
    position: relative;
    z-index: 1001;
}

.logo h1 {
    margin: 0;
    font-size: 2rem;
    color: var(--primary);
}

/* Language Toggle */
.language-toggle {
    margin-left: 1.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.language-toggle span {
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    transition: all 0.3s ease;
    color: white;
}

.language-toggle span.active {
    background-color: var(--primary);
    color: white;
    font-weight: 700;
}

.language-toggle span:not(.active) {
    color: white;
}

.language-toggle span:not(.active):hover {
    color: var(--secondary);
    background-color: rgba(64, 78, 77, 0.1);
}

nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

nav ul li {
    margin-left: 1.5rem;
    position: relative;
}

nav ul li a {
    color: var(--primary);
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 5px 0;
    font-size: 0.95rem;
    white-space: nowrap;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

nav ul li a.active {
    color: var(--primary);
    font-weight: 700;
}

/* Vertical divider in contact form */
.vertical-divider {
    position: relative;
    text-align: center;
    margin: 0;
    height: 100%;
    width: 1px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vertical-divider span {
    position: relative;
    background-color: var(--secondary);
    padding: 1rem;
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
    display: block;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact form wrapper styling */
.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
    position: relative;
    z-index: 2;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    overflow: hidden;
}

.zoom-scheduler-container {
    padding: 3rem;
    background-color: var(--light-gray);
}

/* Responsive Styles */
@media (max-width: 1100px) {
    nav ul li {
        margin-left: 1rem;
    }
    
    nav ul li a {
        font-size: 0.9rem;
    }
}

@media (max-width: 991px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .zoom-scheduler-container {
        border-radius: 0 0 10px 10px;
        padding: 2rem;
    }
    
    .vertical-divider {
        height: 80px;
        width: 100%;
        margin: 0;
        justify-content: center;
        background-color: var(--light-gray);
    }
    
    .vertical-divider span {
        transform: none;
    }

    .intro-content,
    .about-content,
    .values-content,
    .services-intro-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .intro-text,
    .about-text,
    .services-intro-text {
        order: 2;
    }
    
    .intro-image,
    .about-image,
    .services-intro-image {
        order: 1;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .process-step {
        margin-bottom: 2rem;
    }
    
    .service-detailed-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-icon-large {
        margin: 0 auto 1.5rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    
    header {
        padding: 0.8rem 0;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background-color: var(--secondary);
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        padding: 4rem 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
        align-items: flex-start;
        overflow-y: auto;
    }
    
    nav ul.active {
        right: 0;
    }
    
    nav ul li {
        margin: 0;
        width: 100%;
        opacity: 0;
        transform: translateY(-10px);
    }
    
    nav ul li a {
        padding: 1rem 0;
        display: block;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .language-toggle {
        margin-left: 0;
        margin-top: 2rem;
        width: 100%;
        justify-content: center;
    }
    
    /* Mobile header overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.5);
        z-index: 999;
        display: none;
    }
    
    .mobile-menu-overlay.active {
        display: block;
    }
    
    /* Make form fields full width on mobile */
    .form-row {
        flex-direction: column;
    }
    
    .form-group {
        width: 100%;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer improvements for mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo, .footer-links, .footer-contact {
        margin-bottom: 1.5rem;
    }
    
    .social-media {
        justify-content: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
}

/* Contact Cards Section - New Layout */
.contact-cards-section {
    padding: 5rem 0 3rem;
    background-color: var(--light);
}

.contact-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background-color: var(--secondary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-card-icon .svg-replace {
    width: 24px;
    height: 24px;
}

.contact-card h3 {
    margin-bottom: 1.2rem;
    color: var(--primary);
    font-size: 1.4rem;
}

.contact-card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-card-content p {
    line-height: 1.6;
    font-size: 1rem;
    color: var(--gray);
}

/* Social media icons in contact card */
.social-media-contact {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.social-media-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-media-contact a .svg-replace {
    width: 16px;
    height: 16px;
    color: var(--secondary);
}

.social-media-contact a:hover {
    transform: translateY(-5px);
    background-color: white;
}

.social-media-contact a:hover .svg-replace {
    color: var(--primary);
}

/* Form with Map Section */
.contact-form-map-section {
    padding: 3rem 0 5rem;
    background-color: var(--light);
}

.contact-form-map-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.contact-form-column {
    padding: 3rem;
}

.contact-map-column {
    background-color: var(--light-gray);
    padding: 0;
    position: relative;
}

.map-container {
    height: 100%;
    width: 100%;
    position: relative;
}

.map-placeholder {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.map-placeholder h3 {
    margin-bottom: 1.5rem;
    color: var(--primary);
    text-align: center;
}

.map-image {
    flex-grow: 1;
    background-color: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-address {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.map-address .svg-replace {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.map-address p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--gray);
}

@media (max-width: 991px) {
    .contact-form-map-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info-column {
        padding: 2rem;
    }
}

/* Contact info column - new design replacing map */
.contact-info-column {
    background-color: var(--light-gray);
    padding: 3rem;
    position: relative;
}

.contact-info-container {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-info-container h3 {
    margin-bottom: 2rem;
    color: var(--primary);
    text-align: center;
    font-size: 1.8rem;
    position: relative;
}

.contact-info-container h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
}

.consolidated-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex-grow: 1;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: white;
    padding: 1.2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.contact-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-detail .svg-replace {
    color: var(--secondary);
    flex-shrink: 0;
    font-size: 1.5rem;
    width: 24px;
    height: 24px;
    margin-top: 0.25rem;
}

.contact-detail h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: var(--primary);
}

.contact-detail p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--gray);
}

.chinese-address {
    font-style: italic;
    margin-top: 0.5rem !important;
}

.contact-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: white;
    padding: 1.2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-social h4 {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    color: var(--primary);
}

@media (max-width: 991px) {
    .contact-form-map-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info-column {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-cards-container {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .contact-form-column,
    .contact-info-column {
        padding: 1.5rem;
    }
    
    .contact-form-map-container {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-group {
        width: 100%;
    }
    
    .contact-detail {
        padding: 1rem;
    }
    
    .contact-detail .svg-replace {
        font-size: 1.2rem;
        width: 20px;
        height: 20px;
    }
    
    .contact-detail h4 {
        font-size: 1rem;
    }
    
    .contact-detail p {
        font-size: 0.85rem;
    }
}

/* Decorative balls styling */
.decorative-balls {
    position: absolute;
    bottom: 40px;
    right: 50px;
    z-index: 2;
    display: flex;
    gap: 25px;
}

.ball {
    width: 60px;
    height: 60px;
    object-fit: contain;
    opacity: 0;
    animation-name: ballFadeIn;
    animation-fill-mode: forwards;
    animation-duration: 1.5s;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.ball-1 {
    animation-delay: 0.5s;
}

.ball-2 {
    animation-delay: 1.2s;
}

.ball-3 {
    animation-delay: 1.9s;
}

@keyframes ballFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive styling for balls */
@media (max-width: 768px) {
    .decorative-balls {
        bottom: 20px;
        left: 20px;
        gap: 15px;
    }
    
    .ball {
        width: 40px;
        height: 40px;
    }
}

/* Philosophy Page Styles */
.philosophy-section {
    padding: 5rem 0;
    background-color: var(--light);
    position: relative;
}

/* Make sure to add this HTML element between the belief and pillar sections: 
<div style="height: 15rem; width: 100%; display: block; clear: both;"></div> */

.philosophy-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    align-items: center;
}

.philosophy-text {
    position: relative;
}

.philosophy-text h2 {
    font-size: 2.6rem;
    color: var(--primary);
    margin-bottom: 2rem;
    position: relative;
}

.philosophy-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--secondary);
}

.philosophy-text p {
    margin-bottom: 1.8rem;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark);
}

.philosophy-highlight {
    background-color: var(--light-gray);
    padding: 2rem;
    border-left: 4px solid var(--secondary);
    border-radius: 0 8px 8px 0;
    margin: 3rem 0;
}

.philosophy-highlight h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.philosophy-highlight p {
    margin-bottom: 0;
}

.philosophy-highlight .highlight {
    color: var(--primary);
    font-weight: 700;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 2px;
}

.philosophy-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.philosophy-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.philosophy-image:hover img {
    transform: scale(1.05);
}

/* New Philosophy Belief Section */
.philosophy-belief {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, var(--light) 0%, rgba(251, 255, 242, 0.8) 100%);
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.philosophy-belief::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: var(--secondary);
    opacity: 0.03;
    z-index: 0;
}

/* Spacer between belief and pillars */
.belief-pillars-spacer {
    height: 15rem;
    background: transparent;
    width: 100%;
    display: block;
    position: relative;
}

/* Add this to your HTML: <div class="belief-pillars-spacer"></div> between the belief and pillars sections */

.belief-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.belief-highlight {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 2.5rem 3rem;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(64, 78, 77, 0.05);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    text-align: center;
    width: 100%;
}

.belief-highlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(64, 78, 77, 0.07);
}

.belief-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--secondary);
}

.belief-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--light-gray);
}

.belief-highlight h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.belief-highlight h2::before, 
.belief-highlight h2::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--secondary);
    opacity: 0.4;
}

.belief-highlight h2::before {
    top: -8px;
    left: -15px;
    border-right: none;
    border-bottom: none;
}

.belief-highlight h2::after {
    bottom: -8px;
    right: -15px;
    border-left: none;
    border-top: none;
}

.belief-quote-marks {
    display: none;
}

.belief-highlight p {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--dark);
    position: relative;
    z-index: 1;
    font-weight: 300;
}

.belief-highlight .highlight {
    color: var(--primary);
    font-weight: 600;
    position: relative;
    display: inline-block;
    background: none;
    padding: 0 3px;
    transition: all 0.4s ease;
    text-decoration: none !important;
    border-bottom: none !important;
}

.belief-highlight .highlight:hover {
    color: var(--primary);
    background: none;
    transform: translateY(-1px);
    text-decoration: none !important;
    border-bottom: none !important;
}

.philosophy-pillars {
    position: relative;
    padding: 5rem 0;
    z-index: 1;
}

.philosophy-pillars .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.philosophy-pillars .video-background video {
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.philosophy-pillars .container {
    position: relative;
    z-index: 2;
}

.pillar-card {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.belief-highlight {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.philosophy-pillars h2 {
    text-align: center;
    font-size: 2.6rem;
    color: var(--primary);
    margin-bottom: 3.5rem;
    position: relative;
}

.philosophy-pillars h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
    font-size: 2rem;
}

.pillar-icon .svg-replace {
    width: 35px;
    height: 35px;
}

.pillar-card h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.pillar-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--secondary);
}

.pillar-card p {
    color: var(--dark);
    line-height: 1.8;
    font-size: 1.1rem;
    flex-grow: 1;
}

/* Philosophy Image Section */
.philosophy-image-section {
    padding: 5rem 0;
    background-color: var(--light);
}

.philosophy-image-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
}

.philosophy-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.philosophy-image-wrapper:hover .philosophy-main-image {
    transform: scale(1.03);
}

@media (max-width: 991px) {
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .philosophy-text {
        order: 2;
    }
    
    .philosophy-image {
        order: 1;
    }
    
    .philosophy-pillars {
        padding: 4rem 0;
    }
    
    .belief-highlight {
        padding: 2.5rem 3rem;
    }
    
    .belief-highlight h2 {
        font-size: 2.2rem;
    }
    
    .belief-highlight h2::before, 
    .belief-highlight h2::after {
        width: 30px;
        height: 30px;
    }
    
    .belief-highlight p {
        font-size: 1.2rem;
    }
    
    .belief-quote-marks {
        font-size: 8rem;
    }
    
    .belief-quote-open {
        top: 30px;
        left: 30px;
    }
    
    .belief-quote-close {
        bottom: 20px;
        right: 30px;
    }
    
    .pillar-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .philosophy-text h2,
    .philosophy-pillars h2 {
        font-size: 2.2rem;
    }
    
    .belief-highlight h2 {
        font-size: 1.8rem;
    }
    
    .belief-highlight h2::before, 
    .belief-highlight h2::after {
        width: 25px;
        height: 25px;
        border-width: 3px;
    }
    
    .belief-highlight h2::before {
        top: -10px;
        left: -20px;
    }
    
    .belief-highlight h2::after {
        bottom: -10px;
        right: -20px;
    }
    
    .belief-quote-marks {
        font-size: 6rem;
    }
    
    .belief-quote-open {
        top: 20px;
        left: 20px;
    }
    
    .belief-quote-close {
        bottom: 15px;
        right: 20px;
    }
    
    .philosophy-highlight h3 {
        font-size: 1.6rem;
    }
    
    .philosophy-text p {
        font-size: 1.1rem;
    }
    
    .belief-highlight p {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .pillar-card {
        padding: 2rem;
    }
    
    .pillar-icon {
        width: 70px;
        height: 70px;
    }
    
    .pillar-card h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .philosophy-text h2,
    .philosophy-pillars h2 {
        font-size: 1.8rem;
    }
    
    .belief-highlight h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .belief-highlight h2::before, 
    .belief-highlight h2::after {
        width: 20px;
        height: 20px;
        border-width: 2px;
    }
    
    .belief-highlight h2::before {
        top: -8px;
        left: -14px;
    }
    
    .belief-highlight h2::after {
        bottom: -8px;
        right: -14px;
    }
    
    .philosophy-highlight {
        padding: 1.5rem;
    }
    
    .belief-highlight {
        padding: 2rem 1.5rem;
        border-left-width: 4px;
        border-right-width: 4px;
    }
    
    .belief-highlight::before,
    .belief-highlight::after {
        height: 4px;
    }
    
    .belief-quote-marks {
        font-size: 4rem;
    }
    
    .belief-quote-open {
        top: 15px;
        left: 15px;
    }
    
    .belief-quote-close {
        bottom: 10px;
        right: 15px;
    }
    
    .belief-highlight p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .pillar-card h3 {
        font-size: 1.4rem;
    }
    
    .pillar-card p {
        font-size: 1rem;
    }
    
    .philosophy-pillars {
        padding: 3rem 0;
    }
}

/* End Philosophy Page Styles */ 

.enlarged-text {
    font-size: 1.5em !important;
    font-weight: 700 !important;
}

.highlight {
    color: var(--primary);
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding: 0 2px;
    border-bottom: none;
    text-decoration: none !important;
}

.highlight::after {
    display: none;
}

.highlight:hover {
    color: var(--primary);
    transform: none;
    text-shadow: none;
}

.highlight:hover::after {
    display: none;
}

@keyframes highlight-pulse {
    0%, 100% {
        transform: none;
        opacity: 1;
        text-shadow: none;
    }
}

.logo-img {
    height: 70px;
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
    margin-top: 0;
    margin-bottom: 0;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 10px;
    display: block;
}

/* Logo container to display logo and text inline */
.logo {
    display: flex;
    align-items: center;
}

/* Update Footer logo container to align items properly */
.footer-logo {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .footer-logo {
        align-items: center;
    }
}

/* Research Section Styles for value.html */
.research-section {
    position: relative;
    padding: 0rem 0 !important; /* Increased padding for more height */
    min-height: 800px; /* Set a minimum height */
}

.research-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
}

.research-diagram {
    margin: 60px auto 60px !important; /* Increased margins */
    width: 100%;
    position: relative;
}

.research-diagram img {
    width: 100%;
    max-width: 800px; /* Slightly larger image */
    margin: 60px auto 60px !important; /* Increased margins */
    display: block;
}

.research-benefits {
    position: relative;
    left: 0;
    right: 0;
    z-index: 3;
    margin-bottom: 60px !important; /* Increased margin */
    padding: 2rem 0;
}

.benefits-grid {
    text-align: center;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: 60px !important; /* Increased margin */
    gap: 40px; /* Increased gap */
}

.benefit-item {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.benefit-item h3 {
    color: var(--primary);
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
}

.benefit-item p {
    color: var(--dark);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Responsive adjustments for research section */
@media (max-width: 991px) {
    .research-section {
        padding: 6rem 0 !important;
        min-height: 700px;
    }
    
    .diagonal-bg-left {
        clip-path: polygon(0 0, 55% 0, 45% 100%, 0 100%) !important;
    }
    
    .diagonal-bg-right {
        clip-path: polygon(55% 0, 100% 0, 100% 100%, 45% 100%) !important;
    }
}

@media (max-width: 768px) {
    .research-section {
        padding: 5rem 0 !important;
        min-height: 600px;
    }
    
    .research-diagram img {
        margin: 40px auto !important;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .diagonal-bg-left {
        clip-path: polygon(0 0, 100% 0, 100% 30%, 0 100%) !important;
    }
    
    .diagonal-bg-right {
        clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%) !important;
    }
}

/* Research decorative elements */
.decorative-elements {
    position: relative;
    width: 100%;
    height: 120px;
    margin-top: 40px;
    margin-bottom: -20px;
    z-index: 10;
}

.ball {
    position: absolute;
    bottom: 20px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.ball-1 {
    left: 5%;
    width: 60px;
    height: 60px;
}

.ball-2 {
    left: 15%;
    width: 45px;
    height: 45px;
    bottom: 15px;
}

.ball-3 {
    left: 25%;
    width: 55px;
    height: 55px;
    bottom: 10px;
}

.leaf {
    position: absolute;
    bottom: 20px;
    right: 10%;
    width: 80px;
    height: auto;
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.15));
}

/* Responsive adjustments for decorative elements */
@media (max-width: 768px) {
    .decorative-elements {
        height: 100px;
    }
    
    .ball-1 {
        left: 5%;
        width: 50px;
        height: 50px;
    }
    
    .ball-2 {
        left: 15%;
        width: 35px;
        height: 35px;
    }
    
    .ball-3 {
        left: 25%;
        width: 40px;
        height: 40px;
    }
    
    .leaf {
        right: 8%;
        width: 60px;
    }
}

@media (max-width: 480px) {
    .decorative-elements {
        height: 80px;
    }
    
    .ball-1 {
        width: 40px;
        height: 40px;
    }
    
    .ball-2 {
        width: 30px;
        height: 30px;
    }
    
    .ball-3 {
        width: 35px;
        height: 35px;
    }
    
    .leaf {
        width: 50px;
    }
}

/* Enhanced Contact Form Styles */
.contact-form-column {
    padding: 3rem;
    transition: all 0.3s ease;
}

/* Form success animation */
.form-success-animation {
    animation: formSuccessGlow 2s ease-in-out;
    transform-origin: center;
}

@keyframes formSuccessGlow {
    0% { box-shadow: 0 0 0 rgba(255, 225, 107, 0); transform: scale(1); }
    25% { box-shadow: 0 0 30px rgba(255, 225, 107, 0.7); transform: scale(1.02); }
    50% { box-shadow: 0 0 20px rgba(255, 225, 107, 0.5); transform: scale(1.01); }
    75% { box-shadow: 0 0 30px rgba(255, 225, 107, 0.7); transform: scale(1.02); }
    100% { box-shadow: 0 0 0 rgba(255, 225, 107, 0); transform: scale(1); }
}

.form-header {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.form-header::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary);
}

.form-subtitle {
    color: var(--gray);
    margin-bottom: 2.5rem;
    font-size: 1.15rem;
    text-align: center;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Calibri', 'Arial', sans-serif;
    transition: all 0.3s ease;
    background-color: #fafafa;
    color: var(--primary);
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(255, 225, 107, 0.2);
    outline: none;
    background-color: white;
    transform: translateY(-2px);
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    opacity: 0.5;
}

.form-group input.invalid,
.form-group textarea.invalid {
    border-color: #ff5252;
    background-color: #fff0f0;
    animation: shake 0.4s linear;
}

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

.btn-form {
    background-color: var(--primary);
    color: var(--light);
    padding: 1.1rem 2rem;
    font-size: 1rem;
    border: none;
    width: 100%;
    margin-top: 1rem;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-form:hover {
    background-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.btn-form:active {
    transform: translateY(-1px);
}

.btn-form.loading {
    background-color: #555;
    color: #fff;
}

/* Loading spinner */
.loading-spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s linear infinite;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

@keyframes spin {
    to { transform: translateY(-50%) rotate(360deg); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

/* Form message styles */
.form-message {
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    max-width: 100%;
}

.form-message.visible {
    opacity: 1;
    transform: translateY(0);
}

.form-message.success {
    background-color: #e8f5e9;
    border-left: 4px solid #4caf50;
    color: #2e7d32;
}

.form-message.error {
    background-color: #ffebee;
    border-left: 4px solid #f44336;
    color: #c62828;
}

.message-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    margin-right: 12px;
    fill: currentColor;
}

.message-text {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Contact info column enhances */
.contact-info-column {
    background-color: #f8f9fa;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.contact-info-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--secondary);
}

.contact-info-container {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-info-container h3 {
    margin-bottom: 2rem;
    color: var(--primary);
    text-align: center;
    font-size: 1.8rem;
    position: relative;
}

.contact-info-container h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
}

.consolidated-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex-grow: 1;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: white;
    padding: 1.2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.contact-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-left: 4px solid var(--secondary);
}

.contact-detail .svg-replace {
    color: var(--secondary);
    flex-shrink: 0;
    font-size: 1.5rem;
    width: 24px;
    height: 24px;
    margin-top: 0.25rem;
}

.contact-detail h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: var(--primary);
}

.contact-detail p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--gray);
}

.chinese-address {
    font-style: italic;
    margin-top: 0.5rem !important;
}

.contact-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: white;
    padding: 1.2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-top: 1.5rem;
}

.contact-social h4 {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    color: var(--primary);
}

.social-media-contact {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-media-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: #f0f2e9;
    border-radius: 50%;
    color: var(--primary);
    transition: all 0.3s ease;
}

.social-media-contact a .svg-replace {
    font-size: 1.2rem;
    width: 20px;
    height: 20px;
}

.social-media-contact a:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.social-media-contact a:hover .svg-replace {
    color: var(--primary);
}

.belief-highlight .highlight,
.belief-highlight .highlight:hover,
.belief-highlight .highlight:after,
.belief-highlight .highlight:before {
    background: none !important;
    text-decoration: none !important;
    border-bottom: none !important;
    position: relative;
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    transition: all 0.4s ease;
}

/* Fade-in animations for decorative elements */
.fade-in, .decorative-fade {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s cubic-bezier(0.33, 1, 0.68, 1), 
                transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
    backface-visibility: hidden;
    perspective: 1000px;
    animation: fadeIn 0.8s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.fade-in.visible, .decorative-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* Special animation for balls and leaves */
.decorative-fade {
    animation-duration: 1.2s;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    animation-fill-mode: forwards;
}

@media (prefers-reduced-motion: reduce) {
    .fade-in, .decorative-fade {
        transition: none;
        animation: none;
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer navigation active link */
.footer-links ul li a.active {
    color: var(--primary);
    font-weight: bold;
    opacity: 1;
    position: relative;
}

.footer-links ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary);
}