/* ===================================
   MSBTrading Website Styles
   Colors extracted from logo:
   Primary Navy: #3d4e6e
   Primary Teal: #4db8b8
=================================== */

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

:root {
    --navy: #3d4e6e;
    --navy-dark: #2a3651;
    --navy-light: #546380;
    --teal: #4db8b8;
    --teal-dark: #3a9999;
    --teal-light: #6dd4d4;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-gray: #6c757d;
    --text-light: #adb5bd;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

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

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
}

.logo-img {
    width: 40px;
    height: 40px;
}

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

.nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

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

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--teal);
}

.btn-primary-nav {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
}

.btn-primary-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(77, 184, 184, 0.3);
}

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

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--navy);
    border-radius: 3px;
    transition: var(--transition);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 50%, var(--teal-dark) 100%);
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><circle cx="100" cy="100" r="300" fill="rgba(77,184,184,0.1)"/><circle cx="1000" cy="400" r="400" fill="rgba(77,184,184,0.05)"/></svg>') no-repeat center;
    background-size: cover;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 4rem 20px;
}

.hero-text {
    max-width: 800px;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(77, 184, 184, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    min-width: 150px;
}

.stat-card h3 {
    font-size: 2rem;
    color: var(--teal-light);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* Sections */
.section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

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

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Company Overview */
.company-overview {
    background: var(--light-bg);
}

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

.overview-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.overview-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.overview-card h3 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.overview-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Services Preview */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--teal);
    box-shadow: 0 12px 40px rgba(77, 184, 184, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.service-icon.construction::before {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
}

.service-icon.greenhouse::before {
    background: linear-gradient(135deg, var(--teal), #45b045);
}

.service-icon.logistics::before {
    background: linear-gradient(135deg, var(--navy-light), var(--teal));
}

.service-icon.trading::before {
    background: linear-gradient(135deg, var(--teal-dark), var(--navy));
}

.service-card h3 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--teal);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    gap: 1rem;
}

/* Why Choose */
.why-choose {
    background: var(--navy);
    color: var(--white);
}

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

.why-text h2 {
    color: var(--white);
    margin-bottom: 2rem;
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-list li {
    padding-left: 2rem;
    position: relative;
}

.why-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal-light);
    font-weight: bold;
    font-size: 1.3rem;
}

.why-list strong {
    display: block;
    color: var(--teal-light);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.why-list p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.why-image .image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--teal-dark), var(--navy-light));
    border-radius: 16px;
    opacity: 0.3;
}

/* International Highlight */
.international-highlight {
    background: linear-gradient(135deg, var(--light-bg), var(--white));
}

.international-card {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    align-items: center;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.international-content h2 {
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.international-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.globe-icon {
    font-size: 10rem;
    text-align: center;
    opacity: 0.2;
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--white);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-primary-large {
    display: inline-block;
    background: var(--white);
    color: var(--teal-dark);
    padding: 1.2rem 3rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 35px;
    height: 35px;
}

.footer-logo span {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}

.footer-tagline {
    color: var(--teal-light);
    font-style: italic;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col a:hover {
    color: var(--teal-light);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a:hover {
    color: var(--teal-light);
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: var(--white);
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 70px;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-text h2 {
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.content-text p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-image .image-box {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--teal-light), var(--navy-light));
    border-radius: 16px;
    opacity: 0.3;
}

/* Company Identity */
.company-identity {
    background: var(--light-bg);
}

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

.identity-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.identity-card h3 {
    color: var(--teal);
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.identity-card p {
    color: var(--navy);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Vision Mission */
.vision-mission {
    background: var(--light-bg);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.vm-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.vm-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.vm-card h2 {
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.vm-card p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.vm-card ul {
    list-style: none;
    margin-top: 1.5rem;
}

.vm-card ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: var(--text-gray);
    line-height: 1.6;
}

.vm-card ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--teal);
}

/* Leadership */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.leader-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.leader-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--teal));
    margin: 0 auto 1.5rem;
}

.leader-card h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.leader-title {
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.leader-share {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.leader-bio {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Core Values */
.core-values {
    background: var(--light-bg);
}

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

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.value-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--teal);
    opacity: 0.3;
    margin-bottom: 1rem;
}

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

.value-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Commitment */
.commitment-content {
    max-width: 900px;
    margin: 0 auto;
}

.commitment-content h2 {
    text-align: center;
    color: var(--navy);
    margin-bottom: 3rem;
}

.commitment-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.commitment-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.commitment-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.commitment-item h4 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.commitment-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Service Detail Pages */
.service-detail {
    padding: 4rem 0;
}

.service-detail.alternate {
    background: var(--light-bg);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.service-detail-grid.reverse {
    grid-template-columns: 1fr 2fr;
}

.service-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.badge-large {
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
}

.service-detail-content h2 {
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.service-intro {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-detail-content h3 {
    color: var(--navy);
    margin: 2rem 0 1rem;
}

.service-list {
    list-style: none;
    margin-bottom: 2rem;
}

.service-list li {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    line-height: 1.7;
}

.service-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: bold;
}

.service-list strong {
    color: var(--navy);
}

/* Approach Steps */
.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

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

.step h4 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-gray);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 12px;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit h4 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

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

/* Sidebar */
.sidebar-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.sidebar-box.highlight {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--white);
}

.sidebar-box h4 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.sidebar-box.highlight h4 {
    color: var(--white);
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid var(--light-bg);
}

.feature-list li:last-child {
    border-bottom: none;
}

.sidebar-box.highlight .feature-list li {
    color: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.related-services {
    list-style: none;
}

.related-services li {
    margin-bottom: 0.8rem;
}

.related-services a {
    color: var(--teal);
    font-weight: 500;
}

.related-services a:hover {
    text-decoration: underline;
}

.service-cta {
    margin-top: 2rem;
}

/* Logistics Features */
.logistics-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-box {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 12px;
}

.feature-box h4 {
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.feature-box p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Diversified Operations */
.diversified {
    background: var(--light-bg);
}

.diversified-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.diversified-content h2 {
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.hospitality-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    border-left: 4px solid var(--teal);
}

/* Integration Flow */
.integration {
    background: var(--light-bg);
}

.integration-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3rem;
}

.flow-step {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    min-width: 150px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.flow-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.flow-step h4 {
    color: var(--navy);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.flow-step p {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.flow-arrow {
    font-size: 2rem;
    color: var(--teal);
    font-weight: 300;
}

/* Project Types */
.project-types h2 {
    text-align: center;
    color: var(--navy);
    margin-bottom: 3rem;
}

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

.project-type-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.project-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.project-type-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-type-card h3 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.project-type-card ul {
    list-style: none;
}

.project-type-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
}

.project-type-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: bold;
}

/* Workflow */
.workflow {
    background: var(--light-bg);
}

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

.workflow-step {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.workflow-step .step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.workflow-step h3 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.workflow-step p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.step-deliverables {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--light-bg);
    font-size: 0.9rem;
    color: var(--text-gray);
}

.step-deliverables strong {
    color: var(--teal);
}

/* Industries & Capabilities */
.industries-grid, .capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.industry-card, .capability-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

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

.industry-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

.capability-section h3 {
    color: var(--navy);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--teal);
}

.capability-section ul {
    list-style: none;
}

.capability-section li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
}

.capability-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: bold;
}

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

.advantage-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.advantage-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--teal);
    opacity: 0.3;
    margin-bottom: 1rem;
}

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

.advantage-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Future Expansion */
.future-expansion {
    background: var(--light-bg);
}

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

.expansion-content h2 {
    text-align: center;
    color: var(--navy);
    margin-bottom: 2rem;
}

.expansion-content > p {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.expansion-point {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.expansion-point h4 {
    color: var(--navy);
    margin-bottom: 0.8rem;
}

.expansion-point p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Global Pages */
.exhibition-highlight {
    background: var(--light-bg);
}

.exhibition-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.exhibition-intro {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.exhibition-details h4 {
    color: var(--navy);
    margin: 2rem 0 1rem;
}

.goals-list {
    list-style: none;
    margin: 1rem 0;
}

.goals-list li {
    padding: 0.8rem 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.exhibition-impact {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.exhibition-visual {
    position: sticky;
    top: 100px;
}

.exhibition-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.event-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.exhibition-card h4 {
    color: var(--navy);
    text-align: center;
    margin-bottom: 1.5rem;
}

.event-info p {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.exhibition-stats {
    display: flex;
    gap: 1rem;
    justify-content: space-around;
}

.stat-box {
    text-align: center;
    background: var(--light-bg);
    padding: 1.5rem 1rem;
    border-radius: 12px;
    flex: 1;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-gray);
}

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

.partnership-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.partnership-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.partnership-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.partnership-card ul {
    list-style: none;
}

.partnership-card li {
    padding: 0.4rem 0;
    padding-left: 1.2rem;
    position: relative;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.partnership-card li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--teal);
}

/* Technology Focus */
.greenhouse-technology {
    background: var(--light-bg);
}

.tech-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.tech-features {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.tech-feature h4 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.tech-feature p {
    color: var(--text-gray);
    line-height: 1.6;
}

.tech-illustration {
    background: linear-gradient(135deg, var(--teal), var(--navy));
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
}

.greenhouse-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.tech-caption {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Sustainability */
.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.sustainability-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.sustainability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

.sustainability-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Future Global */
.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.initiative-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.initiative-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.initiative-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Why Global */
.why-global {
    background: var(--light-bg);
}

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

.why-global-content h2 {
    text-align: center;
    color: var(--navy);
    margin-bottom: 3rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.benefit-item .benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--teal);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-text h4 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.benefit-text p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Contact Page */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.contact-form-wrapper h2 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.form-intro {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

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

.contact-form label {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 0.9rem 1rem;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--white);
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(77, 184, 184, 0.15);
}

.contact-form button {
    margin-top: 1rem;
    align-self: flex-start;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--white);
    border: none;
    padding: 0.9rem 2.2rem;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(77, 184, 184, 0.35);
}

/* Contact Info Box */
.contact-info-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-info-box h3 {
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.contact-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-info-list li {
    display: flex;
    gap: 0.8rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-info-list strong {
    color: var(--navy);
    font-weight: 600;
}

/* Map Placeholder */
.map-box {
    margin-top: 2rem;
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--navy-light), var(--teal-light));
    border-radius: 12px;
    opacity: 0.3;
}

/* =====================
   Responsive Styles
===================== */

@media (max-width: 992px) {
    .why-content,
    .international-card,
    .content-grid,
    .vm-grid,
    .service-detail-grid,
    .contact-grid,
    .tech-content,
    .exhibition-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 3rem 20px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        background: var(--white);
        flex-direction: column;
        width: 280px;
        height: calc(100vh - 70px);
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
    }

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

    .mobile-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.4rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-card {
        min-width: unset;
        flex: 1;
    }

    .section {
        padding: 4rem 0;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .contact-form button {
        width: 100%;
    }
}
.why-image-img {
    width: 100%;
    max-width: 420px;
    display: block;
    margin: 0 auto;
    border-radius: 16px;
}

