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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'GenSenRounded TW', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #f8f8f8;
    color: #2d2d2d;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Load Custom Fonts */
@import url('https://fonts.cdnfonts.com/css/butler');

@font-face {
    font-family: 'GenSenRounded TW';
    src: url('https://font.emtech.cc/fonts/GenSenRoundedTW-R.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'GenSenRounded TW';
    src: url('https://font.emtech.cc/fonts/GenSenRoundedTW-B.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'GenSenRounded TW';
    src: url('https://font.emtech.cc/fonts/GenSenRoundedTW-L.woff2') format('woff2');
    font-weight: 300;
    font-display: swap;
}

/* Language Toggle */
.language-toggle {
    display: flex;
    gap: 0;
    background: rgba(62, 81, 60, 0.1);
    padding: 4px;
    border-radius: 30px;
    margin-left: 20px;
}

.lang-btn {
    padding: 8px 20px;
    border: none;
    background: transparent;
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.navbar.scrolled .lang-btn {
    color: white;
}

.lang-btn.active {
    background: #3E513C;
    color: white;
}

.navbar.scrolled .lang-btn.active {
    background: white;
    color: #3E513C;
}

.lang-btn:hover {
    opacity: 0.8;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    background: transparent;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    background: #3E513C;
    backdrop-filter: blur(20px);
    padding: 16px 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo {
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.navbar.scrolled .nav-link {
    color: white;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #3E513C;
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: #3E513C;
    transform: translateY(-2px);
}

.navbar.scrolled .nav-link:hover {
    color: #BBD686;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.navbar.scrolled .menu-toggle span {
    background: #FAFAFA;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: url('media/index_bg.jpg') center/cover no-repeat;
    padding: 40px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.2) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-logo-wrapper {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    width: clamp(300px, 45vw, 525px);
    height: auto;
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

/* Brand Video Section */
.brand-video-section {
    background: #000000;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.brand-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.brand-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Scroll Indicator */
.scroll-indicator {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    margin-bottom: 40px;
    animation: float 2s ease-in-out infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
    opacity: 0.8;
}

.wheel {
    width: 4px;
    height: 10px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

/* Container and Section Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

.container-full {
    max-width: 100%;
    padding: 0 80px;
}

.section {
    padding: 120px 0;
    position: relative;
}

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

.section-title {
    font-size: clamp(48px, 6vw, 84px);
    font-weight: 800;
    color: #2d2d2d;
    margin-bottom: 32px;
    position: relative;
    display: inline-block;
    letter-spacing: -0.03em;
    line-height: 1.1;
    background: linear-gradient(135deg, #2d2d2d 0%, #3E513C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3E513C, #BBD686);
    border-radius: 2px;
    opacity: 1;
}

.section-subtitle {
    font-size: clamp(16px, 1.5vw, 20px);
    color: #6b6b6b;
    font-weight: 400;
    margin-top: 32px;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.01em;
}

/* Brand Story Section */
.brand-story-section {
    background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 100%);
    position: relative;
}

.brand-story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(62, 81, 60, 0.1) 50%, transparent 100%);
}

.story-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 120px;
    align-items: center;
}

.story-text p {
    font-size: clamp(18px, 2vw, 26px);
    line-height: 2;
    color: #3a3a3a;
    letter-spacing: 0.01em;
    font-weight: 400;
    position: relative;
    padding-left: 32px;
}

.story-text p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 4px;
    height: calc(100% - 24px);
    background: linear-gradient(180deg, #3E513C 0%, #BBD686 100%);
    border-radius: 2px;
}

.story-video {
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.story-video video {
    width: 100%;
    height: auto;
    display: block;
}

/* Mission Section */
.mission-section {
    background:
        linear-gradient(135deg, #3E513C 0%, #2d3d2b 50%, #3E513C 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(187, 214, 134, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

.mission-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(251, 148, 96, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 25s ease-in-out infinite reverse;
}

.mission-section .section-title {
    color: white;
    background: linear-gradient(135deg, #ffffff 0%, #BBD686 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-section .section-title::after {
    background: linear-gradient(90deg, #BBD686, #FB9460);
}

.mission-content {
    position: relative;
    z-index: 1;
}

.mission-content p {
    font-size: clamp(18px, 2vw, 24px);
    line-height: 2.2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* Core Values Section */
.values-section {
    background: linear-gradient(135deg, #3E513C 0%, #2d3d2b 100%);
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(187, 214, 134, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.values-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 148, 96, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.values-section .section-title {
    color: white;
    background: linear-gradient(135deg, #ffffff 0%, #BBD686 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.values-section .section-title::after {
    background: linear-gradient(90deg, #BBD686, #FB9460);
}

.values-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.value-card {
    padding: 48px 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(187, 214, 134, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.value-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(187, 214, 134, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.value-card:hover::before {
    opacity: 1;
}

.value-number {
    font-size: 72px;
    font-weight: 300;
    font-family: 'Butler', 'Georgia', serif;
    background: linear-gradient(135deg, #BBD686 0%, #FB9460 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.9;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    line-height: 1;
}

.value-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.value-text {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Services Section */
.services-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(62, 81, 60, 0.1) 50%, transparent 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 64px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 32px;
    overflow: hidden;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.04);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: none;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(62, 81, 60, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(0, 0, 0, 0.04);
}

.service-card:hover::before {
    opacity: 1;
}

.service-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
    border-radius: 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: saturate(0.9) brightness(1.02);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
    filter: saturate(1.1) brightness(1.05);
}

.service-content {
    padding: 40px;
    position: relative;
    z-index: 2;
}

.service-title {
    font-size: 28px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
    background: linear-gradient(135deg, #2d2d2d 0%, #3E513C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-description {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    letter-spacing: 0.01em;
    font-weight: 400;
}

/* Partners Section */
.partners-section {
    background: #f8f8f8;
    overflow: hidden;
}

.partners-marquee {
    overflow: hidden;
    padding: 40px 0;
}

.marquee-content {
    display: flex;
    gap: 60px;
    animation: marquee 20s linear infinite;
}

.partner-logo {
    height: 90px;
    width: auto;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.15);
}

/* Event Highlights Section */
.highlights-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
    padding: 140px 0;
    position: relative;
}

.highlights-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(62, 81, 60, 0.1) 50%, transparent 100%);
}

.highlights-grid {
    columns: 4;
    column-gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.highlight-item {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(0, 0, 0, 0.03);
    break-inside: avoid;
    margin-bottom: 20px;
    display: block;
}

.highlight-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 1;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.highlight-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

.highlight-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(0, 0, 0, 0.03);
    z-index: 10;
}

.highlight-item:hover::after {
    opacity: 0;
}

.highlight-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.05) saturate(1.1);
}

/* Products Section */
.products-section {
    background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 100%);
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(62, 81, 60, 0.1) 50%, transparent 100%);
}

.products-category {
    margin-bottom: 80px;
}

.products-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 800;
    color: #2d2d2d;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: -0.03em;
    line-height: 1.1;
    background: linear-gradient(135deg, #2d2d2d 0%, #3E513C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E513C, #BBD686);
    border-radius: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    position: relative;
    background: white;
    border-radius: 32px;
    overflow: visible;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.03);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(62, 81, 60, 0.05) 0%, rgba(187, 214, 134, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
    pointer-events: none;
    border-radius: 32px;
}

.product-card-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 32px 32px 0 0;
    position: relative;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.product-card .product-name {
    padding: 32px;
    text-align: center;
    z-index: 2;
    position: relative;
}

.product-card .product-name-zh {
    font-size: 22px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
    line-height: 1.3;
    background: linear-gradient(135deg, #2d2d2d 0%, #3E513C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-card .product-name-en {
    font-size: 14px;
    font-weight: 500;
    color: #6b6b6b;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.product-card:hover {
    transform: translateY(-16px);
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(0, 0, 0, 0.03);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: saturate(1.05) brightness(1.02);
}

.product-card:hover img {
    transform: scale(1.1) rotate(2deg);
    filter: saturate(1.15) brightness(1.05);
}

/* Contact Section */
.contact-section {
    background:
        linear-gradient(135deg, rgba(187, 214, 134, 0.95) 0%, rgba(62, 81, 60, 0.92) 50%, rgba(62, 81, 60, 0.98) 100%),
        radial-gradient(ellipse at top right, rgba(251, 148, 96, 0.2), transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(187, 214, 134, 0.15), transparent 50%);
    color: white;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="none" width="1200" height="600"/><circle cx="200" cy="100" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="500" cy="300" r="2" fill="rgba(255,255,255,0.08)"/><circle cx="900" cy="200" r="2" fill="rgba(255,255,255,0.12)"/><circle cx="1100" cy="500" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
}

.contact-section .section-title {
    color: white;
}

.contact-section .section-title::after {
    background: rgba(255, 255, 255, 0.5);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-text {
    padding-right: 40px;
}

.contact-heading {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    margin-bottom: 35px;
    line-height: 1.5;
    letter-spacing: -0.5px;
}

.contact-text p {
    font-size: clamp(16px, 1.8vw, 19px);
    line-height: 2;
    margin-bottom: 24px;
    opacity: 0.95;
    letter-spacing: 0.3px;
}

/* Contact Form */
.contact-form-container {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 16px;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #3E513C;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #BBD686;
    box-shadow: 0 0 0 4px rgba(187, 214, 134, 0.1);
}

.submit-btn {
    padding: 20px 60px;
    background: linear-gradient(135deg, #FB9460 0%, #FF6B6B 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow:
        0 4px 15px rgba(251, 148, 96, 0.3),
        0 10px 30px rgba(251, 148, 96, 0.2);
    align-self: center;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 6px 20px rgba(251, 148, 96, 0.4),
        0 15px 40px rgba(251, 148, 96, 0.3);
}

.submit-btn:active {
    transform: translateY(-2px) scale(1);
}

/* Locations Section */
.locations-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
    position: relative;
}

.locations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(62, 81, 60, 0.1) 50%, transparent 100%);
}

.locations-section .section-header {
    margin-bottom: 40px;
}

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

.map-container {
    width: 100%;
    height: 1000px;
    background: url('media/Contact/maps.svg') center/contain no-repeat;
    background-position: center center;
    background-size: contain;
    position: relative;
    overflow: visible;
}

.location-marker {
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translate(-50%, -100%);
}

.marker-dot {
    width: 40px;
    height: 50px;
    background: #EA4335;
    position: relative;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 4px 15px rgba(234, 67, 53, 0.5);
    animation: bounce 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.marker-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
}

.location-marker:hover .marker-dot {
    transform: rotate(-45deg) scale(1.15);
    box-shadow: 0 8px 25px rgba(234, 67, 53, 0.7);
}

.marker-info {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(0, 0, 0, 0.04);
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.location-marker:hover .marker-info {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

.marker-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 10px;
}

.marker-info p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.location-link {
    display: inline-block;
    color: #FB9460;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.location-link:hover {
    color: #3E513C;
    transform: translateX(5px);
}

/* Footer */
.footer {
    background: #2a3d2a;
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
    text-align: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-logo {
    height: 60px;
    width: auto;
}

.footer-tagline {
    font-size: 16px;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #BBD686;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-item img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #FB9460;
}

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

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #BBD686;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #FB9460;
    transform: translateY(-5px);
}

.social-link img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.sub-brand-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.sub-brand-logo {
    height: 120px;
    width: auto;
}

.sub-brand-link:hover {
    opacity: 0.8;
    transform: translateY(-5px);
}

.sub-brand-link span {
    color: white;
    font-size: 16px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.6;
}

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

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

@keyframes scroll {
    0% {
        top: 10px;
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        top: 30px;
        opacity: 0;
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: rotate(-45deg) translateY(0);
    }
    50% {
        transform: rotate(-45deg) translateY(-10px);
    }
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(0px);
}

.lightbox.active {
    background: rgba(0, 0, 0, 0.95);
    opacity: 1;
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 16px;
    box-shadow:
        0 20px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    font-size: 48px;
    color: white;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    font-weight: 300;
}

.lightbox-close:hover {
    transform: rotate(90deg);
    color: #BBD686;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.stagger-1 {
    transition-delay: 0.15s;
}

.stagger-2 {
    transition-delay: 0.3s;
}

.stagger-3 {
    transition-delay: 0.45s;
}

.stagger-4 {
    transition-delay: 0.6s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    .section {
        padding: 80px 0;
    }

    .nav-menu {
        gap: 25px;
    }

    .story-content {
        gap: 40px;
    }

    .contact-content {
        gap: 40px;
    }

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

    .map-container {
        height: 600px;
        background-size: contain;
    }

    .locations-section .section-header {
        margin-bottom: 30px;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .container-full {
        padding: 0 24px;
    }

    .language-toggle {
        top: 15px;
        right: 15px;
        padding: 6px;
    }

    .lang-btn {
        padding: 6px 15px;
        font-size: 13px;
    }

    .nav-container {
        padding: 0 24px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: rgba(62, 81, 60, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 50px 30px;
        gap: 30px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    }

    .nav-menu .nav-link {
        color: white !important;
    }

    .nav-menu .nav-link:hover {
        color: #BBD686 !important;
    }

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

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

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

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

    .section {
        padding: 80px 0;
    }

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

    .section-title {
        font-size: clamp(32px, 8vw, 40px);
        margin-bottom: 24px;
    }

    .section-subtitle {
        font-size: clamp(15px, 4vw, 18px);
        margin-top: 30px;
    }

    .hero-title {
        font-size: clamp(36px, 10vw, 48px);
    }

    .hero-subtitle {
        font-size: clamp(18px, 5vw, 24px);
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .story-text p {
        font-size: 16px;
        line-height: 2;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .value-card {
        padding: 45px 35px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .service-image {
        height: 260px;
    }

    .service-content {
        padding: 35px 30px;
    }

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

    .contact-text {
        padding-right: 0;
    }

    .contact-form-container {
        padding: 35px;
    }

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

    .map-container {
        height: 350px;
        background-size: contain;
    }

    .locations-section .section-header {
        margin-bottom: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-info {
        grid-template-columns: 1fr;
        gap: 35px;
    }

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

    .highlights-grid {
        columns: 3;
        column-gap: 18px;
    }

    /* Speed up partner logos marquee on mobile */
    .marquee-content {
        animation: marquee 10s linear infinite;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .container-full {
        padding: 0 20px;
    }

    .section {
        padding: 70px 0;
    }

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

    .hero-title {
        font-size: 32px;
        letter-spacing: 0;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .value-card {
        padding: 35px 28px;
    }

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

    .contact-form-container {
        padding: 28px;
    }

    .submit-btn {
        padding: 16px 40px;
        font-size: 16px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .highlights-grid {
        columns: 2;
        column-gap: 15px;
    }

    .nav-menu {
        width: 100%;
        padding: 40px 24px;
    }

    .story-text p {
        font-size: 15px;
    }

    .mission-content p {
        font-size: 15px;
        line-height: 2.2;
    }

    /* Speed up partner logos marquee on small mobile */
    .marquee-content {
        animation: marquee 5s linear infinite;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .language-toggle,
    .scroll-indicator,
    .contact-form {
        display: none;
    }
}
