/* CSS Variables */
:root {
    --primary-green: #2D7A4F;
    --light-green: #4CAF50;
    --dark-green: #1B5E20;
    --accent-blue: #1976D2;
    --accent-yellow: #FFC107;
    --white: #FFFFFF;
    --off-white: #F5F7F5;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --overlay-green: rgba(27, 94, 32, 0.75);
}

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

html {
    scroll-behavior: smooth;
}

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

.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.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: var(--primary-green);
    color: var(--white);
}

/* Language Toggle */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
}

.lang-btn {
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.lang-btn.active {
    color: var(--white);
    background: var(--primary-green);
}

.lang-divider {
    color: var(--text-light);
    font-weight: 300;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    position: relative;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

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

/* Compact Hero */
.hero.hero-compact {
    min-height: auto;
    padding: 100px 20px 40px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 104, 7, 0.80) 30%,
        rgba(3, 167, 74, 0.8) 60%,
        rgba(23, 134, 244, 0.55) 100%
    );
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
    z-index: 1;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    padding-top: 35px;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-compact .hero-title {
    padding-top: 20px;
    margin-bottom: 16px;
}

.hero-tagline {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.7;
    opacity: 0.95;
}

.hero-compact .hero-subtitle {
    margin-bottom: 20px;
}

/* Benefits List (bullet points in three columns) */
.benefits-list {
    max-width: 100%;
    width: 100%;
    margin: 0 auto 10px;
    text-align: left;
    list-style: none;
    padding: 0 30px;
    padding-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 30px;
}

.benefits-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 0;
    font-size: clamp(0.85rem, 1.4vw, 0.95rem);
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.95);
}

.benefits-list li::before {
    content: "•";
    position: absolute;
    left: 4px;
    color: var(--accent-yellow);
    font-size: 1.4rem;
    line-height: 1;
    top: 0;
}

/* Hero Description after benefits */
.hero-description {
    margin-top: 30px;
    max-width: 100%;
    width: calc(100% - 60px);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 30px 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Standalone Description Section after Services */
.hero-description-section {
    background: var(--white);
    padding: 80px 0;
}

.hero-description-section .hero-description {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    padding: 60px 70px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-description-section .hero-description p {
    color: var(--text-dark);
    font-size: 1.25rem;
    line-height: 1.9;
    margin-bottom: 24px;
}

.hero-description-section .hero-description p:last-child {
    margin-bottom: 0;
}

.hero-compact .hero-description {
    margin-top: 20px;
    padding: 24px 40px;
}

.hero-description p {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 16px;
}

.hero-description p:last-child {
    margin-bottom: 0;
}

.hero-description .hero-cta {
    font-weight: 600;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--accent-yellow);
    margin-top: 24px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    overflow: visible; /* Ensure the parent container allows overflow for raised cards */
    position: relative; /* Ensure child elements can be raised above */
}

.benefit-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative; /* Ensure the raised effect is visible */
    z-index: 1; /* Prevent clipping */
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 0 3px var(--primary-green); /* Add green highlight */
    z-index: 2; /* Ensure hover state is above other elements */
}

.benefit-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--accent-yellow);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.benefit-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
}

.benefit-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

/* Services Section */
.services {
    padding: 80px 20px;
    background: var(--white);
}

/* Compact Services Grid - all 12 visible */
.services-grid-compact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto 30px;
}

.service-card-compact {
    background: var(--off-white);
    border-radius: 12px;
    padding: 20px 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 100px;
    position: relative;
}

.service-card-compact:hover {
    border-color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(45, 122, 79, 0.15);
    transform: translateY(-3px);
}

.service-card-compact.active {
    border-color: var(--primary-green);
    background: rgba(45, 122, 79, 0.08);
}

.service-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.service-number-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary-green);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.service-title-compact {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0;
}

.service-expand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--primary-green);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50%;
    line-height: 1;
    padding-bottom: 2px;
    transition: transform 0.3s ease, background 0.3s ease;
    position: absolute;
    top: -11px;
    right: -11px;
}

.service-card-compact:hover .service-expand-icon {
    background: var(--dark-green);
    transform: scale(1.1);
}

.service-card-compact.active .service-expand-icon {
    transform: rotate(45deg);
    background: var(--dark-green);
}

/* Service Detail Panel */
.service-detail-panel {
    display: none;
    max-width: 900px;
    margin: 0 auto;
    background: var(--off-white);
    border-radius: 16px;
    padding: 40px;
    border: 2px solid var(--primary-green);
    position: relative;
    animation: fadeInUp 0.3s ease;
}

.service-detail-panel.active {
    display: block;
}

.service-detail-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-detail-close:hover {
    background: var(--dark-green);
    transform: scale(1.1);
}

.service-detail-content h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 16px;
}

.service-detail-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 16px;
}

.service-detail-content ul {
    padding-left: 24px;
    margin-top: 16px;
}

.service-detail-content li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 10px;
}

/* Legacy carousel styles (kept for reference) */
.services-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
}

.services-carousel {
    flex: 1;
    overflow: hidden;
    padding: 10px 0;
    min-width: 0;
}

.services-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
}

.service-card {
    flex: 0 0 calc(50% - 12px);
    min-width: 0;
    max-width: calc(50% - 12px);
    width: calc(50% - 12px);
    background: var(--off-white);
    border-radius: 16px;
    padding: 40px 36px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.service-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 15px 40px rgba(45, 122, 79, 0.15);
    transform: translateY(-5px);
}

.service-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary-green);
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50%;
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.4;
}

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    flex: 1;
}

.service-expanded {
    display: none;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(45, 122, 79, 0.2);
}

.service-expanded.active {
    display: block;
}

.service-expanded p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.service-expanded ul {
    margin-top: 14px;
    padding-left: 24px;
    list-style-type: disc;
}

.service-expanded li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 10px;
}

.service-expanded li:last-child {
    margin-bottom: 0;
}

.service-expand-btn {
    margin-top: 20px;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.service-expand-btn:hover {
    background: var(--primary-green);
    color: var(--white);
}

.service-expand-btn.active {
    background: var(--primary-green);
    color: var(--white);
}

/* Carousel Arrows */
.carousel-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-green);
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-arrow:hover {
    background: var(--dark-green);
    transform: scale(1.1);
}

.carousel-arrow:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary-green);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: var(--light-green);
}

/* About Section */
.about {
    padding: 100px 20px;
    background: var(--off-white);
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-blue));
    margin: 20px auto 0;
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

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

.placeholder-image {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--accent-blue) 100%);
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
}

.about-text {
    padding: 20px 0;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Contact Section */
.contact {
    padding: 100px 20px;
    background: var(--white);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 40px 60px;
    background: var(--off-white);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    max-width: 600px;
    width: 100%;
}

.contact-item:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(45, 122, 79, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-details {
    text-align: left;
}

.contact-details .address-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-green);
    line-height: 1.5;
}

.contact-details p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Team Section */
.team {
    padding: 100px 20px;
    background: var(--white);
}

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

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.team-photo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 15px 40px rgba(45, 122, 79, 0.2);
    border: 4px solid var(--primary-green);
    transition: all 0.3s ease;
}

.team-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(45, 122, 79, 0.3);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.team-photo img.zoomed {
    transform: scale(1.2);
}

/* White background for team photo */
.team-photo-white-bg {
    background: #ffffff;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.team-info {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.team-bio {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 12px;
    text-align: justify;
}

.team-bio:last-of-type {
    margin-bottom: 20px;
}

/* Team Contact */
.team-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(45, 122, 79, 0.2);
}

.team-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
    background: var(--off-white);
}

.team-contact-item:hover {
    background: var(--primary-green);
    color: white;
}

.team-contact-icon {
    font-size: 1rem;
    opacity: 0.7;
}

/* Capabilities Section */
.capabilities {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
}

/* Subtle Capabilities */
.capabilities.capabilities-subtle {
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(45, 122, 79, 0.9) 0%, rgba(27, 94, 32, 0.85) 100%);
}

.capabilities .section-title {
    color: var(--white);
}

.capabilities .section-title::after {
    background: linear-gradient(90deg, var(--accent-yellow), var(--white));
}

.capabilities-subtle .section-title {
    margin-bottom: 40px;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.capabilities-subtle .capabilities-grid {
    gap: 30px;
}

.capability-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-height: 180px;
}

.capabilities-subtle .capability-item {
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    min-height: 160px;
}

.capability-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.capabilities-subtle .capability-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.capability-icon {
    width: 170px;
    height: 170px;
    margin-bottom: 20px;
}

.capabilities-subtle .capability-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
    opacity: 0.7;
}

.capability-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.capability-counter {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.capabilities-subtle .capability-counter {
    font-size: 2.5rem;
}

.capability-number-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.capability-plus {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.capabilities-subtle .capability-plus {
    font-size: 2.5rem;
}

.capability-suffix {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-yellow);
    margin-top: 5px;
    margin-bottom: 10px;
}

.capabilities-subtle .capability-suffix {
    font-size: 1.1rem;
}

.capability-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-top: 10px;
}

.capabilities-subtle .capability-label {
    font-size: 0.95rem;
    margin-top: 8px;
}

.capability-sublabel {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

.capabilities-subtle .capability-sublabel {
    font-size: 0.8rem;
}

.capability-industries {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    min-height: 100px;
    margin-top: 20px;
}

.capabilities-subtle .capability-industries {
    gap: 10px;
    min-height: 80px;
    margin-top: 10px;
}

.capability-industries-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.capabilities-subtle .capability-industries-title {
    font-size: 1.6rem;
}

.typing-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
}

.capability-label-inline {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.typing-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-yellow);
    display: inline;
}

.typing-cursor {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--accent-yellow);
    animation: blink 0.7s infinite;
    display: inline;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Footer */
.footer {
    background: var(--dark-green);
    color: var(--white);
    padding: 30px 20px;
    text-align: center;
}

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

/* Mobile Styles */
@media (max-width: 1200px) {
    .service-card {
        flex: 0 0 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }
}

@media (max-width: 992px) {
    .benefits-list {
        padding: 0 20px;
    }
    
    .services-grid-compact {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .team-member {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.3s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu.active ~ .nav-toggle .hamburger {
        background: transparent;
    }
    
    .nav-menu.active ~ .nav-toggle .hamburger::before {
        transform: rotate(45deg);
        top: 0;
    }
    
    .nav-menu.active ~ .nav-toggle .hamburger::after {
        transform: rotate(-45deg);
        bottom: 0;
    }
    
    .lang-toggle {
        position: absolute;
        top: 50%;
        right: 60px;
        transform: translateY(-50%);
        margin-left: 0;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }
    
    .benefits-list li {
        padding-left: 24px;
        font-size: 0.95rem;
    }
    
    .services-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .service-card-compact {
        padding: 16px 12px;
        min-height: 90px;
    }
    
    .service-title-compact {
        font-size: 0.8rem;
    }
    
    .service-detail-panel {
        padding: 24px;
        margin: 0 10px;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-item {
        padding: 30px 24px;
    }
    
    .hero.hero-compact {
        padding: 90px 16px 30px;
    }
    
    .hero-subtitle {
        margin-bottom: 20px;
    }
    
    .service-card {
        flex: 0 0 100%;
        min-width: 0;
        max-width: 100%;
        width: 100%;
    }
    
    .services-carousel-wrapper {
        gap: 10px;
    }
    
    .carousel-arrow {
        width: 36px;
        height: 36px;
    }
    
    .carousel-arrow svg {
        width: 18px;
        height: 18px;
    }
    
    .services {
        padding: 50px 16px;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .capability-counter,
    .capability-plus,
    .capability-industries-title {
        font-size: 2.5rem;
    }
    
    .capabilities-subtle .capability-counter,
    .capabilities-subtle .capability-plus {
        font-size: 2rem;
    }
    
    .capabilities-subtle .capability-industries-title {
        font-size: 1.3rem;
    }

    .capability-counter {
        font-size: 2.5rem;
    }
    
    .capability-icon {
        width: 60px;
        height: 60px;
    }
    
    .capabilities {
        padding: 60px 16px;
    }
    
    .capabilities.capabilities-subtle {
        padding: 40px 16px;
    }
    
    .team-contact {
        flex-direction: column;
        gap: 10px;
    }
    
    .team-contact-item {
        font-size: 0.9rem;
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.benefit-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }
.benefit-card:nth-child(5) { animation-delay: 0.5s; }
.benefit-card:nth-child(6) { animation-delay: 0.6s; }
