/* Zero-Waste Refill Station Kiosks - Main CSS */

/* GLOBAL ANIMATION DISABLE - All animations and transitions disabled */
*, *::before, *::after {
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
    transform: none !important;
}

/* FORCE VISIBILITY - Ensure all content is visible without animations */
[data-sal] {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* Sal.js animation states override */
.sal-animate {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.sal-disabled [data-sal] {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* Additional visibility fixes */
.sal-placeholder {
    display: none !important;
}

/* Override any Sal.js CSS that might hide content */
*[class*="sal-"] {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* Ensure hero content is visible */
.hero-content,
.hero-image {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* Color Palette - 5 Primary Colors + Shades */
:root {
    /* Primary Colors */
    --primary-green: #8ac63d;
    --primary-blue: #5ac8fa;
    --primary-teal: #37aea3;
    --primary-orange: #fbc332;
    --primary-purple: #a45abf;
    
    /* Light Shades */
    --light-green: #bee37c;
    --light-blue: #7cb587;
    --light-teal: #7fbcac;
    --light-orange: #f3c763;
    --light-purple: #c08acd;
    
    /* Dark Shades */
    --dark-green: #558730;
    --dark-blue: #0e7edb;
    --dark-teal: #02705d;
    --dark-orange: #ff6900;
    --dark-purple: #6c178a;
    
    /* Neutral Colors */
    --neutral-gray: #F5F5F5;
    --neutral-dark: #0f1011;
    --neutral-light: #FAFAFA;
    
    /* Typography */
    --font-family-base: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-size-base: 1rem;
    --font-size-small: 0.875rem;
    --font-size-large: 1.125rem;
    --line-height-base: 1.5;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 3rem;
    
    /* Borders */
    --border-radius: 0.375rem;
    --border-width: 1px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px 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);
    
    /* Animation Variables - DISABLED */
    --animation-duration: 0s;
    --animation-timing: none;
}

/* Global Styles */
body {
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--neutral-dark);
    background-color: var(--neutral-light);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: 2.58rem;
    color: var(--primary-green);
}

h2 {
    font-size: 2rem;
    color: var(--primary-blue);
}

h3 {
    font-size: 1.63rem;
    color: var(--primary-teal);
}

h4 {
    font-size: 1.29rem;
    color: var(--dark-green);
}

h5 {
    font-size: 1.22rem;
    color: var(--dark-blue);
}

h6 {
    font-size: 1rem;
    color: var(--dark-teal);
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--neutral-dark);
}

/* Prefers Reduced Motion - ONLY allowed !important usage */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1;
        transition-duration: 0.01ms;
    }
}

/* Header Styles */
.navbar-brand {
    font-size: 1.64rem;
    font-weight: 700;
    color: var(--primary-green);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--neutral-dark);
}

.navbar-nav .nav-link:hover {
    color: var(--primary-blue);
}

.navbar.scrolled {
    background-color: rgba(248, 249, 250, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--light-blue) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: var(--spacing-md);
}

.hero-content h2 {
    font-size: 1.57rem;
    color: var(--primary-teal);
    margin-bottom: var(--spacing-lg);
}

.hero-content p {
    font-size: var(--font-size-large);
    color: var(--neutral-dark);
    margin-bottom: var(--spacing-xl);
}

.hero-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* Feature Cards */
.feature-card {
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    background: white;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

/* .feature-card:hover - DISABLED */

.feature-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: var(--spacing-md);
}

.feature-card h4 {
    color: var(--dark-green);
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    color: var(--neutral-dark);
    margin-bottom: 0;
}

/* Service Cards */
.service-card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

/* .service-card:hover - DISABLED */

.service-card .card-img-top {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    height: 200px;
    object-fit: cover;
}

.service-card .card-title {
    color: var(--primary-blue);
    font-size: 1.29rem;
    font-weight: 600;
}

.service-card .card-text {
    color: var(--neutral-dark);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: var(--spacing-xs) 0;
    color: var(--neutral-dark);
}

.feature-list li:before {
    content: "✓";
    color: var(--primary-green);
    font-weight: bold;
    margin-right: var(--spacing-sm);
}

.price {
    font-size: 1.64rem;
    font-weight: 700;
    color: var(--primary-orange);
}

/* Feature Items */
.feature-item {
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    background: white;
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--spacing-lg);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--spacing-lg);
    flex-shrink: 0;
}

.feature-icon-wrapper i {
    font-size: 1.53rem;
    color: var(--primary-green);
}

.feature-content h4 {
    color: var(--dark-green);
    margin-bottom: var(--spacing-sm);
}

.feature-content p {
    color: var(--neutral-dark);
    margin-bottom: 0;
}

/* Price Cards */
.price-card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

/* .price-card:hover - DISABLED */

.price-card.featured {
    border: 2px solid var(--primary-blue);
    transform: scale(1.05);
}

.price-card h4 {
    color: var(--primary-blue);
    font-size: 1.60rem;
    margin-bottom: var(--spacing-md);
}

.price-features {
    list-style: none;
    padding: 0;
    margin: var(--spacing-lg) 0;
}

.price-features li {
    padding: var(--spacing-xs) 0;
    color: var(--neutral-dark);
}

.price-features li:before {
    content: "✓";
    color: var(--primary-green);
    font-weight: bold;
    margin-right: var(--spacing-sm);
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-top: var(--spacing-lg);
}

/* Team Members */
.team-member {
    padding: var(--spacing-lg);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: var(--spacing-md);
    border: 3px solid var(--light-teal);
}

.team-member h4 {
    color: var(--dark-teal);
    font-size: 1.20rem;
    margin-bottom: var(--spacing-xs);
}

.team-member p {
    color: var(--primary-teal);
    font-size: var(--font-size-small);
    margin-bottom: 0;
}

/* Review Cards */
.review-card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    background: var(--neutral-light);
}

.review-card .card-body {
    padding: var(--spacing-lg);
}

.review-card p {
    font-style: italic;
    color: var(--neutral-dark);
    margin-bottom: var(--spacing-md);
}

.review-card .blockquote-footer {
    color: var(--primary-teal);
    font-size: var(--font-size-small);
}

/* Case Study Cards */
.case-study-card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    background: var(--light-purple);
}

/* .case-study-card:hover - DISABLED */

.case-study-card h4 {
    color: var(--dark-purple);
    margin-bottom: var(--spacing-sm);
}

.case-study-card p {
    color: var(--neutral-dark);
    margin-bottom: 0;
}

/* Process Steps */
.process-step {
    padding: var(--spacing-lg);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.57rem;
    font-weight: 700;
    margin: 0 auto var(--spacing-md);
}

.process-step h4 {
    color: var(--dark-orange);
    margin-bottom: var(--spacing-sm);
}

.process-step p {
    color: var(--neutral-dark);
    margin-bottom: 0;
}

/* Timeline Items */
.timeline-item {
    padding: var(--spacing-lg);
}

.timeline-year {
    font-size: 1.64rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: var(--spacing-sm);
}

.timeline-item h4 {
    color: var(--dark-purple);
    margin-bottom: var(--spacing-sm);
}

.timeline-item p {
    color: var(--neutral-dark);
    margin-bottom: 0;
}

/* Career Cards */
.career-card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

/* .career-card:hover - DISABLED */

.career-card h4 {
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

.career-role {
    color: var(--primary-teal);
    font-size: var(--font-size-small);
    font-weight: 500;
}

/* Info Cards */
.info-card {
    padding: var(--spacing-lg);
}

.info-icon {
    font-size: 2.58rem;
    color: var(--primary-green);
    margin-bottom: var(--spacing-md);
}

.info-card h4 {
    color: var(--dark-green);
    margin-bottom: var(--spacing-sm);
}

.info-card p {
    color: var(--neutral-dark);
    margin-bottom: 0;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.contact-form .form-control {
    border: 1px solid var(--light-teal);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    font-size: var(--font-size-base);
}

.contact-form .form-control:focus {
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 0.2rem rgba(33, 165, 132, 0.25);
}

.contact-info-card {
    padding: var(--spacing-lg);
    text-align: center;
}

.contact-info-icon {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-md);
}

.contact-info-card h4 {
    color: var(--dark-blue);
    margin-bottom: var(--spacing-sm);
}

.contact-info-card p {
    color: var(--neutral-dark);
    margin-bottom: 0;
}

/* Blog Cards */
.blog-card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

/* .blog-card:hover - DISABLED */

.blog-card .card-img-top {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    height: 200px;
    object-fit: cover;
}

.blog-card .card-title {
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

.blog-card .card-text {
    color: var(--neutral-dark);
}

/* FAQ Cards */
.faq-card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    background: var(--neutral-light);
}

.faq-card .card-title {
    color: var(--primary-teal);
    font-size: 1.14rem;
    margin-bottom: var(--spacing-md);
}

.faq-card .card-text {
    color: var(--neutral-dark);
    margin-bottom: 0;
}

/* Gallery */
#gallery img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

/* #gallery img:hover - DISABLED */

/* Buttons */
.btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
    font-weight: 600;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius);
}

/* .btn-primary:hover - DISABLED */

.btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(94, 168, 45, 0.50);
}

.btn-lg {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: var(--font-size-large);
}

/* Breadcrumb */
.breadcrumb-nav {
    background-color: var(--neutral-gray);
    border-bottom: 1px solid var(--light-teal);
}

.breadcrumb-icon {
    height: 24px;
    width: auto;
}

/* Footer */
footer {
    background-color: var(--neutral-dark);
    color: var(--neutral-light);
}

footer h4,
footer h5 {
    color: var(--light-green);
}

footer a {
    color: var(--neutral-light);
    text-decoration: none;
}

footer a:hover {
    color: var(--light-teal);
}

/* Utility Classes */
.text-primary {
    color: var(--primary-green);
}

.text-secondary {
    color: var(--primary-blue);
}

.bg-primary {
    background-color: var(--primary-green);
}

.bg-secondary {
    background-color: var(--primary-blue);
}

/* Additional Component Styles */
.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: var(--spacing-sm);
}

.metric-value {
    font-size: 2.55rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: var(--spacing-sm);
}

.phase-number {
    width: 50px;
    height: 50px;
    background: var(--primary-purple);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 auto var(--spacing-md);
}

/* Icon Styles */
.innovation-icon,
.partner-icon,
.region-icon,
.research-icon,
.industry-icon,
.category-icon {
    font-size: 2.64rem;
    margin-bottom: var(--spacing-md);
}

.innovation-icon {
    color: var(--primary-purple);
}

.partner-icon {
    color: var(--primary-blue);
}

.region-icon {
    color: var(--primary-orange);
}

.research-icon {
    color: var(--primary-teal);
}

.industry-icon {
    color: var(--primary-green);
}

.category-icon {
    color: var(--primary-blue);
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-green);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: var(--border-radius);
    z-index: 100;
}

.skip-link:focus {
    top: 6px;
}

/* Focus Styles */
.feature-card:focus,
.service-card:focus,
.blog-card:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Form Validation */
.form-control.is-invalid {
    border-color: #da2748;
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.42rem;
    font-size: 0.93rem;
    color: #f14b51;
}

/* Loading State */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Alert Styles */
.alert {
    border-radius: var(--border-radius);
    border: none;
    padding: var(--spacing-md);
}

.alert-success {
    background-color: var(--light-green);
    color: var(--dark-green);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.61rem;
    }
    
    .hero-content h2 {
        font-size: 1.33rem;
    }
    
    .price-card.featured {
        transform: none;
    }
    
    .team-photo {
        width: 100px;
        height: 100px;
    }
    
    .contact-form {
        padding: var(--spacing-lg);
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon-wrapper {
        margin-right: 0;
        margin-bottom: var(--spacing-md);
    }
} 


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

/* .social-link::before - DISABLED */

/* .social-link:hover::before - DISABLED */

/* .social-link:hover - DISABLED */

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

/* .facebook-link:hover - DISABLED */

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

/* .linkedin-link:hover - DISABLED */

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

/* .x-link:hover - DISABLED */

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}