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

/* CSS Variables */
:root {
    --primary-color: #2e7d7f;
    --primary-dark: #1d5456;
    --primary-light: #4a9a9c;
    --accent-color: #ff6b35;
    --accent-light: #ff8c66;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --error-color: #e74c3c;
    
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark-gray: #495057;
    --dark: #212529;
    
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
    
    --transition: 0.3s ease;
    --radius: 8px;
}

/* Base Styles */
body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-regular);
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition);
    border-bottom: 1px solid rgba(46, 125, 127, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    height: 40px;
    width: auto;
    margin-right: 0.5rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
}

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

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: var(--font-weight-medium);
    transition: color var(--transition);
    position: relative;
}

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

.nav-link.cta-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.nav-link.cta-btn:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
/* Enhanced Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    padding: 8rem 0 4rem;
}

/* Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-fallback-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(46, 125, 127, 0.85) 0%, 
        rgba(46, 125, 127, 0.75) 50%, 
        rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
    justify-content: center;
}

.hero-main {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 2rem;
}

/* Hero Text Section */
.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-right: 2rem;
}

/* Hero Tagline */
.hero-tagline {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tagline-highlight {
    color: #FDD835;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tagline-separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin: 1rem 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: #FDD835;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

/* Hero Subtitle */
.hero-subtitle {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.subtitle-main {
    font-size: 1.25rem;
    font-weight: var(--font-weight-medium);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.subtitle-secondary {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Hero Visual Section */
.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    padding-top: 2rem;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: fit-content;
    max-width: 280px;
}

.badge-logo {
    height: 45px;
    width: auto;
    flex-shrink: 0;
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    min-width: 0;
}

.badge-title {
    font-size: 1.1rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    line-height: 1.2;
}

.badge-subtitle {
    font-size: 0.85rem;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-dark);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.badge-contact {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.4;
}

/* Feature Pills */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
}

.feature-pill i {
    color: #FDD835;
    font-size: 1rem;
}

/* Trust Indicators */
.hero-trust {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 1rem;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.trust-item i {
    font-size: 1.5rem;
    color: #FDD835;
    margin-bottom: 0.5rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    z-index: 3;
}

.scroll-icon {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
    margin-bottom: 0.5rem;
}

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

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

/* Hero Text Styling */
.hero-text h1 {
    font-size: 3.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Enhanced Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.btn-primary, .btn-secondary, .btn-tertiary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-weight: var(--font-weight-semibold);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary::before,
.btn-secondary::before,
.btn-tertiary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before,
.btn-secondary:hover::before,
.btn-tertiary:hover::before {
    left: 100%;
}

.btn-primary i,
.btn-secondary i,
.btn-tertiary i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

/* Button icon hover transforms removed for consistency */

/* Enhanced Button Specific Styling for Hero */
.hero .btn-primary {
    background: linear-gradient(135deg, #FDD835, #FBC02D);
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(253, 216, 53, 0.4);
    border: 2px solid #FDD835;
}

.hero .btn-primary:hover {
    background: linear-gradient(135deg, #FBC02D, #F57F17);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(253, 216, 53, 0.6);
    border-color: #FBC02D;
}

.hero .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero .btn-tertiary {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
}

.hero .btn-tertiary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--white);
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

/* Service card hover transform removed for consistency */

.service-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    cursor: pointer;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

/* Service image hover scale removed for consistency */

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(46, 125, 127, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    transition: opacity var(--transition);
}

.service-image:hover .image-overlay {
    opacity: 1;
}

.image-overlay i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.image-overlay span {
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.service-features li i {
    color: var(--primary-color);
    width: 16px;
}

/* Certifications Section */
.certifications {
    padding: 3rem 0;
    background: var(--light-gray);
}

/* Horizontal certification row */
.certifications-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 1rem;
}

/* ===== Certification Card Hover Effect ===== */
.certification-card {
    position: relative;
    width: 160px;
    height: 160px;
    min-width: 160px;
    min-height: 160px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.certification-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.certification-card:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}

.certification-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ===== Tooltip Styling ===== */
.cert-tooltip {
    position: fixed;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--dark);
    padding: 24px;
    border-radius: 12px;
    max-width: 350px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    pointer-events: none;
    
    /* Smoother Animation */
    opacity: 0;
    transform: translateY(15px) scale(0.95);
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cert-tooltip.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.cert-tooltip-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: var(--primary-color);
    padding-right: 30px; /* Space for close button */
}

.cert-tooltip-description {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: var(--dark-gray);
}

/* Close button (mobile) */
.cert-tooltip-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    color: var(--dark-gray);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
    display: none;
    transition: opacity 0.3s ease;
}

.cert-tooltip-close:hover {
    opacity: 0.6;
    color: var(--primary-color);
}

/* Arrow pointer for desktop */
.cert-tooltip::after {
    content: '';
    position: absolute;
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 9px solid rgba(255, 255, 255, 0.95);
}

/* Mobile: Full overlay style */
@media (max-width: 768px) {
    .cert-tooltip {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.9);
        max-width: 90%;
        width: 90%;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .cert-tooltip.visible {
        transform: translate(-50%, -50%) scale(1);
    }
    
    .cert-tooltip::after {
        display: none;
    }
    
    .cert-tooltip-close {
        display: block;
    }
    
    /* Backdrop overlay */
    .cert-tooltip-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 9999;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }
    
    .cert-tooltip-backdrop.visible {
        opacity: 1;
        pointer-events: auto;
    }
}

/* Certification Modal */
.certification-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.certification-modal-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    margin: 10vh auto;
    box-shadow: var(--shadow-xl);
}

.cert-modal-logo {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: var(--light-gray);
    border-radius: var(--radius);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-modal-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cert-modal-info h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cert-modal-info p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.cert-modal-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.benefit-tag {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
    white-space: nowrap;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.service-icon img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    color: var(--dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Products Section */
.products {
    padding: 5rem 0;
    background: var(--light-gray);
}

.product-categories {
    margin-top: 3rem;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    font-weight: var(--font-weight-medium);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

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

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid #f0f0f0;
}

/* Product card hover transform removed for consistency */

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

/* Product image hover scale removed for consistency */

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
}

.season-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.product-origin {
    color: var(--primary-color);
    font-weight: var(--font-weight-medium);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.product-description {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-features {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.feature {
    background: var(--light-gray);
    color: var(--dark-gray);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
}

.btn-product {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    transition: all var(--transition);
    width: 100%;
    justify-content: center;
}

/* Product actions container */
.product-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

/* Small download button */
.btn-download-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    font-size: 0.875rem;
    transition: all var(--transition);
    width: 100%;
}

.btn-download-small:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
}

.btn-download-small i {
    font-size: 0.875rem;
}

/* Product button hover transform removed for consistency */

/* Ensure Font Awesome icons display properly */
.fab {
    font-family: "Font Awesome 6 Brands", "Font Awesome 5 Brands", "FontAwesome";
    font-weight: 400;
    font-style: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
}

/* Specific brand icon fixes - Unicode values for official icons */
.fab.fa-whatsapp::before {
    content: "\f232"; /* Official WhatsApp icon */
}

.fab.fa-linkedin::before {
    content: "\f08c"; /* Official LinkedIn icon */
}

/* Force icon loading if CDN fails */
@font-face {
    font-family: 'FontAwesome';
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-brands-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Contact icon styling consistency */
.contact-icon .fab {
    color: var(--white);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* WhatsApp floating button icon */
.whatsapp-link .fab {
    color: var(--white);
    font-size: 1.5rem;
    font-family: 'Font Awesome 6 Brands' !important;
    font-weight: 400 !important;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--radius);
    transition: all var(--transition);
    border: 2px solid transparent;
}

.contact-item:hover {
    background: var(--light-gray);
    border-color: var(--primary-color);
    transform: translateX(3px);
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.contact-icon i {
    color: var(--white) !important;
    font-size: 1.2rem;
}

.contact-icon i.fas {
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900 !important;
}

.contact-icon i.fab {
    font-family: 'Font Awesome 6 Brands' !important;
    font-weight: 400 !important;
}

/* Contact item icon hover transform removed for consistency */

.contact-details {
    flex: 1;
}

.contact-details h4 {
    color: var(--primary-color);
    margin-bottom: 4px;
    font-size: 1rem;
    font-weight: 600;
}

.contact-details p {
    color: var(--dark-gray);
    margin: 0;
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid #e9ecef;
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
}

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

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
    font-weight: var(--font-weight-medium);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: var(--radius);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 125, 127, 0.1);
}

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

.btn-submit {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}

/* Submit button hover transform removed for consistency */
}

/* WhatsApp Float - Force Right Position */
.whatsapp-float {
    position: fixed !important;
    bottom: 2rem !important;
    right: 2rem !important;
    left: auto !important;
    z-index: 99999 !important;
    transform: translateX(0) !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Override any potential conflicting styles */
#whatsapp-float {
    position: fixed !important;
    bottom: 2rem !important;
    right: 2rem !important;
    left: auto !important;
    z-index: 99999 !important;
    transform: translateX(0) !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* reCAPTCHA Widget Positioning and Hide Badge */
.grecaptcha-badge {
    bottom: 2rem !important;
    left: 2rem !important;
    right: auto !important;
    z-index: 999;
    visibility: hidden !important;
    opacity: 0 !important;
    display: none !important;
}

.whatsapp-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse 2s infinite;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
    background: #22c55e;
}

/* WhatsApp hover transform removed for consistency */

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Hero Responsive - Tablet */
    .hero-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        padding-right: 0;
        align-items: center;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .hero-trust {
        gap: 2rem;
    }
    
    .hero-visual {
        align-items: center;
        padding-top: 1rem;
    }
    
    .hero-badge {
        margin: 0 auto;
        max-width: 300px;
    }
    
    .hero-features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-content {
        padding: 1.25rem;
    }
    
    .certifications-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .certification-card {
        padding: 1.5rem;
    }
    
    .certification-logo {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    /* Hero Responsive - Mobile */
    .hero {
        padding: 5rem 0 3rem;
        min-height: 90vh;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-tagline {
        font-size: 0.9rem;
        gap: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-trust {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .trust-item {
        flex-basis: 45%;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .btn-primary, .btn-secondary, .btn-tertiary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-badge {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        max-width: 260px;
        align-items: center;
    }
    
    .badge-text {
        align-items: center;
        text-align: center;
    }
    
    .subtitle-main {
        font-size: 1.1rem;
    }
    
    .subtitle-secondary {
        font-size: 0.95rem;
    }
    
    .scroll-indicator {
        bottom: 1rem;
        font-size: 0.75rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .whatsapp-float {
        bottom: 1.5rem !important;
        right: 1.5rem !important;
        left: auto !important;
    }
}

/* Additional mobile responsiveness for WhatsApp widget */
@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 1rem !important;
        right: 1rem !important;
        left: auto !important;
    }
    
    .whatsapp-link {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.3rem !important;
    }
    
    .grecaptcha-badge {
        visibility: hidden !important;
        opacity: 0 !important;
        display: none !important;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

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

.text-primary {
    color: var(--primary-color);
}

.bg-primary {
    background-color: var(--primary-color);
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Poster Modal */
.poster-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-content {
    position: relative;
    margin: 2rem auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.modal-poster-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
}

.modal-close {
    position: absolute;
    top: -3rem;
    right: 0;
    color: var(--white);
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: color var(--transition);
    z-index: 10000;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-caption {
    margin-top: 1rem;
    text-align: center;
}

.modal-caption p {
    color: var(--white);
    font-size: 1rem;
    margin: 0;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-content {
        margin: 1rem auto;
        width: 95%;
    }
    
    .modal-poster-image {
        max-height: 75vh;
    }
    
    .modal-close {
        top: -2.5rem;
        font-size: 2rem;
    }
}

/* Certifications Mobile Responsive */
@media (max-width: 768px) {
    .certifications-row {
        gap: 1rem;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 2rem;
    }
    
    .certification-card {
        width: 120px;
        height: 120px;
        min-width: 120px;
        min-height: 120px;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .certifications-row {
        gap: 0.75rem;
        padding: 0 1rem;
    }
    
    .certification-card {
        width: 100px;
        height: 100px;
        min-width: 100px;
        min-height: 100px;
        padding: 0.75rem;
    }
}

/* Supplier Network Map Section */
.supplier-network {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    font-weight: var(--font-weight-medium);
}

/* Map Instructions */
.map-instructions {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.instruction-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-color);
    font-weight: var(--font-weight-medium);
    color: var(--primary-color);
    transition: all var(--transition);
}

.instruction-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.instruction-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--primary-color);
    color: var(--white);
}

.instruction-item:hover i {
    color: var(--white);
}

/* Clean Map Layout */
.map-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    height: 600px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--white);
}

.map-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.map-container {
    position: relative;
    width: 100%;
    height: 600px;
    margin-top: 3rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--white);
}

#supplier-map {
    width: 100%;
    height: 100%;
}

/* Map Loading Indicator */
.map-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    border-radius: var(--radius-lg);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(46, 125, 127, 0.3);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

.map-loading p {
    color: var(--primary-color);
    font-weight: 500;
    margin: 0;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Map Instructions Overlay */
.map-instructions {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(52, 168, 83, 0.2);
}

.map-instructions.bottom {
    top: auto;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .map-instructions.bottom {
        left: 20px;
        right: 20px;
        transform: none;
        text-align: center;
        white-space: normal;
    }
    
    .map-instructions.bottom .instruction-content {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Map Controls */
.map-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.map-control-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(52, 168, 83, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.map-control-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.map-control-btn:active {
    transform: scale(0.95);
}

.map-control-btn.active {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

/* Hidden instructions */
.map-instructions.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(10px);
    transition: all 0.3s ease;
}

.map-instructions:not(.hidden) {
    opacity: 1;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.instruction-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: var(--font-weight-medium);
}

.instruction-content i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Country Information Panel */
.country-panel {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 380px;
    max-height: calc(100% - 40px);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    overflow: hidden;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.4s ease;
}

.country-panel.active {
    transform: translateX(0);
    opacity: 1;
}

.panel-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.country-flag {
    font-size: 2.5rem;
    width: 60px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 6px;
    border: 2px solid var(--white);
}

.country-title {
    flex: 1;
}

.country-title h3 {
    margin: 0 0 0.25rem 0;
    font-size: 1.3rem;
    font-weight: var(--font-weight-bold);
}

.region-tag {
    font-size: 0.9rem;
    opacity: 0.9;
}

.panel-close {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.panel-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.panel-content {
    padding: 2rem;
    max-height: 400px;
    overflow-y: auto;
}

.panel-content::-webkit-scrollbar {
    width: 6px;
}

.panel-content::-webkit-scrollbar-track {
    background: var(--light-gray);
}

.panel-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.products-section,
.logistics-section,
.operations-section {
    margin-bottom: 2rem;
}

.products-section h4,
.logistics-section h4,
.operations-section h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.products-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-item {
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary-color);
}

.product-name {
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.product-season {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.logistics-info,
.operations-info {
    line-height: 1.6;
    color: var(--text-dark);
}

.logistics-info strong,
.operations-info strong {
    color: var(--primary-color);
}
}

.country-overview-item .country-info strong {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
}

.country-overview-item .country-info span {
    color: var(--gray);
    font-size: 0.85rem;
}

/* Selected Country Details */
.selected-country-header {
    margin-bottom: 1.5rem;
}

.country-title-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: var(--radius);
    margin: -1.5rem -1.5rem 1.5rem -1.5rem;
}

.large-flag {
    font-size: 2.5rem;
    width: 60px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 6px;
    border: 2px solid var(--white);
}

.country-title-info {
    flex: 1;
}

.country-title-info h3 {
    margin: 0 0 0.25rem 0;
    font-size: 1.3rem;
    font-weight: var(--font-weight-bold);
}

.country-title-info p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Country Products Section */
.country-products-section {
    margin-bottom: 2rem;
}

.country-products-section h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.country-products-section h4::before {
    content: "🌱";
    font-size: 1.2rem;
}

.country-details-section {
    margin-bottom: 2rem;
}

.country-details-section h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.country-details-section h4::before {
    content: "📍";
    font-size: 1.2rem;
}

/* Country Action Section */
.country-action-section {
    margin-top: 2rem;
}

.contact-country-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: var(--font-weight-semibold);
    transition: all var(--transition);
    border: 2px solid transparent;
}

.contact-country-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

/* Enhanced Country Info Panel */
.country-info-panel {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 350px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 3px solid var(--primary-color);
    overflow: hidden;
}

.country-info-panel:not(.hidden) {
    transform: translateX(0);
}

.country-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    position: relative;
}

.country-flag {
    width: 50px;
    height: 35px;
    border-radius: 6px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--white);
}

.country-title {
    flex: 1;
}

.country-title h3 {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: var(--font-weight-bold);
    margin: 0 0 0.25rem 0;
}

.country-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
    font-weight: var(--font-weight-medium);
}

.close-panel {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    font-size: 1rem;
}

.close-panel:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    border-color: var(--white);
}

.country-content {
    max-height: 500px;
    overflow-y: auto;
}

.country-products {
    padding: 1.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.country-products h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.country-products h4::before {
    content: "🌱";
    font-size: 1.2rem;
}

.product-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--light-gray), var(--white));
    border: 2px solid transparent;
    transition: all var(--transition);
    position: relative;
}

.product-item:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.product-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
    flex-shrink: 0;
}

.product-name {
    font-weight: var(--font-weight-semibold);
    color: var(--dark);
    flex: 1;
}

.product-season {
    font-size: 0.8rem;
    color: var(--gray);
    background: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-weight: var(--font-weight-medium);
    border: 1px solid var(--light-gray);
}

.country-details {
    padding: 1.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.country-details h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.country-details h4::before {
    content: "📍";
    font-size: 1.2rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-gray);
    font-size: 0.95rem;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--gray);
    font-weight: var(--font-weight-semibold);
}

.detail-value {
    color: var(--primary-color);
    font-weight: var(--font-weight-bold);
    text-align: right;
}

.country-actions {
    padding: 1.5rem;
    background: var(--light-gray);
}

.btn-contact-country {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: var(--font-weight-semibold);
    transition: all var(--transition);
    border: 2px solid transparent;
}

.btn-contact-country:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

/* Enhanced Map Markers */
.mapboxgl-marker {
    cursor: pointer;
}

.custom-marker {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: 4px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(46, 125, 127, 0.4);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: visible;
}

.marker-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
}

.marker-flag {
    font-size: 1.8rem;
    line-height: 1;
}

.marker-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-color);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: var(--font-weight-bold);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
    box-shadow: var(--shadow-md);
}

.custom-marker:hover {
    transform: scale(1.15);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
    border-color: var(--accent-color);
}

.custom-marker.active {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    transform: scale(1.2);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.custom-marker.active .marker-badge {
    background: var(--primary-color);
    animation: pulse 2s infinite;
}

/* Marker pulse animation */
@keyframes markerPulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 1; 
    }
    50% { 
        transform: scale(1.1); 
        opacity: 0.8; 
    }
}

/* Map Responsive Design */
@media (max-width: 1024px) {
    .map-container {
        height: 500px;
    }
    
    .map-legend {
        top: 1rem;
        left: 1rem;
        max-width: 200px;
        padding: 1rem;
    }
    
    .country-info-panel {
        top: 1rem;
        right: 1rem;
        width: 280px;
    }
}

@media (max-width: 768px) {
    .supplier-network {
        padding: 3rem 0;
    }
    
    .map-container {
        height: 400px;
        margin: 0 -1rem;
        border-radius: 0;
    }
    
    .map-legend {
        position: relative;
        top: auto;
        left: auto;
        margin: 1rem;
        max-width: none;
        background: var(--white);
        backdrop-filter: none;
    }
    
    .country-info-panel {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        margin: 1rem;
        transform: none;
        margin-top: 1rem;
    }
    
    .country-info-panel.hidden {
        display: none;
    }
    
    .country-info-panel:not(.hidden) {
        display: block;
        transform: none;
    }
}

@media (max-width: 480px) {
    .map-container {
        height: 350px;
    }
    
    .legend-items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .legend-item {
        font-size: 0.8rem;
    }
    
    .country-header {
        padding: 1rem;
    }
    
    .country-products,
    .country-details {
        padding: 1rem;
    }
}

/* Map Section Styles */
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--white);
}

.map-container {
    position: relative;
    background: var(--light-gray);
}

.map-canvas {
    width: 100%;
    height: 100%;
    border-radius: var(--radius) 0 0 var(--radius);
}

.info-container {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-left: 3px solid var(--primary-color);
}

.info-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.info-header h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
}

.info-header p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.default-content {
    padding: 2rem 1.5rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.default-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.default-content h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.default-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.default-content ul {
    list-style: none;
    padding: 0;
    text-align: left;
    color: var(--dark);
}

.default-content li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.country-info {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.country-header {
    font-size: 1.4rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-section {
    margin-bottom: 2rem;
}

.info-section h4 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    margin: 0 0 0.75rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive Design for Map */
@media (max-width: 768px) {
    .country-panel {
        width: calc(100% - 40px);
        right: 20px;
        max-height: 50vh;
    }
    
    .map-instructions {
        position: relative;
        margin-bottom: 1rem;
        width: 100%;
        left: 0;
        top: 0;
    }
    
    .info-container {
        border-left: none;
        border-top: 3px solid var(--primary-color);
        max-height: 500px;
        overflow-y: auto;
    }
    
    .map-canvas {
        border-radius: var(--radius) var(--radius) 0 0;
    }
}

@media (max-width: 480px) {
    .country-panel {
        width: calc(100% - 20px);
        right: 10px;
        left: 10px;
        max-height: 60vh;
    }
    
    .panel-header {
        padding: 1rem;
    }
    
    .panel-content {
        padding: 1rem;
    }
    
    .instruction-content {
        padding: 1.5rem 1rem;
    }
    
    .country-info {
        padding: 1rem;
    }
}

/* New Clean Sidebar CSS for Map */
.country-overview h3 {
    padding: 1.25rem;
    margin: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.country-overview h3::before {
    content: "🌍";
    font-size: 1.2rem;
}

.country-overview-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: all var(--transition);
    border-bottom: 1px solid var(--light-gray);
}

.country-overview-item:hover {
    background: var(--light-gray);
    border-left: 4px solid var(--accent-color);
}

.country-overview-item.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-left: 4px solid var(--accent-color);
}

.country-overview-item.active .country-info strong,
.country-overview-item.active .country-info span {
    color: var(--white);
}

#default-message {
    text-align: center;
    color: var(--text-muted);
    padding: 3rem 1rem;
}

#default-message .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

#selected-country-content {
    display: none;
}

#selected-country-name {
    font-size: 1.4rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 1rem;
}

}

.product-info {
    flex: 1;
}

.product-info .product-name {
    font-weight: var(--font-weight-semibold);
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.product-info .product-season {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 1rem;
}

.detail-grid .detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--light-gray);
    border-radius: var(--radius);
    border: 2px solid transparent;
    transition: all var(--transition);
}

.detail-grid .detail-item:hover {
    border-color: var(--primary-color);
    background: var(--white);
}

.detail-grid .detail-label {
    font-weight: var(--font-weight-semibold);
    color: var(--primary-color);
    font-size: 0.9rem;
}

.detail-grid .detail-value {
    color: var(--dark);
    text-align: right;
    font-size: 0.9rem;
}

/* Enhanced Country Information Sections */
.logistics-info, .operations-info, .market-info {
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--light-gray), var(--white));
    border-radius: var(--radius);
    border-left: 4px solid var(--primary-color);
}

.logistics-info p, .operations-info p, .market-info p {
    margin: 0;
    line-height: 1.6;
    color: var(--dark);
    font-size: 0.9rem;
}

.certifications-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.certification-badge {
    display: inline-block;
    padding: 0.3rem 0.6rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
    border: 1px solid var(--primary-dark);
    transition: all var(--transition);
}

.certification-badge:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

#selected-country-details h4 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    margin: 1.5rem 0 0.75rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#selected-country-details h4:first-child {
    margin-top: 0;
}

/* Responsive Design for Map Layout */
@media (max-width: 768px) {
    .map-layout {
        grid-template-columns: 1fr;
        padding: 0.75rem 1rem;
    }
    
    .country-content {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .map-layout {
        grid-template-rows: 300px 1fr;
        gap: 1rem;
    }
    
    .country-overview h3 {
        padding: 1rem;
        font-size: 1rem;
    }
    
}

/* FINAL OVERRIDE - WhatsApp Widget Must Be On Right Side */
.whatsapp-float,
#whatsapp-float,
div.whatsapp-float,
div#whatsapp-float {
    position: fixed !important;
    bottom: 2rem !important;
    right: 2rem !important;
    left: auto !important;
    z-index: 999999 !important;
    transform: translateX(0) !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    inset-inline-start: auto !important;
    inset-inline-end: 2rem !important;
}

/* Copyright Section */
.copyright-info {
    background-color: #16a085;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

.copyright-info p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Poster Modal */
.poster-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.poster-modal-content {
    position: relative;
    margin: 2% auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
    text-align: center;
}

.modal-poster-image {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10001;
}

.modal-close:hover {
    color: #16a085;
}

.modal-poster-caption {
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 18px;
    font-weight: 500;
}

.service-image {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    overflow: hidden;
}

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

.zoom-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(22, 160, 133, 0.9);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.service-image:hover .zoom-icon {
    opacity: 1;
    transform: scale(1.1);
}

.zoom-icon i {
    pointer-events: none;
}

/* Contact alternatives styling */
.contact-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-option:hover {
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-option.whatsapp {
    border-color: #25D366;
    color: #25D366;
}

.contact-option.whatsapp:hover {
    background-color: #25D366;
    color: white;
}

.contact-option.email {
    border-color: #16a085;
    color: #16a085;
}

.contact-option.email:hover {
    background-color: #16a085;
    color: white;
}

.success-content {
    text-align: center;
    padding: 20px;
}

.success-content i.fa-check-circle {
    font-size: 48px;
    color: #16a085;
    margin-bottom: 16px;
}

.success-content h3 {
    color: #16a085;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .poster-modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .modal-close {
        top: -40px;
        font-size: 30px;
    }
    
    .modal-poster-caption {
        font-size: 16px;
        padding: 15px 0;
    }
    
    .contact-options {
        gap: 8px;
    }
    
    .contact-option {
        padding: 10px 12px;
        font-size: 14px;
    }
}