/* Import Google Fonts - Inter for thin/slick UI + Playfair for headings */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@400;600&display=swap');

/* CSS Variables - Enhanced Color Palette Based on Logo */
:root {
    /* Primary brand colors (blended from references) */
    --primary-gold: #FFC857; /* warm gold accent */
    --soft-gold: #FFF6E0;
    --pale-gold: #FFFDF6;

    --primary-teal: #0B6B58; /* deep teal - main action color */
    --soft-teal: #2BB89A;
    --pale-teal: #E6FBF5;

    --primary-burgundy: #8B4B3B  ; /* vibrant purple accent */
    --soft-burgundy: #BFA8FF;
    --pale-burgundy: #F5F2FF;

    --cream: #FAF8F3;
    --soft-cream: #F5F2ED;
    --warm-white: #FEFCF8;

    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --text-light: #9CA3AF;

    --border-light: #E5E7EB;
    --border-medium: #D1D5DB;
    
    /* Enhanced shadow system */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
    --shadow-2xl: 0 24px 64px rgba(0, 0, 0, 0.20);
    --shadow-teal: 0 8px 32px rgba(11, 107, 88, 0.15);
    --shadow-gold: 0 8px 32px rgba(255, 200, 87, 0.20);
    
    /* Legacy shadows for compatibility */
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.1);
    --shadow-strong: rgba(0, 0, 0, 0.15);

    /* Enhanced gradient system */
    --gradient-primary: linear-gradient(135deg, var(--primary-teal) 0%, #27c79b 100%);
    --gradient-primary-hover: linear-gradient(135deg, #0a5a4a 0%, var(--primary-teal) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--primary-gold) 0%, #FFD082 100%);
    --gradient-accent: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--soft-burgundy) 100%);
    --gradient-hero: linear-gradient(180deg, rgba(240,255,253,0.8) 0%, rgba(255,250,240,0.9) 50%, rgba(245,242,255,0.8) 100%);
    --gradient-card: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(250,248,243,0.95) 100%);
    --gradient-overlay: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-bg-strong: rgba(255, 255, 255, 0.85);
    --backdrop-blur: blur(20px);
    --backdrop-blur-strong: blur(30px);
    
    /* Animation timings */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-primary);
    background: linear-gradient(180deg, #FEFCF8 0%, #FAF8F3 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hide native scrollbars while preserving scrolling behavior
   - Firefox: `scrollbar-width: none`
   - IE/Edge legacy: `-ms-overflow-style: none`
   - WebKit (Chrome/Safari): zero-size scrollbar via ::-webkit-scrollbar
   Also provide a utility class `.hide-scrollbar` to hide scrollbars selectively. */
html, body {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
}

html::-webkit-scrollbar, body::-webkit-scrollbar {
    width: 0;  /* Chrome, Safari */
    height: 0; /* horizontal scrollbar */
}

/* Utility class to hide scrollbars on specific containers */
.hide-scrollbar {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
}
.hide-scrollbar::-webkit-scrollbar {
    width: 0;
    height: 0;
}

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

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-burgundy);
    text-rendering: optimizeLegibility;
    letter-spacing: -0.02em;
}

h1 { 
    font-size: clamp(2rem, 5vw, 3.6rem); 
    font-weight: 700;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--primary-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 { 
    font-size: clamp(1.75rem, 4vw, 2.5rem); 
    font-weight: 600;
    letter-spacing: -0.01em;
}

h3 { 
    font-size: clamp(1.25rem, 3vw, 1.5rem); 
    font-weight: 600;
}

h4 { 
    font-size: clamp(1.05rem, 2vw, 1.2rem); 
    font-weight: 600;
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.75;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.22s ease;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-teal);
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(11, 107, 88, 0.25);
    background: var(--gradient-primary-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
    z-index: -1;
}

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

.btn-secondary:hover::before {
    width: 100%;
}

/* Explore button - touch friendly, modern feedback */
.btn-explore {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.98rem;
    text-decoration: none;
    color: white;
    background: var(--gradient-primary);
    box-shadow: var(--shadow-teal);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn-explore::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-explore:hover::before {
    width: 300px;
    height: 300px;
}

.btn-explore:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(11, 107, 88, 0.3);
}

/* Active / touch feedback */
.btn-explore:active {
    transform: translateY(0) scale(0.99);
    box-shadow: 0 6px 14px rgba(4,128,110,0.06);
    opacity: 0.98;
}

.btn-explore:focus-visible {
    outline: 3px solid rgba(11,107,88,0.14);
    outline-offset: 3px;
    border-radius: 14px;
}

/* Small variant for tight spaces */
.btn-explore.small {
    padding: 8px 12px;
    font-size: 0.86rem;
    border-radius: 12px;
}

/* Optional subtle pressed overlay using pseudo-element */
.btn-explore::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    transition: opacity 0.16s ease;
    opacity: 0;
    background: rgba(0,0,0,0.02);
}
.btn-explore:active::after { opacity: 1; }

/* Enhanced Header with Glassmorphism */
.header {
    background: var(--glass-bg);
    -webkit-backdrop-filter: var(--backdrop-blur);
    backdrop-filter: var(--backdrop-blur);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-base);
}

/* Header variant when page is scrolled */
.header.scrolled {
    background: var(--glass-bg-strong);
    -webkit-backdrop-filter: var(--backdrop-blur-strong);
    backdrop-filter: var(--backdrop-blur-strong);
    border-color: rgba(26,32,44,0.1);
    box-shadow: var(--shadow-lg);
    transform: translateY(0);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px; /* reduced vertical padding for slimmer header */
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 250px;
    max-height: 60px;
    display: block;
    object-fit: contain;
    object-position: left center;
    transform-origin: left center;
    transform: translateY(0) scale(1);
    transition: transform 0.18s ease;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    letter-spacing: 0.3px;
    text-transform: none;
    white-space: nowrap;
    margin-left: 4px;
}

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

.nav-list {
    display: flex;
    list-style: none;
    gap: 10px; /* tighter spacing for compact menu */
    margin: 0;
    padding: 0;
}

.nav-list li .nav-link {
    text-transform: uppercase;
    padding: 3px 6px; /* reduced padding */
    border-radius: 6px;
    font-size: 0.86rem; /* slightly smaller text */
    letter-spacing: 0.9px;
    transition: transform 0.14s ease, color 0.14s ease, background 0.14s ease;
    font-weight: 500;
}

.nav-link:hover {
    transform: translateY(-2px);
    color: var(--primary-teal);
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-link::after {
    /* animated underline */
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-teal);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.18s cubic-bezier(.2,.9,.2,1), opacity 0.18s ease;
    opacity: 0.0;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    opacity: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 30px;
    height: 30px;
    padding: 5px;
    position: relative;
    z-index: 1001;
    transition: transform 0.2s ease;
}

.hamburger:hover {
    transform: scale(1.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-teal);
    margin: 3px 0;
    display: block;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

/* Hamburger transform to X when active */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */

.hero {
    padding: 180px 0 140px;
    background: var(--gradient-hero);
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(11, 107, 88, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 200, 87, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 740px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--text-primary);
    margin-bottom: 24px;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 18px;
    font-family: var(--font-body);
    font-weight: 300;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 26px;
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
}

.hero-media {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
}

.video-placeholder {
    background: linear-gradient(135deg, rgba(234,249,245,0.8), rgba(255,247,235,0.8));
    border-radius: 12px;
    padding: 34px 18px;
    text-align: center;
    border: 1px solid var(--border-light);
    position: relative;
}

.video-placeholder i {
    font-size: 2.5rem;
    color: var(--primary-teal);
    margin-bottom: 10px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--warm-white);
}

.section-title {
    text-align: center;
    color: var(--primary-burgundy);
    margin-bottom: 70px;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

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

.feature-card {
    background: var(--gradient-card);
    padding: 45px 35px;
    border-radius: 24px;
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: rgba(11, 107, 88, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: var(--shadow-teal);
    transition: all var(--transition-base);
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    filter: blur(8px);
    transition: opacity var(--transition-base);
}

.feature-card:hover .feature-icon::after {
    opacity: 0.5;
}

.feature-card:hover .feature-icon {
    transform: rotate(5deg) scale(1.1);
}

.feature-icon i {
    font-size: 1.75rem;
    color: white;
    z-index: 1;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--pale-burgundy), var(--pale-teal));
}

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

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.5);
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow-md);
}

.stat-number {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.image-placeholder {
    background: var(--soft-cream);
    border-radius: 15px;
    padding: 100px 20px;
    text-align: center;
    border: 2px dashed var(--border-light);
}

/* Hide image placeholder on mission-vision page */
.mvv-section .about-media {
    display: none;
}

.company-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.5);
    transition: all var(--transition-base);
}

.company-image:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-2xl);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--warm-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-teal);
    transition: all var(--transition-base);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item:hover i {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 32px rgba(11, 107, 88, 0.3);
}

.contact-item > p {
    margin: 0;
    flex: 1;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 50px;
}

.contact-item > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item > div p {
    margin: 0;
    line-height: 1.6;
}

.contact-item > div p strong {
    color: var(--primary-teal);
    font-weight: 600;
    display: inline-block;
    min-width: 140px;
}

.contact-form {
    background: var(--gradient-card);
    padding: 45px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all var(--transition-base);
    font-family: var(--font-body);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
    background: white;
    box-shadow: 0 0 0 4px rgba(11, 107, 88, 0.1);
    transform: translateY(-2px);
}

/* Map styling for contact section */
.contact-map {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-light);
}
.contact-map iframe {
    width: 100%;
    height: 350px;
    border: 0;
    display: block;
}

/* Page Header */
.page-header {
    padding: 140px 0 80px;
    background: var(--gradient-hero);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(11, 107, 88, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--primary-teal);
    margin-bottom: 15px;
}

/* Products Showcase */
.products-showcase {
    padding: 80px 0;
}

.product-unit {
    margin-bottom: 120px;
    position: relative;
}

.product-unit::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

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

.product-unit.reverse .product-content {
    grid-template-columns: 1fr 1fr;
}

.product-unit.reverse .product-media {
    order: -1;
}

.product-description {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 20px;
    text-align: left;
}

.product-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-text h2 {
    margin-bottom: 0;
    font-size: clamp(1.75rem, 3vw, 2.2rem);
    line-height: 1.2;
}

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

.product-features li {
    margin-bottom: 12px;
    font-size: 0.98rem;
    line-height: 1.7;
    padding-left: 5px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.product-features i {
    margin-top: 4px;
    flex-shrink: 0;
    font-size: 0.9rem;
    color: var(--primary-teal);
}

.product-features {
    list-style: none;
    margin-bottom: 30px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.product-features i {
    color: var(--primary-teal);
}

.main-image-placeholder {
    background: var(--soft-cream);
    border-radius: 20px;
    padding: 80px 20px;
    text-align: center;
    border: 2px dashed var(--border-light);
    margin-bottom: 25px;
    overflow: hidden;
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.main-image-placeholder:has(img) {
    padding: 0;
    border: none;
    min-height: auto;
    box-shadow: var(--shadow-lg);
}

.product-main-image {
    width: 100%;
    height: auto;
    min-height: 350px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    transition: transform var(--transition-slow);
}

.main-image-placeholder:hover .product-main-image {
    transform: scale(1.08);
}

.gallery-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-placeholder {
    background: var(--pale-teal);
    border-radius: 10px;
    padding: 30px 10px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
}

.gallery-image {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    position: relative;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.gallery-image:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-teal);
}

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

.gallery-image:hover img {
    transform: scale(1.15);
}

.video-section {
    margin-top: 30px;
}

.product-video {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    background: #000;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.product-video:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-4px);
}

.hero-video {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-2xl);
    background: #000;
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
}

.hero-video:hover {
    transform: scale(1.02);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.video-details {
    margin-top: 15px;
    padding: 20px;
    background: var(--pale-teal);
    border-radius: 10px;
}

.video-details h4 {
    color: var(--primary-teal);
    margin-bottom: 10px;
}

/* Team Showcase */
.team-showcase {
    padding: 80px 0;
    background: var(--warm-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
}

.team-member {
    background: var(--gradient-card);
    border-radius: 24px;
    padding: 40px 35px;
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.team-member:hover::before {
    transform: scaleX(1);
}

.team-member:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: rgba(11, 107, 88, 0.2);
}

.team-member:hover .member-photo {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(11, 107, 88, 0.2);
}

.member-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow-teal);
    position: relative;
    transition: all var(--transition-base);
    border: 4px solid rgba(255, 255, 255, 0.8);
}

.member-photo::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    filter: blur(12px);
    transition: opacity var(--transition-base);
}

.team-member:hover .member-photo::before {
    opacity: 0.6;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 50%;
    display: block;
}

/* Adjust specific team member photos to show more head space */
.member-photo-adjusted img {
    object-position: center 30%;
}

.member-photo::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

/* Fallback for when no image is provided - show initials or icon */
.member-photo:empty::after,
.member-photo:not(:has(img))::after {
    content: '\f007';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 4rem;
    color: rgba(255,255,255,0.8);
    z-index: 0;
}

.member-info {
    width: 100%;
}

.member-info h3 {
    color: var(--primary-teal);
    margin-bottom: 8px;
    font-size: 1.4rem;
}

.member-position {
    color: var(--primary-burgundy);
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-description {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-secondary);
    text-align: left;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.member-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--pale-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: var(--primary-teal);
    color: white;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--primary-teal) 0%, #0a5a4a 100%);
    color: white;
    padding: 70px 0 25px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

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

.footer-section h4 {
    color: var(--soft-gold);
    margin-bottom: 20px;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #E0E0E0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--soft-gold);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-circle:hover {
    background: var(--soft-gold);
    color: var(--primary-teal);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.social-circle.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}

.social-circle.facebook:hover {
    background: #1877F2;
    color: white;
}

.social-circle.linkedin:hover {
    background: #0077B5;
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,0.86);
}

/* Copyright-only footer class
   Apply this to the element that contains the copyright text
   so it can have a distinct color and size from other footer items. */
.footer-copyright {
    color: var(--warm-white); /* warmer, more visible on teal */
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.98;
}

/* Small variant if you need a slightly smaller copyright */
.footer-copyright.small {
    font-size: 0.88rem;
    font-weight: 400;
    opacity: 0.95;
}

/* Make footer text and links more visible on dark background */
.footer-section p,
.footer-section ul li a {
    color: rgba(255,255,255,0.92);
}

/* Footer-specific logo sizing (larger, no header transform) */
.footer .logo .footer-logo,
.footer .logo .logo-img.footer-logo {
    height: 120px;
    max-height: 120px;
    max-width: 480px;
    width: 480px;
    object-fit: contain;
    transform: none;
}

/* Mobile menu overlay - available globally */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998;
    pointer-events: none;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        margin-right: 8px;
        position: relative;
        left: -5px;
    }
    
    .nav-list {
        display: flex;
        position: fixed;
        top: 64px;
        right: -100%;
        width: 280px;
        max-width: 85vw;
        height: calc(100vh - 64px);
        background: rgba(255,255,255,0.98);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        border-radius: 0;
        box-shadow: -4px 0 24px rgba(0,0,0,0.1);
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
        margin: 0;
    }

    /* Mobile menu: shown when `.active` is toggled by JS */
    .nav-list.active {
        right: 0;
    }
    
    .nav-list li {
        width: 100%;
        margin: 0;
    }
    
    .nav-list li .nav-link {
        display: block;
        width: 100%;
        padding: 14px 24px;
        text-align: left;
        border-radius: 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        transition: background 0.2s ease, color 0.2s ease;
    }
    
    .nav-list li .nav-link:hover {
        background: var(--pale-teal);
        transform: none;
    }
    
    .nav-list li .nav-link::after {
        display: none;
    }
    
    .hero .container,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Product content mobile layout - ensure proper stacking */
    .product-content {
        display: flex !important;
        flex-direction: column;
        gap: 25px;
    }
    
    .product-unit .product-text,
    .product-unit .product-media {
        width: 100%;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 10px;
    }
    
    .team-member {
        padding: 30px 20px;
    }
    
    .member-photo {
        width: 150px;
        height: 150px;
        margin-bottom: 20px;
    }
    
    .member-photo img {
        object-position: center top;
        object-fit: cover;
        height: 100%;
    }
    
    .member-photo-adjusted img {
        object-position: center top;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    /* scale logo down on smaller devices so header stays readable */
    .logo-img {
        height: 50px;
        max-height: 50px;
        max-width: 200px;
        transform: translateY(0) scale(1);
    }
    .brand-name {
        font-size: 1rem;
        margin-left: 4px;
    }

    /* Tighter spacing on sections for tablets */
    .features,
    .about,
    .contact,
    .products-showcase,
    .team-showcase {
        padding: 70px 0;
    }

    /* For reversed product sections, show text first, then media on mobile */
    .product-unit.reverse .product-media {
        order: 2;
    }

    .product-unit.reverse .product-text {
        order: 1;
    }
    
    /* Ensure all product units have consistent mobile layout */
    .product-unit .product-text {
        order: 1;
    }
    
    .product-unit .product-media {
        order: 2;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .main-image-placeholder {
        min-height: 320px;
    }

    .product-main-image {
        min-height: 300px;
    }

    .team-member {
        padding: 32px 22px;
    }
}

/* Additional tweaks for medium-small devices */
@media (max-width: 600px) {
    .hero {
        padding: 130px 0 70px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .hero-subtitle {
        font-size: 0.98rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .product-main-image {
        min-height: 240px;
    }

    .main-image-placeholder {
        min-height: 260px;
    }

    .gallery-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    /* Improve product sections on small mobile */
    .product-unit {
        margin-bottom: 60px;
    }
    
    .product-unit::after {
        bottom: -30px;
        width: 90%;
    }
    
    .product-text h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .product-description {
        font-size: 0.98rem;
        line-height: 1.7;
        margin-bottom: 18px;
    }
    
    .product-features li {
        font-size: 0.92rem;
        margin-bottom: 10px;
    }
    
    .video-section {
        margin-top: 20px;
    }
    
    .video-details {
        padding: 15px;
        margin-top: 12px;
    }
    
    .video-details h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .video-details p {
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 28px 20px;
    }
}

/* Ensure footer logo scales down appropriately on small screens */
.footer .logo .footer-logo,
.footer .logo .logo-img.footer-logo {
    height: 100px;
    max-height: 100px;
    max-width: 400px;
    width: auto;
}

/* Slightly modernize team cards */
.team-member {
    overflow: hidden;
}
.team-member .member-photo {
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}
.team-member:hover .member-photo {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* Hero tweaks for a modern look */
.hero .hero-content {
    max-width: 620px;
}
.hero .hero-title {
    font-weight: 800;
    letter-spacing: -0.5px;
}
.btn-primary {
    box-shadow: 0 12px 30px rgba(0,212,170,0.12);
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 110px 0 55px;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .features,
    .about,
    .contact,
    .products-showcase,
    .team-showcase {
        padding: 55px 0;
    }

    .product-main-image {
        min-height: 200px;
    }

    .main-image-placeholder {
        min-height: 210px;
    }

    .gallery-images {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .contact-content {
        gap: 30px;
    }

    .contact-form {
        padding: 24px 16px;
        border-radius: 18px;
    }

    .btn {
        padding: 11px 18px;
        font-size: 0.9rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* Ensure product sections are properly scrolled to */
.product-unit {
    scroll-margin-top: 100px;
}

/* Enhanced focus states for accessibility */
*:focus-visible {
    outline: 3px solid var(--primary-teal);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Selection styling */
::selection {
    background: var(--primary-teal);
    color: white;
}

::-moz-selection {
    background: var(--primary-teal);
    color: white;
}

/* Mission, Vision & Values Page Styles */
.mvv-section {
    padding: 80px 0;
}

.mvv-section h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--primary-burgundy);
}

.mvv-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.mvv-icon {
    flex-shrink: 0;
}

.mvv-icon i {
    font-size: 4rem;
    color: var(--primary-teal);
    opacity: 0.9;
}

.mvv-text {
    flex: 1;
}

.mvv-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.mission-section {
    background: linear-gradient(135deg, var(--pale-teal), var(--pale-gold));
}

.vision-section {
    background: linear-gradient(135deg, var(--pale-burgundy), var(--pale-teal));
}

.values-section {
    background: var(--warm-white);
}

.values-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

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

.value-card {
    background: var(--soft-cream);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.value-icon {
    margin-bottom: 20px;
}

.value-icon i {
    font-size: 2.5rem;
    color: var(--primary-teal);
}

.value-card h3 {
    font-size: 1.3rem;
    color: var(--primary-burgundy);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.why-matters-section {
    background: var(--warm-white);
}

.why-matters-section .about-content {
    display: block;
    max-width: 900px;
    margin: 0 auto;
    grid-template-columns: 1fr;
}

.why-matters-section .about-text {
    max-width: 100% !important;
    text-align: left;
}

.why-matters-section .about-content {
    display: block;
    max-width: 900px;
    margin: 0 auto;
}

.why-matters-section .about-text {
    max-width: 100% !important;
}

.benefits-list {
    list-style: none;
    margin: 30px 0;
}

.benefits-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

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

.commitment-section {
    background: linear-gradient(135deg, var(--pale-gold), var(--pale-teal));
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.commitment-item {
    background: white;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px var(--shadow-light);
    transition: all 0.3s ease;
}

.commitment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow-medium);
}

.commitment-item h3 {
    font-size: 1.2rem;
    color: var(--primary-teal);
    margin-bottom: 15px;
}

.commitment-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .mvv-content {
        flex-direction: column;
        text-align: center;
    }

    .mvv-icon {
        margin-bottom: 20px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .commitment-grid {
        grid-template-columns: 1fr;
    }

    .mvv-section {
        padding: 60px 0;
    }

    .mvv-section h2 {
        font-size: 1.8rem;
    }

    .value-card {
        padding: 30px 20px;
    }

    .benefit-list li {
        padding-left: 25px;
    }
}