/* ============================================
   EDEN ENTERPRISES - Main Stylesheet
   Update this file to change styling across the entire website
   ============================================ */
/* ========== CSS Variables ========== */
:root {
    /* Color Scheme Option 2 */
    --primary-color: #0b2545;
    --primary-dark: #081c33;
    --primary-light: #133b6c;
    --accent-color: #00b4a6;
    --accent-hover: #009688;
    --logo-red: #c1121f;
    --logo-blue: #0b2545;
    --white: #ffffff;
    --light-gray: #f1f5f9;
    --gray: #64748b;
    --dark-gray: #1e293b;
    --text-dark: #0f172a;
    --text-light: #475569;
    --border-color: #e2e8f0;
    --section-bg: #f8fafc;
    --stats-bg: #0b2545;
    --cta-bg: #0b2545;
    --shadow: 0 6px 20px rgba(11, 37, 69, 0.08);
    --shadow-lg: 0 10px 30px rgba(11, 37, 69, 0.15);
    --transition: all 0.3s ease;
    --animation-duration: 0.8s;
    --stagger-delay: 0.15s;
}
/* ========== Reset & Base Styles ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}
ul {
    list-style: none;
}
/* ========== Navigation ========== */
.main-nav {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}
.nav-logo-text {
    display: flex;
    flex-direction: column;
}
.logo-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}
.logo-tagline {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1;
}
.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}
.nav-link:hover {
    color: var(--primary-color);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}
.nav-link:hover::after {
    width: 100%;
}
.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}
.nav-link.active::after {
    width: 100%;
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}
/* ========== Hero Section ========== */
.hero {
    min-height: 90vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.85);
}
/* Fallback if image not uploaded */
.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    z-index: -1;
}
.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}
.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 90vh;
}
.hero-content {
    max-width: 700px;
    margin-top: auto;
}
.hero-headline {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}
.hero-cta {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    padding-top: 2rem;
}

/* ========== Container ========== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
/* ========== Page Header ========== */
.page-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    position: relative;
}
.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}
.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}
/* ========== About Hero Header ========== */
.about-hero-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.about-hero-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}
.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 37, 69, 0.85);
    z-index: 1;
}
.about-hero-content {
    position: relative;
    z-index: 2;
}
.about-hero-header h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -1px;
}
.about-hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.95;
    font-weight: 300;
    margin-bottom: 2rem;
}
.about-hero-divider {
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin: 0 auto;
    border-radius: 2px;
}
.about-overview-full {
    padding: 6rem 0;
    background: var(--white);
}
.about-intro-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}
.about-intro-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-intro-text {
    padding-right: 2rem;
}
.section-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}
.about-intro-text h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2.75rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}
.about-intro-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.about-intro-paragraphs p {
    color: var(--text-dark);
    line-height: 1.9;
    font-size: 1.125rem;
    font-weight: 400;
}
.about-intro-paragraphs strong {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.15rem;
}
.about-intro-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.about-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    height: 400px;
}
.about-company-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.about-image-wrapper:hover .about-company-image {
    transform: scale(1.05);
}
.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(11, 37, 69, 0.3) 100%);
}
.about-logo-badge {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.about-logo-badge .inventia-logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
    margin-bottom: 1rem;
}
.logo-tagline {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}
.inventia-logo {
    max-width: 320px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
}
/* ========== Section Headers ========== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-header .section-badge {
    margin-bottom: 1rem;
}
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    display: block;
    margin-top: 0.5rem;
}
.section-subtitle i {
    color: var(--accent-color);
}
/* ========== About Section ========== */
.about-section {
    padding: 5rem 0;
    background: var(--light-gray);
}
.about-details-section {
    background: var(--white);
}
.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}
.about-item {
    background: transparent;
    border-radius: 15px;
    transition: var(--transition);
    position: relative;
}
.about-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    border-radius: 15px;
    z-index: 0;
    transition: var(--transition);
}
.about-item:hover::before {
    background: linear-gradient(135deg, var(--white) 0%, #f8fafc 100%);
    box-shadow: 0 10px 30px rgba(11, 37, 69, 0.12);
}
.about-item-inner {
    position: relative;
    z-index: 1;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.about-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(11, 37, 69, 0.2);
    transition: var(--transition);
}
.about-item:hover .about-icon {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 20px rgba(11, 37, 69, 0.3);
}
.about-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}
.about-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}
/* ========== Mission Vision Values ========== */
.mvv-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--white) 0%, var(--light-gray) 100%);
}
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}
.mvv-card {
    background: var(--white);
    padding: 0;
    border-radius: 20px;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.mvv-card-header {
    padding: 2.5rem 2.5rem 1.5rem;
    text-align: center;
}
.mvv-mission .mvv-card-header {
    background: linear-gradient(135deg, rgba(11, 37, 69, 0.05) 0%, rgba(11, 37, 69, 0.02) 100%);
}
.mvv-vision .mvv-card-header {
    background: linear-gradient(135deg, rgba(0, 180, 166, 0.05) 0%, rgba(0, 180, 166, 0.02) 100%);
}
.mvv-values .mvv-card-header {
    background: linear-gradient(135deg, rgba(193, 18, 31, 0.05) 0%, rgba(193, 18, 31, 0.02) 100%);
}
.mvv-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}
.mvv-mission .mvv-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
}
.mvv-vision .mvv-icon {
    background: linear-gradient(135deg, var(--accent-color) 0%, #009688 100%);
    color: var(--white);
}
.mvv-values .mvv-icon {
    background: linear-gradient(135deg, var(--logo-red) 0%, #a00e18 100%);
    color: var(--white);
}
.mvv-card:hover .mvv-icon {
    transform: scale(1.1) rotate(5deg);
}
.mvv-card h3 {
    color: var(--primary-color);
    margin-bottom: 0;
    font-size: 1.6rem;
    font-weight: 700;
}
.mvv-card-body {
    padding: 0 2.5rem 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.mvv-card-body p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.05rem;
    text-align: center;
}
.values-list {
    text-align: left;
    margin-top: 0;
    list-style: none;
    padding: 0;
}
.values-list li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    line-height: 1.6;
}
.values-list li i {
    color: var(--accent-color);
    font-size: 1rem;
    flex-shrink: 0;
}
/* ========== Business Model Section ========== */
.business-model-section {
    padding: 6rem 0;
    background: var(--light-gray);
}
.business-model-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}
.model-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.model-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}
.model-card-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}
.model-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
}
.model-card.distribution .model-image-placeholder {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
}
.model-card.import .model-image-placeholder {
    background: linear-gradient(135deg, var(--accent-color) 0%, #009688 100%);
}
.model-card-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.model-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-gray);
}
.model-header h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}
.model-subtitle {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.model-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex: 1;
}
.model-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}
.model-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.model-card.distribution .model-feature-icon {
    background: rgba(11, 37, 69, 0.1);
    color: var(--primary-color);
}
.model-card.import .model-feature-icon {
    background: rgba(0, 180, 166, 0.1);
    color: var(--accent-color);
}
.model-feature-content {
    flex: 1;
}
.model-feature-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}
.model-feature-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}
.model-integration {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 5px 20px rgba(11, 37, 69, 0.2);
}
.model-integration-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.model-integration p {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}
/* ========== Services Section ========== */
.services-section {
    padding: 5rem 0;
    background: var(--light-gray);
}
.services-details-section {
    padding: 5rem 0;
    background: var(--section-bg);
}
.services-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.service-detail-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}
.service-detail-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.service-detail-card h3 i {
    color: var(--accent-color);
}
.service-detail-card ul {
    list-style: none;
    padding: 0;
}
.service-detail-card ul li {
    padding: 0.8rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 1.5rem;
}
.service-detail-card ul li:last-child {
    border-bottom: none;
}
.service-detail-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2.5rem;
    align-items: start;
}
.services-category {
    background: transparent;
    padding: 2rem 0;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}
.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}
.category-header i {
    font-size: 2rem;
    color: var(--primary-color);
}
.category-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
}
.service-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    width: 100%;
}
.service-card {
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    min-height: auto;
    align-self: start;
}
.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.service-icon {
    width: 50px;
    height: 50px;
    background: rgba(11, 37, 69, 0.1);
    color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    flex-shrink: 0;
}
/* Import & Market Entry Section - Green Theme */
.services-category.import-section .category-header i {
    color: #16a34a;
}
.services-category.import-section .category-header h3 {
    color: #16a34a;
}
.services-category.import-section .service-icon {
    background: rgba(22, 163, 74, 0.1);
    color: #16a34a;
}
.service-card h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    line-height: 1.3;
}
.service-card p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0;
}
/* ========== Products Section ========== */
.products-section {
    padding: 5rem 0;
    background: var(--light-gray);
}
.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.products-logo-wrapper {
    text-align: center;
    margin: 2rem 0 3rem;
}
.about-intro-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    width: 100%;
}
.inventia-logo-products {
    max-width: 300px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}
.product-brand-section {
    margin-bottom: 5rem;
}
.product-brand-section:last-of-type {
    margin-bottom: 3rem;
}
.product-brand-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light-gray);
}
.product-brand-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    line-height: 1.2;
}
.product-brand-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
}
.products-grid-professional {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-bottom: 4rem;
}
.product-card-professional {
    text-decoration: none;
    color: inherit;
    display: block;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.product-card-professional.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.product-card-professional.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
.product-card-professional:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.product-image-container {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--light-gray);
}
.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card-professional:hover .product-img {
    transform: scale(1.08);
}
.product-overlay-professional {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 37, 69, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.product-card-professional:hover .product-overlay-professional {
    opacity: 1;
}
.read-more-btn {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--white);
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}
.read-more-btn:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: scale(1.05);
}
.product-info-professional {
    padding: 1.2rem 1rem;
    text-align: center;
}
.product-info-professional h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.4rem 0;
    line-height: 1.3;
}
.product-category {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
    font-weight: 500;
}
.product-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.product-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
}
.product-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}
.product-tag {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
}
.product-image-placeholder {
    height: 200px;
    background: var(--light-gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.product-image-placeholder i {
    font-size: 3rem;
    color: var(--text-light);
}
.product-list {
    margin-bottom: 1.5rem;
}
.product-list li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.product-list i {
    color: var(--accent-color);
    margin-top: 0.3rem;
}
.product-certification {
    background: #e8f5e9;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.product-certification i {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}
.product-certification p {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.6;
}
.product-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}
.product-feature {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
}
.product-feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.product-feature p {
    color: var(--text-light);
    line-height: 1.6;
}
/* ========== Product Detail Pages ========== */
.product-detail-section {
    padding: 4rem 0;
    background: var(--white);
}
.product-detail-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: start;
}
.product-detail-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.product-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.product-detail-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.product-detail-tag {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    width: fit-content;
}
.product-detail-info h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}
.product-detail-location {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 1rem;
}
.product-detail-location i {
    color: var(--accent-color);
}
.product-detail-certification {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
    align-items: flex-start;
}
.product-detail-certification i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}
.product-detail-certification strong {
    color: var(--primary-color);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}
.product-detail-certification p {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}
.back-to-products-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    width: fit-content;
}
.back-to-products-btn:hover {
    background: var(--primary-dark);
    transform: translateX(-5px);
}
.product-detail-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}
.product-detail-main h3 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}
.product-detail-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.product-detail-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
    align-items: flex-start;
}
.product-detail-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}
.product-detail-item strong {
    color: var(--primary-color);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}
.product-detail-item p {
    color: var(--text-dark);
    margin: 0.5rem 0 0 0;
    line-height: 1.6;
}
.product-sublist {
    margin: 0.75rem 0 0 0;
    padding-left: 1.5rem;
    list-style: none;
}
.product-sublist li {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}
.product-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.product-info-box {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}
.product-info-box h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.product-info-box p {
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.product-info-box p i {
    color: var(--accent-color);
    margin-top: 0.2rem;
}
.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.feature-list li {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.feature-list li i {
    color: var(--accent-color);
    margin-top: 0.3rem;
    flex-shrink: 0;
}
.product-details {
    margin-bottom: 1.5rem;
}
.product-details h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}
.product-details ul ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}
.product-details ul ul li {
    font-size: 0.9rem;
    color: var(--text-light);
}
/* ========== Pharma Section ========== */
.pharma-section {
    padding: 5rem 0;
    background: var(--white);
}
.pharma-content {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}
.pharma-content > p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}
.pharma-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}
.pharma-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}
.pharma-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.pharma-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.pharma-item h4 {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.4;
}
/* ========== Distribution Section ========== */
.distribution-section {
    padding: 5rem 0;
    background: var(--white);
}
.distribution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.distribution-map {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    position: relative;
}
.map-legend {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.legend-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
}
.legend-dot.primary {
    background: var(--primary-color);
}
.legend-dot.regional {
    border: 2px solid var(--primary-color);
    background: transparent;
}
.cities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
}
.city-marker {
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    font-weight: 500;
    color: var(--text-dark);
    box-shadow: var(--shadow);
}
.city-marker.primary {
    border: 2px solid var(--primary-color);
}
.city-marker.regional {
    border: 2px dashed var(--primary-color);
}
.distribution-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.info-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}
.cities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}
.cities-list li {
    padding: 0.5rem;
    background: var(--light-gray);
    border-radius: 5px;
    color: var(--text-dark);
}
.channel-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
    margin-bottom: 1rem;
}
.channel-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.3rem;
}
.channel-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}
.channel-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}
.distribution-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    background: var(--primary-color);
    padding: 2rem;
    border-radius: 10px;
}
.metric {
    text-align: center;
    color: var(--white);
}
.metric i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.metric-value {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}
.metric-label {
    font-size: 0.9rem;
    opacity: 0.9;
}
/* ========== Quality Section ========== */
.quality-section {
    padding: 5rem 0;
    background: var(--light-gray);
}
.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.quality-column {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}
.quality-column h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
}
.quality-column h3 i {
    color: var(--primary-color);
}
.quality-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.quality-list li {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    color: var(--text-light);
    line-height: 1.6;
}
.quality-list i {
    color: var(--accent-color);
    margin-top: 0.3rem;
}
.regulatory-box {
    background: #e8f5e9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.regulatory-box i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-top: 0.2rem;
}
.regulatory-box p {
    color: var(--text-dark);
    line-height: 1.6;
}
.cert-badges {
    display: flex;
    gap: 1rem;
}
.cert-badge {
    background: var(--white);
    border: 2px solid var(--accent-color);
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}
.cert-badge i {
    color: var(--accent-color);
    font-size: 1.2rem;
}
.cert-badge span {
    color: var(--text-dark);
    font-weight: 500;
}
.quality-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.quality-footer-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 250px;
}
.quality-footer-left i {
    font-size: 1.5rem;
}
.quality-footer-right {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.quality-footer-right span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.quality-footer-right i {
    color: var(--accent-color);
}
/* ========== Infrastructure Section ========== */
.infrastructure-section {
    padding: 5rem 0;
    background: var(--white);
}
.status-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-left: 1rem;
}
.infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.infra-column {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}
.infra-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border-radius: 50%;
}
.infra-column:nth-child(1) .infra-icon {
    background: var(--primary-color);
    color: var(--white);
}
.infra-column:nth-child(2) .infra-icon {
    background: var(--accent-color);
    color: var(--white);
}
.infra-column:nth-child(3) .infra-icon {
    background: var(--gray);
    color: var(--white);
}
.infra-column h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
.infra-metric {
    margin-bottom: 2rem;
}
.metric-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}
.infra-column:nth-child(2) .metric-number {
    color: var(--accent-color);
}
.infra-column:nth-child(3) .metric-number {
    color: var(--gray);
}
.metric-unit {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}
.infra-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.infra-feature {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    text-align: left;
}
.infra-feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.3rem;
}
.infra-column:nth-child(2) .infra-feature i {
    color: var(--accent-color);
}
.infra-column:nth-child(3) .infra-feature i {
    color: var(--gray);
}
.infra-feature h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}
.infra-feature p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}
.infra-support {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}
.support-item {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.support-item i {
    font-size: 2rem;
    color: var(--gray);
}
.support-item p {
    color: var(--text-dark);
    font-size: 0.9rem;
}
/* ========== Why Choose Section ========== */
.why-choose-section {
    padding: 5rem 0;
    background: var(--light-gray);
}
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.why-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
    border-bottom: 4px solid var(--primary-color);
}
.why-card:nth-child(3),
.why-card:nth-child(5) {
    border-bottom-color: var(--accent-color);
}
.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.why-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 4rem;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.05);
    line-height: 1;
}
.why-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}
.why-card:nth-child(3) .why-icon,
.why-card:nth-child(5) .why-icon {
    background: var(--accent-color);
}
.why-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}
.why-card p {
    color: var(--text-light);
    line-height: 1.8;
}
/* ========== Clients Section ========== */
.clients-section {
    padding: 5rem 0;
    background: var(--white);
}
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.client-category {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.client-category.public {
    border-top: 4px solid var(--primary-color);
}
.client-category.private {
    border-top: 4px solid var(--accent-color);
}
.client-category.armed {
    border-top: 4px solid var(--dark-gray);
}
.client-header {
    padding: 2rem;
    color: var(--white);
    text-align: center;
}
.client-category.public .client-header {
    background: var(--primary-color);
}
.client-category.private .client-header {
    background: var(--accent-color);
}
.client-category.armed .client-header {
    background: var(--dark-gray);
}
.client-header i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.client-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.client-header p {
    font-size: 0.9rem;
    opacity: 0.9;
}
.client-items {
    padding: 1.5rem;
    background: var(--white);
}
.client-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    margin-bottom: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
}
.client-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.3rem;
}
.client-category.private .client-item i {
    color: var(--accent-color);
}
.client-category.armed .client-item i {
    color: var(--dark-gray);
}
.client-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}
.client-item p {
    color: var(--text-light);
    font-size: 0.85rem;
}
.confidentiality-notice {
    background: #fff9c4;
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.confidentiality-notice i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}
.confidentiality-notice p {
    color: var(--text-dark);
    line-height: 1.6;
}
/* ========== Partnership Section ========== */
.partnership-section {
    padding: 5rem 0;
    background: var(--light-gray);
}
.partnership-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-left: 1rem;
}
.partnership-content {
    margin-bottom: 3rem;
}
.partnership-why {
    margin-bottom: 3rem;
}
.partnership-why h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}
.partnership-why h3 i {
    color: #00a6a6;
}
.partnership-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.partnership-card {
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: left;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.partnership-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.partnership-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 166, 166, 0.1);
    color: #00a6a6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    flex-shrink: 0;
}
.partnership-card i {
    font-size: 1.3rem;
    color: #00a6a6;
}
.partnership-card h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    line-height: 1.3;
}
.partnership-card p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0;
}
.partnership-pathway h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
}
.partnership-pathway h3 i {
    color: #00a6a6;
}
.pathway-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
    flex-wrap: wrap;
    position: relative;
    padding: 2rem 0;
}
.pathway-steps::before {
    content: '';
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border-color);
    z-index: 0;
}
.pathway-step {
    flex: 1;
    min-width: 150px;
    background: transparent;
    padding: 0 0.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}
.step-number {
    width: 50px;
    height: 50px;
    background: transparent;
    color: #00a6a6;
    border: 2px solid #00a6a6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    margin: 0 auto 1rem;
    background: var(--light-gray);
}
.pathway-step h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}
.pathway-step p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}
.go-live-badge {
    display: inline-block;
    background: #d32f2f;
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    margin-top: 0.5rem;
}
.partnership-cta-button {
    text-align: center;
    margin-top: 3rem;
}
.partnership-button {
    background: #00a6a6;
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
}
.partnership-button:hover {
    background: #008b8b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 166, 166, 0.3);
}
.partnership-cta {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}
.cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}
.cta-content p {
    opacity: 0.9;
    font-size: 1rem;
}
.cta-button {
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-block;
}
.cta-button:hover {
    background: var(--light-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
/* ========== Contact Section ========== */
.contact-section {
    padding: 5rem 0;
    background: var(--white);
}
.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}
.contact-main {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 10px;
}
.contact-header h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.contact-header p {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}
.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.3rem;
}
.contact-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}
.contact-hours {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.3rem;
}
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.sidebar-section {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
}
.sidebar-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
}
.sidebar-section h3 i {
    color: var(--primary-color);
}
.location-item {
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--accent-color);
}
.location-item strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.3rem;
}
.location-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}
.inquiry-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.inquiry-btn {
    background: var(--white);
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    border: 2px solid transparent;
}
.inquiry-btn:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}
.inquiry-btn i {
    color: var(--primary-color);
    font-size: 1.2rem;
}
.inquiry-btn span {
    color: var(--text-dark);
    font-weight: 500;
}
/* ========== Footer ========== */
.main-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    column-gap: 4rem;
    margin-bottom: 2rem;
}
.footer-section {
    display: flex;
    flex-direction: column;
}
.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 600;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.footer-logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}
.footer-logo-text h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}
.footer-logo-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}
.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 0.95rem;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}
.footer-contact i {
    color: var(--accent-color);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    margin-top: 2rem;
}
.footer-bottom p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}
.footer-bottom .footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 0.5rem;
}
/* ========== Responsive Design ========== */
/* Tablets */
@media (max-width: 1024px) {
    .hero-container {
        padding: 4rem 1.5rem;
    }
    .hero-headline {
        font-size: 2.5rem;
    }
    .products-grid-professional {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    .product-image-container {
        height: 200px;
    }
    .product-info-professional {
        padding: 1rem 0.75rem;
    }
    .product-info-professional h3 {
        font-size: 1.15rem;
    }
    .product-category {
        font-size: 0.8rem;
    }
    .hero-cta {
        justify-content: center;
        margin-top: 3rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .business-model-container {
        grid-template-columns: 1fr;
    }
    .partnership-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-container {
        grid-template-columns: 1fr;
    }
    .distribution-content {
        grid-template-columns: 1fr;
    }
    .contact-content {
        grid-template-columns: 1fr;
    }
    .about-hero-header h1 {
        font-size: 3rem;
    }
    .about-intro-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-intro-text h2 {
        font-size: 2.25rem;
    }
    .about-image-wrapper {
        height: 350px;
    }
    .business-model-container {
        grid-template-columns: 1fr;
    }
    .mvv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .inventia-logo {
        max-width: 280px;
    }
    .pathway-steps {
        flex-direction: column;
    }
}
/* Mobile Devices */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-toggle {
        display: flex;
    }
    .hero-headline {
        font-size: 2.5rem;
    }
    .btn-category {
        width: 100%;
        justify-content: center;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .about-content,
    .mvv-grid,
    .why-choose-grid,
    .clients-grid {
        grid-template-columns: 1fr;
    }
    .service-cards {
        grid-template-columns: 1fr;
    }
    .products-container {
        grid-template-columns: 1fr;
    }
    .products-grid-professional {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .product-image-container {
        height: 220px;
    }
    .product-info-professional {
        padding: 1rem;
    }
    .product-info-professional h3 {
        font-size: 1.1rem;
    }
    .product-category {
        font-size: 0.8rem;
    }
    .inventia-logo-products {
        max-width: 250px;
    }
    .product-detail-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .product-detail-info h2 {
        font-size: 2rem;
    }
    .product-features {
        grid-template-columns: 1fr;
    }
    .distribution-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    .quality-grid,
    .infrastructure-grid {
        grid-template-columns: 1fr;
    }
    .quality-footer {
        flex-direction: column;
        text-align: center;
    }
    .partnership-cards {
        grid-template-columns: 1fr;
    }
    .pathway-steps {
        flex-direction: column;
        gap: 2rem;
    }
    .pathway-steps::before {
        display: none;
    }
    .partnership-cta {
        flex-direction: column;
        text-align: center;
    }
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cities-list {
        grid-template-columns: 1fr;
    }
    .footer-company-name {
        font-size: 1.5rem;
    }
    .footer-tagline {
        font-size: 0.9rem;
    }
    .footer-copyright {
        font-size: 0.85rem;
    }
    .about-hero-header {
        padding: 5rem 0 4rem;
    }
    .about-hero-header h1 {
        font-size: 2.5rem;
    }
    .about-hero-subtitle {
        font-size: 1.2rem;
    }
    .about-overview-full {
        padding: 4rem 0;
    }
    .about-intro-wrapper {
        padding: 0 2rem;
    }
    .about-intro-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-intro-text {
        padding-right: 0;
        text-align: center;
    }
    .about-intro-text h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    .about-intro-paragraphs p {
        font-size: 1rem;
    }
    .about-image-wrapper {
        height: 300px;
    }
    .about-logo-badge {
        padding: 1.5rem;
    }
    .inventia-logo {
        max-width: 250px;
    }
    .business-model-container {
        grid-template-columns: 1fr;
    }
    .mvv-grid {
        grid-template-columns: 1fr;
    }
}
/* Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    .nav-container {
        padding: 0 1rem;
    }
    .hero-container {
        padding: 3rem 1rem;
        min-height: 80vh;
    }
    .hero-headline {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .about-item,
    .mvv-card,
    .why-card,
    .service-card {
        padding: 1.5rem;
    }
    .distribution-metrics {
        grid-template-columns: 1fr;
    }
    .metric-value {
        font-size: 2rem;
    }
    .partnership-cta {
        padding: 2rem 1.5rem;
    }
    .cta-content h3 {
        font-size: 1.5rem;
    }
    .footer-company-name {
        font-size: 1.3rem;
    }
    .footer-tagline {
        font-size: 0.85rem;
    }
    .footer-copyright {
        font-size: 0.8rem;
    }
    .footer-divider {
        width: 90%;
    }
}
/* ========== Overview Section ========== */
.overview-section {
    padding: 5rem 0;
    background: var(--white);
}
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.overview-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}
.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.overview-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}
.overview-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
.overview-card p {
    color: var(--text-light);
    line-height: 1.8;
}
/* ========== Features Section ========== */
.features-section {
    padding: 5rem 0;
    background: var(--section-bg);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.feature-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}
.feature-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}
.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}
/* ========== Stats Section ========== */
.stats-section {
    padding: 5rem 0;
    background: var(--stats-bg);
    color: var(--white);
}
.stats-section .section-header {
    margin-bottom: 3rem;
}
.stats-section .section-title {
    color: var(--white) !important;
    font-weight: 700;
}
.stats-section .section-subtitle {
    color: rgba(255, 255, 255, 1) !important;
    max-width: 1024px;
    margin: 0 auto;
    font-size: 1.1rem;
    opacity: 1;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}
.stat-item {
    padding: 2rem;
}
.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    line-height: 1;
}
.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}
/* ========== CTA Section ========== */
.cta-section {
    padding: 5rem 0;
    background: var(--section-bg);
}
.cta-content {
    background: linear-gradient(135deg, #0b2545, #133b6c);
    color: var(--white);
    padding: 4rem;
    border-radius: 10px;
    text-align: center;
}
.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}
.cta-content .cta-button {
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-block;
    border: 2px solid var(--white);
}
.cta-content .cta-button:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ========== GLOBAL ANIMATION SYSTEM ========== */
/* Elements start hidden by default */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
/* Elements become visible when scrolled into view */
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Hero elements animate immediately */
.hero h1, .hero p, .hero img, .hero {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.hero h1.visible, .hero p.visible, .hero img.visible, .hero {
    opacity: 1;
    transform: translateY(0);
}
/* Staggered delays for grid items */
.animate-on-scroll.visible:nth-child(1) { transition-delay: 0.1s; }
.animate-on-scroll.visible:nth-child(2) { transition-delay: 0.2s; }
.animate-on-scroll.visible:nth-child(3) { transition-delay: 0.3s; }
.animate-on-scroll.visible:nth-child(4) { transition-delay: 0.4s; }
/* Staggered delays for product cards */
.product-card-professional.animate-on-scroll.visible:nth-child(1) { transition-delay: 0.1s; }
.product-card-professional.animate-on-scroll.visible:nth-child(2) { transition-delay: 0.2s; }
.product-card-professional.animate-on-scroll.visible:nth-child(3) { transition-delay: 0.3s; }
.product-card-professional.animate-on-scroll.visible:nth-child(4) { transition-delay: 0.4s; }
.product-card-professional.animate-on-scroll.visible:nth-child(5) { transition-delay: 0.1s; }
.product-card-professional.animate-on-scroll.visible:nth-child(6) { transition-delay: 0.2s; }
.product-card-professional.animate-on-scroll.visible:nth-child(7) { transition-delay: 0.3s; }
.product-card-professional.animate-on-scroll.visible:nth-child(8) { transition-delay: 0.4s; }
.hero h1.visible { transition-delay: 0.2s; }
.hero p.visible { transition-delay: 0.4s; }
.hero img.visible { transition-delay: 0.6s; }
.hero { transition-delay: 0.8s; }
/* Performance optimization */
/* * {
    will-change: opacity, transform;
} */
 /* Sticky WhatsApp Button */
 .whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 13px;
    padding: 0;
    text-decoration: none;
    font-size: 0;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: 0.3s ease;
    width: 60px;
    height: 60px;
}

.whatsapp-btn:hover {
    background-color: #1ebe5d;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn i {
    font-size: 42px;
    color: white;
    display: block;
    line-height: 1;
}
