:root {
    --primary: #e31e24;
    --primary-dark: #b3171b;
    --primary-light: #ff4d4d;
    --primary-rgb: 227, 30, 36;
    --text: #1a1a1a;
    --text-dark: #111111;
    --text-light: #666666;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border: #eeeeee;
    --border-light: #f0f0f0;
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Spacing Scale */
    --space-xs: 0.75rem;
    --space-sm: 1.25rem;
    --space-md: 2.5rem;
    --space-lg: 5rem;
    --space-xl: 8rem;
    
    /* Typography */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Reset & Global */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: var(--font-main); 
    line-height: 1.65; 
    color: var(--text); 
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.01em;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container { 
    max-width: 1280px; 
    margin: 0 auto; 
    padding: 0 var(--space-md); 
}

/* Typography Helpers */
h1, h2, h3, h4 { line-height: 1.15; margin-bottom: var(--space-sm); font-weight: 800; color: var(--text-dark); letter-spacing: -0.02em; }
p { margin-bottom: var(--space-sm); color: var(--text-light); }
.section-padding { padding: var(--space-lg) 0; }
.bg-light { background: var(--bg-light); }

/* Utilities */
.mb-1 { margin-bottom: 0.75rem; }
.mb-2 { margin-bottom: 1.5rem; }
.mb-3 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 3rem; }
.mb-5 { margin-bottom: 4rem; }
.mt-1 { margin-top: 0.75rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2rem; }
.mt-4 { margin-top: 3rem; }
.mt-5 { margin-top: 4rem; }
.text-center { text-align: center; }
.m-auto { margin: 0 auto; }
.lead { font-size: 1.25rem; font-weight: 300; }

/* Top Bar */
.top-bar {
    background: #b91c1c; /* Deep Red matching the image */
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
}
.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-contact { display: flex; gap: 2rem; align-items: center; }
.top-info-item { display: flex; align-items: center; gap: 8px; font-weight: 500; }
.top-social { display: flex; gap: 1rem; align-items: center; }
.social-icon { color: var(--white); opacity: 0.9; transition: 0.3s; }
.social-icon:hover { opacity: 1; transform: translateY(-2px); }

/* Header Improvements */
.main-header {
    background: var(--white);
    padding: 1.2rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }

.logo-container { display: flex; flex-direction: column; line-height: 1; }
.logo-main { font-size: 1.8rem; font-weight: 900; color: var(--text); letter-spacing: -0.5px; }
.logo-sub { font-size: 0.7rem; letter-spacing: 0.4em; color: var(--text-light); font-weight: 600; margin-left: 2px; }
.text-primary { color: var(--primary); }

.nav-menu { display: flex; gap: 2.5rem; align-items: center; margin: 0 auto; }
.nav-link { font-weight: 500; font-size: 0.95rem; color: #444; position: relative; }
.nav-link:hover, .nav-link.active { color: var(--primary); }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.quote-btn { padding: 0.7rem 1.8rem; font-size: 0.9rem; border-radius: 6px; box-shadow: 0 4px 10px rgba(227, 30, 36, 0.2); }

.mobile-toggle { display: none; cursor: pointer; margin-left: 1rem; }
.mobile-toggle span { display: block; width: 25px; height: 2px; background: var(--text); margin: 5px 0; transition: 0.3s; }

@media (max-width: 992px) {
    .top-bar { display: none; }
    .nav-menu { display: none; }
    .quote-btn { display: none; }
    .mobile-toggle { display: block; }
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 8rem 0 10rem;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: var(--white);
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: radial-gradient(circle at 70% 30%, rgba(227, 30, 36, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content { position: relative; z-index: 2; }

.hero-section h1 {
    color: var(--primary);
    font-size: clamp(3rem, 7vw, 5rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    text-transform: none;
}

.hero-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 620px;
    font-weight: 400;
}

.hero-btns { display: flex; gap: 1.5rem; }

.hero-partner-btn {
    border-color: rgba(255,255,255,0.3);
    color: var(--white);
}

.hero-partner-btn:hover {
    background: var(--white);
    color: var(--text);
    border-color: var(--white);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-stack {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.main-hero-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.3));
    animation: float 6s ease-in-out infinite;
}

.floating-badge {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    animation: float 6s ease-in-out infinite reverse;
    color: var(--text);
}

.badge-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(var(--primary-rgb), 0.3);
}

.badge-text { display: flex; flex-direction: column; line-height: 1.2; }
.badge-text strong { font-size: 1.1rem; color: var(--text); }
.badge-text span { font-size: 0.85rem; color: var(--text-light); }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Floating Feature Cards */
.hero-features-container {
    position: relative;
    margin-top: -50px;
    z-index: 10;
}

.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid var(--border);
}

.hero-feature-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem 2rem;
    border-right: 1px solid var(--border);
    transition: var(--transition);
}

.hero-feature-card:last-child { border-right: none; }
.hero-feature-card:hover { 
    background: var(--bg-light); 
    transform: translateY(-2px);
}

.feature-icon {
    width: 54px;
    height: 54px;
    background: var(--primary);
    color: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(var(--primary-rgb), 0.2);
    transition: var(--transition);
}

.hero-feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.3);
}

.feature-text h4 { font-size: 1rem; margin-bottom: 0.2rem; color: var(--text); }
.feature-text span { font-size: 0.85rem; color: var(--text-light); }

@media (max-width: 1100px) {
    .hero-wrapper { gap: 2rem; }
}

@media (max-width: 992px) {
    .hero-wrapper { grid-template-columns: 1fr; text-align: center; }
    .hero-content { display: flex; flex-direction: column; align-items: center; }
    .hero-section h1 { font-size: 3.5rem; }
    .hero-visual { display: none; }
    .hero-features-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-feature-card:nth-child(2) { border-right: none; }
    .hero-feature-card { border-bottom: 1px solid var(--border); }
}

@media (max-width: 600px) {
    .hero-section { padding-top: 6rem; }
    .hero-features-grid { grid-template-columns: 1fr; }
    .hero-feature-card { border-right: none; }
    .hero-btns { flex-direction: column; width: 100%; }
    .hero-btns .btn { width: 100%; }
}

/* Stats Section */
.stats-section { padding: var(--space-md) 0; background: var(--white); }
.stats-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
    gap: var(--space-sm); 
}
.stat-card {
    text-align: center;
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    background: var(--bg-light);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}
.stat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: var(--primary-light); }
.stat-number { display: block; font-size: 3rem; font-weight: 900; color: var(--primary); margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.stat-label { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); text-transform: uppercase; letter-spacing: 0.05em; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}
.btn-primary { 
    background: var(--primary); 
    color: var(--white); 
}
.btn-primary:hover { 
    background: var(--primary-dark); 
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.3);
}
.btn-outline { 
    border-color: var(--primary); 
    color: var(--primary); 
}
.btn-outline:hover { 
    background: var(--primary); 
    color: var(--white); 
}
.btn-white {
    background: var(--white);
    color: var(--text);
}
.btn-white:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

/* About Page / Info Grids */
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-image img { width: 100%; height: auto; }

.section-header { text-align: center; margin-bottom: var(--space-md); }
.section-header h2 { font-size: clamp(2.2rem, 5vw, 3.2rem); letter-spacing: -0.02em; margin-bottom: 1rem; }
.section-header p { font-size: 1.1rem; max-width: 700px; margin: 0 auto; color: var(--text-light); }
.pre-title { color: var(--primary); font-weight: 800; text-transform: uppercase; font-size: 0.85rem; display: block; margin-bottom: 0.75rem; letter-spacing: 0.1em; }

/* Category Grid */
.category-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-md);
}
.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}
.category-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); border-color: var(--primary-light); }
.category-card img { width: 100%; height: 280px; object-fit: cover; transition: var(--transition); }
.category-card:hover img { transform: scale(1.05); }
.category-content { padding: var(--space-md); text-align: left; }
.category-content h3 { font-size: 1.6rem; margin-bottom: 0.75rem; color: var(--text-dark); }
.category-content p { margin-bottom: 0; font-size: 1rem; }

/* Product Cards (UI Refinement) */
.modern-product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.modern-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--primary-light);
}
.card-image-wrapper {
    height: 260px;
    background: #fcfcfc;
    padding: var(--space-md);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.card-image-wrapper img { max-height: 100%; object-fit: contain; transition: var(--transition); }
.modern-product-card:hover .card-image-wrapper img { transform: scale(1.08); }
.card-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(2px);
}
.modern-product-card:hover .card-overlay { opacity: 1; }
.view-btn { background: var(--white); color: var(--text-dark); padding: 0.75rem 1.5rem; border-radius: 50px; font-weight: 800; font-size: 0.9rem; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.view-btn:hover { background: var(--primary); color: var(--white); }

.product-info { padding: var(--space-md); flex-grow: 1; display: flex; flex-direction: column; }
.product-name { font-size: 1.25rem; margin-bottom: 0.75rem; color: var(--text-dark); font-weight: 800; line-height: 1.3; }
.price-info { margin-top: auto; display: flex; align-items: center; gap: 5px; color: var(--primary); font-weight: 800; font-size: 1rem; }

/* Product Browsing Page */
.products-browsing {
    padding: var(--space-lg) 0;
    background: #fdfdfd;
}
.product-controls {
    margin-bottom: var(--space-lg);
    display: flex;
    justify-content: center;
}
.filter-tabs {
    display: flex;
    gap: 1rem;
    background: var(--white);
    padding: 0.6rem;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
}
.filter-tab {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-light);
    white-space: nowrap;
}
.filter-tab:hover {
    color: var(--primary);
}
.filter-tab.active {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.2);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    min-height: 400px;
}

@media (max-width: 768px) {
    .filter-tabs {
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .filter-tabs::-webkit-scrollbar {
        display: none;
    }
    .filter-tab {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1.5rem;
    }
}

/* Partner Section */
.partner-section {
    background: #fdfdfd;
}
.partner-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}
.partner-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: #fee2e2;
    color: var(--primary);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    margin-bottom: 2rem;
}
.partner-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}
.partner-desc {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 550px;
    line-height: 1.6;
}
.partner-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    color: var(--text);
}
.benefit-icon {
    color: var(--primary);
    display: flex;
    align-items: center;
}
.partner-cta {
    padding: 1rem 2.5rem;
    box-shadow: 0 10px 25px rgba(227, 30, 36, 0.25);
}
.partner-image-wrapper {
    position: relative;
}
.partner-image-bg {
    background: #fff5f5;
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.partner-image-bg img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
    transition: var(--transition);
}
.partner-image-bg:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .partner-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: left;
    }
    .partner-image-bg {
        padding: 2rem;
    }
}

/* Featured Products Slider */

/* Slider Controls */
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 2rem; }

/* Commitment Grid */
.commitment-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--space-md); }
.commitment-card { 
    text-align: center; 
    padding: var(--space-md); 
    background: var(--white); 
    border-radius: var(--radius-lg); 
    border: 1px solid var(--border-light);
    transition: var(--transition); 
}
.commitment-card:hover { 
    box-shadow: var(--shadow); 
    transform: translateY(-8px); 
    border-color: var(--primary-light);
}
.commitment-card h4 { margin: 1.5rem 0 1rem; color: var(--text-dark); font-size: 1.4rem; font-weight: 800; letter-spacing: -0.01em; }
.commitment-card p { color: var(--text-light); line-height: 1.6; font-size: 1.05rem; }
.portfolio-icon { width: 70px; height: 70px; background: rgba(var(--primary-rgb), 0.08); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto; transition: var(--transition); }
.commitment-card:hover .portfolio-icon { background: var(--primary); color: var(--white); transform: scale(1.1); }

/* Portfolio Grid (About Page) */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-md);
}
.portfolio-card {
    display: flex;
    gap: 1.5rem;
    padding: var(--space-md);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    align-items: flex-start;
}
.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}
.portfolio-card .portfolio-icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    transition: var(--transition);
}
.portfolio-card:hover .portfolio-icon {
    background: var(--primary);
    color: var(--white);
}
.portfolio-card-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 800;
}
.portfolio-card-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-md);
}
.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    border-color: var(--primary-light);
}
.team-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 900;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.2);
}
.team-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.team-name {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}
.team-role {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: var(--primary);
}
.team-bio-short {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    flex-grow: 1;
}
.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    width: fit-content;
}
.read-more-btn:hover {
    gap: 0.8rem;
    color: var(--primary-dark);
}

/* Modal / Drawer */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.modal.active {
    display: flex;
    opacity: 1;
}
.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.modal-container {
    position: relative;
    background: var(--white);
    width: 100%;
    max-width: 650px;
    max-height: 85vh;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    z-index: 10001;
    overflow-y: auto;
    padding: 3rem;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.modal.active .modal-container {
    transform: scale(1) translateY(0);
}
.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--bg-light);
    border: none;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.modal-close:hover {
    background: var(--primary);
    color: var(--white);
    transform: rotate(90deg);
}

/* Modal Content Styling */
.modal-profile-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}
.modal-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.15);
}
.modal-header-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}
.modal-header-info p {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0;
}

.modal-bio-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}
.modal-bio-body p {
    margin-bottom: 1.2rem;
}
.modal-bio-body p:last-child {
    margin-bottom: 0;
}

/* Custom Scrollbar for Modal */
.modal-container::-webkit-scrollbar {
    width: 6px;
}
.modal-container::-webkit-scrollbar-track {
    background: transparent;
}
.modal-container::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 10px;
}
.modal-container::-webkit-scrollbar-thumb:hover {
    background: var(--text-light);
}

@media (max-width: 600px) {
    .modal-container {
        padding: 2rem;
        border-radius: 20px;
    }
    .modal-profile-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    .modal-avatar {
        width: 70px;
        height: 70px;
        font-size: 1.3rem;
    }
    .modal-header-info h3 {
        font-size: 1.5rem;
    }
}

/* CTA Section */
.cta-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, var(--primary) 0%, #b91c1c 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 70%);
}
.cta-section h2 { 
    color: var(--white); 
    font-size: clamp(2.5rem, 6vw, 4rem); 
    margin-bottom: 2rem; 
    position: relative; 
    z-index: 1;
}
.cta-section p { 
    color: rgba(255,255,255,0.9); 
    font-size: 1.3rem; 
    max-width: 800px; 
    margin: 0 auto 3rem; 
    position: relative; 
    z-index: 1;
}
.btn-white {
    background: var(--white);
    color: var(--primary);
    padding: 1.25rem 3rem;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}
.btn-white:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    background: var(--bg-light);
}

/* Footer Improvements */
.main-footer {
    background: #0f172a;
    color: rgba(255,255,255,0.7);
    padding: var(--space-xl) 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}
.footer-logo h2 { 
    color: var(--white); 
    font-size: 1.8rem; 
    margin-bottom: 0.2rem; 
    letter-spacing: 0.1em;
}
.footer-logo span {
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 1.5rem;
}
.footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 300px;
}
.social-links {
    display: flex;
    gap: 1rem;
}
.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}
.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.footer-links ul li { margin-bottom: 1rem; }
.footer-links ul li a {
    font-size: 0.95rem;
    transition: var(--transition);
}
.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.contact-icon {
    color: var(--primary);
    margin-top: 3px;
}
.contact-item p {
    font-size: 0.95rem;
    margin: 0;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}
.footer-legal {
    display: flex;
    gap: 2rem;
}
.footer-legal a:hover {
    color: var(--white);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
}
@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* About Page Specific */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 6rem 0;
    color: var(--white);
    text-align: center;
}
.page-header h1 { font-size: 3rem; margin-bottom: 1rem; color: var(--white); }
.page-header p { font-size: 1.2rem; opacity: 0.9; max-width: 700px; margin: 0 auto; color: var(--white); }

/* Mission Vision Cards */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-md);
}
.mv-card {
    background: var(--white);
    padding: var(--space-md);
    border-radius: 32px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    text-align: center;
}
.mv-card.primary {
    background: var(--primary);
    color: var(--white);
    border: none;
}
.mv-card.primary h3, .mv-card.primary p { color: var(--white); }
.mv-icon-box {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: var(--transition);
}
.mv-card.primary .mv-icon-box {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}
.mv-card h3 { font-size: 2rem; margin-bottom: 1.5rem; }
.mv-card p { font-size: 1.1rem; line-height: 1.8; margin: 0; }
.mv-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }

.leadership-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; }
.leader-card { border-radius: var(--radius-lg); padding: var(--space-md); background: var(--bg-light); transition: var(--transition); }
.leader-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.leader-name { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.2rem; }
.leader-title { color: var(--primary); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; margin-bottom: 1rem; display: block; }
.leader-bio { font-size: 0.95rem; color: var(--text-light); }

/* Products Page Filter */
.products-header {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
}
.filter-wrapper {
    margin-top: 3rem;
}
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.filter-tab {
    padding: 0.85rem 2rem;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-light);
}
.filter-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.filter-tab.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.2);
}

/* Contact Page Enhancements */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-lg);
    margin-top: var(--space-md);
}
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.info-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    display: flex;
    gap: 1.5rem;
    transition: var(--transition);
}
.info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: var(--primary-light); }
.info-icon {
    width: 54px;
    height: 54px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.info-text h4 { font-size: 1.2rem; margin-bottom: 0.4rem; color: var(--text-dark); }
.info-text p { margin: 0; font-size: 1rem; }

.contact-form-container {
    background: var(--white);
    padding: var(--space-md);
    border-radius: 32px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.75rem; font-weight: 800; font-size: 0.9rem; color: var(--text-dark); text-transform: uppercase; letter-spacing: 0.05em; }
.form-control {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid var(--bg-light);
    border-radius: 16px;
    background: var(--bg-light);
    transition: var(--transition);
    font-family: inherit;
    font-size: 1rem;
}
.form-control:focus {
    outline: none;
    border-color: var(--primary-light);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.05);
}

@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; gap: var(--space-md); }
}

/* Mobile Menu Refinement */
.nav-menu.mobile-active {
    display: flex !important;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    padding: var(--space-lg) var(--space-md);
    gap: 1.5rem;
    z-index: 999;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Animations */
[class*="fade-"] { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.reveal [class*="fade-"], .active [class*="fade-"], .fade-up.active { opacity: 1; transform: translateY(0); }

.fade-up { opacity: 1; transform: none; } /* Default visible if no JS */
.js-enabled .fade-up { opacity: 0; transform: translateY(20px); }
.js-enabled .fade-up.active { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 992px) {
    .nav-menu { display: none; }
    .mobile-toggle { display: block; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .about-intro-grid, .mv-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root {
        --space-xl: 4rem;
        --space-lg: 3rem;
    }
    .hero-section { min-height: auto; padding: var(--space-lg) 0; }
    .section-padding { padding: var(--space-lg) 0; }
}
