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

:root {
    --brand-primary: #202b44;
    --brand-accent: #F21414;
    --slate-blue: #4c5979;
    --soft-lavender: #dde0f5;
    --muted-lilac: #a0a3d3;
    --text-dark: #1c2233;
    --text-light: #FFFFFF;
    --bg-soft: #f5f6fc;
    --bg-light: #fafbff;
    --white: #FFFFFF;
    --black: #000000;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 1px 8px rgba(15, 23, 42, 0.06);
}

header.scrolled {
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.98);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    padding: 0;
}

.nav-toggle-line {
    height: 2px;
    width: 18px;
    margin: 0 auto;
    background: var(--brand-primary);
    border-radius: 999px;
}

.logo {
    height: 55px;
    transition: transform 0.3s ease;
    filter: brightness(1.1);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-links a.active {
    color: var(--brand-accent);
}

.nav-links a.active::after {
    width: 100%;
}

.nav-item {
    position: relative;
}

.nav-item--offer {
    display: none;
}

.nav-item.has-dropdown .nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
    padding: 0.75rem 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1200;
}

.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 0.45rem 1.25rem;
    font-size: 0.9rem;
    color: var(--brand-primary);
    text-decoration: none;
    border-left: 3px solid transparent;
}

.nav-dropdown a:hover {
    background: #f3f4ff;
    border-left-color: var(--brand-accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-accent);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--brand-accent);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6rem 5% 4.5rem;
    background: #f5f6ff;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-media-item {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-media-item--active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(245, 246, 255, 0.96) 0%, rgba(245, 246, 255, 0.9) 45%, rgba(245, 246, 255, 0.15) 80%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-content {
    max-width: 520px;
    text-align: left;
    color: var(--brand-primary);
    animation: fadeInUp 0.9s ease;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-content .subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.95;
    letter-spacing: 0.5px;
    color: #4f546b;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
}

.nav-cta {
    padding: 0.75rem 1.9rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #F21414, #ff5a5a);
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(242, 20, 20, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(242, 20, 20, 0.42);
    opacity: 0.96;
}

.btn {
    padding: 1.1rem 2.8rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--brand-accent);
    color: var(--text-light);
    box-shadow: 0 4px 14px rgba(242, 20, 20, 0.28);
}

.btn-primary:hover {
    background: #d91111;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(242, 20, 20, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--brand-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Solutions Section */
.solutions {
    padding: 5.5rem 5%;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: var(--brand-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header .accent-line {
    width: 80px;
    height: 4px;
    background: var(--brand-accent);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--slate-blue);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.solution-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08);
    transition: all 0.45s ease;
    height: 430px;
    border: 1px solid rgba(139, 140, 197, 0.18);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.14);
    border-color: rgba(242, 20, 20, 0.55);
}

.solution-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.solution-card:hover img {
    transform: scale(1.1);
}

.solution-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, transparent 100%);
    padding: 2.5rem;
    color: var(--text-light);
    transition: all 0.5s ease;
}

.solution-card:hover .solution-overlay {
    background: rgba(47, 62, 101, 0.95);
    padding: 3rem 2.5rem;
}

.solution-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* Equipment Gallery */
.equipment {
    padding: 5.5rem 5%;
    background: var(--bg-light);
}

.equipment .section-header h2 {
    color: var(--brand-primary);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.equipment-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08);
    transition: all 0.35s ease;
    border: 1px solid rgba(139, 140, 197, 0.18);
}

.equipment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.14);
    border-color: rgba(242, 20, 20, 0.5);
}

.equipment-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--bg-light);
    position: relative;
}

.equipment-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(242, 20, 20, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.equipment-card:hover .equipment-image::after {
    opacity: 1;
}

.equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.equipment-card:hover .equipment-image img {
    transform: scale(1.08);
}

.equipment-label {
    position: absolute;
    left: 1.5rem;
    bottom: 1.5rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.8);
    color: #f9fafb;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Partners Section */
.partners {
    padding: 4.5rem 5% 4rem;
    background: var(--white);
    color: var(--brand-primary);
    border-top: 1px solid rgba(139, 140, 197, 0.24);
    border-bottom: 1px solid rgba(139, 140, 197, 0.18);
}

.partners .section-header h2 {
    color: var(--brand-primary);
}

.partners .section-header p {
    color: var(--slate-blue);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.partner-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    background: #f5f6ff;
    border: 1px solid rgba(139, 140, 197, 0.4);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-3px);
    border-color: rgba(242, 20, 20, 0.7);
    background: #ffffff;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.22);
}

.partner-logo {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.partner-logo img {
    max-height: 100%;
    max-width: 100%;
    filter: none;
    opacity: 0.92;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo img {
    opacity: 1;
    transform: scale(1.05);
}

.partner-card h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--slate-blue);
}

.partners-strip {
    margin-top: 3.5rem;
    overflow: hidden;
    position: relative;
}

.partners-strip::before,
.partners-strip::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-strip::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}

.partners-strip::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

.partners-strip-track {
    display: flex;
    gap: 3rem;
    animation: partnersMarquee 32s linear infinite;
    will-change: transform;
}

.partners-strip-logo {
    flex: 0 0 auto;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.partners-strip-logo img {
    max-height: 100%;
    max-width: 140px;
    object-fit: contain;
}

.partners-strip-logo:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Stats Section */
.stats {
    padding: 4.5rem 5%;
    background: var(--bg-soft);
    color: var(--brand-primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--brand-accent);
}

.stat-item p {
    font-size: 1.05rem;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 0.35px;
}

/* CTA Section */
.cta-section {
    padding: 5.5rem 5%;
    background: linear-gradient(135deg, #ffffff 0%, #f3f4fc 100%);
    color: var(--brand-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    color: var(--slate-blue);
}

/* CTA Cards Container */
.cta-cards-container {
    max-width: 1200px;
    margin: 4rem auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    padding: 0 5%;
}

.cta-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-soft) 100%);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--brand-accent), var(--muted-lilac));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.cta-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.18);
    border-color: var(--brand-accent);
}

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

.cta-card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

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

.cta-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--brand-primary);
    margin-bottom: 1.2rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.cta-card p {
    font-size: 1.1rem;
    color: var(--slate-blue);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cta-card .btn {
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .cta-cards-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin: 3rem auto;
    }

    .cta-card {
        padding: 3rem 2.5rem;
    }

    .cta-card h2 {
        font-size: 1.9rem;
    }
}

@media (max-width: 768px) {
    .cta-card {
        padding: 2.5rem 2rem;
    }

    .cta-card-icon {
        font-size: 3.5rem;
    }

    .cta-card h2 {
        font-size: 1.7rem;
    }

    .cta-card p {
        font-size: 1rem;
    }
}

/* Products slideshow */
.products {
    padding: 5.5rem 5%;
    background: var(--bg-light);
}

.products-layout {
    max-width: 1300px;
    height: 520px;
    max-height: 520px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: stretch;
}

.products-main {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25);
    background: #000;
    height: 100%;
}

.product-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out;
}

.product-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-slide--active {
    opacity: 1;
    transform: scale(1);
}

.product-tag {
    position: absolute;
    left: 2rem;
    bottom: 2rem;
    padding: 0.45rem 1.2rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.85);
    color: #e5e7eb;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.products-thumbs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    padding-right: 0.25rem;
    grid-auto-rows: 1fr;
}

.product-thumb {
    border: none;
    padding: 0;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    background: transparent;
    position: relative;
    outline: none;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.18);
    opacity: 0.65;
    transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-thumb--active,
.product-thumb:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.24);
}

@media (max-width: 1024px) {
    .products-layout {
        grid-template-columns: minmax(0, 1fr);
    }
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.82);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.lightbox--active {
    display: flex;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(15, 23, 42, 0.75);
    border-radius: 999px;
    color: #e5e7eb;
    border: none;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
}

.about-details {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.5fr);
    gap: 2.5rem;
}

.about-details--with-image {
    align-items: flex-start;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--brand-primary);
}

.about-text p {
    color: var(--slate-blue);
    margin-bottom: 1rem;
}

.about-columns h4 {
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.8rem;
    color: var(--brand-primary);
}

.about-columns ul {
    list-style: disc;
    margin-left: 1.3rem;
    color: var(--slate-blue);
}

.about-columns li {
    margin-bottom: 0.45rem;
}

.about-columns p {
    color: var(--slate-blue);
    margin-bottom: 0.8rem;
}

@media (max-width: 900px) {
    .about-details {
        grid-template-columns: minmax(0, 1fr);
    }
}

.about-hero {
    margin-top: 80px;
    padding: 5rem 5% 4rem;
    background-size: cover;
    background-position: center;
    color: #ffffff;
    text-align: center;
}

.hero-bg-meaf {
    background-image: linear-gradient(rgba(18, 24, 38, 0.7), rgba(18, 24, 38, 0.7)), url('assets/meaf_Overview.jpg');
}

.hero-bg-beverage {
    background-image: linear-gradient(rgba(18, 24, 38, 0.7), rgba(18, 24, 38, 0.7)), url('assets/Pasteurization.jpg');
}

.hero-bg-dairy {
    background-image: linear-gradient(rgba(18, 24, 38, 0.7), rgba(18, 24, 38, 0.7)), url('assets/Tubular Pasteurization.jpg');
}

.hero-bg-valco {
    background-image: linear-gradient(rgba(18, 24, 38, 0.7), rgba(18, 24, 38, 0.7)), url('assets/Z-Adhesive.jpg');
}

.hero-bg-corazza {
    background-image: linear-gradient(rgba(18, 24, 38, 0.7), rgba(18, 24, 38, 0.7)), url('assets/CORAZZA_PDPV_rotary_press.jpg');
}

.hero-bg-contact {
    background-image: linear-gradient(rgba(18, 24, 38, 0.7), rgba(18, 24, 38, 0.7)), url('assets/DJI_0179.jpg');
}

.hero-bg-jobs {
    background-image: linear-gradient(rgba(18, 24, 38, 0.7), rgba(18, 24, 38, 0.7)), url('assets/P1100767.jpeg');
}

.hero-bg-offer {
    background-image: linear-gradient(rgba(18, 24, 38, 0.7), rgba(18, 24, 38, 0.7)), url('assets/capping_machine.jpg');
}

.about-hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.about-page-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
    gap: 2.5rem;
    align-items: flex-start;
}

.about-page-text ul {
    margin-left: 1.4rem;
    margin-bottom: 1rem;
    color: var(--slate-blue);
}

.about-page-main-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
    margin-bottom: 1.5rem;
}

.about-page-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-page-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.about-page-grid img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
}

@media (max-width: 900px) {
    .about-page-layout {
        grid-template-columns: minmax(0, 1fr);
    }
}


.products-gallery {
    max-width: 1300px;
    margin: 3.5rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.products-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.16);
}

.products-gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform 0.4s ease;
}

.products-gallery-item:hover img {
    transform: scale(1.08);
}

.about-image {
    max-width: 520px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.22);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.ave-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
    gap: 2.5rem;
    align-items: center;
}

.ave-image {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.24);
}

.ave-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1024px) {
    .ave-layout {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Job Listing Styles */
.job-listing {
    max-width: 900px;
    margin: 3rem auto 0;
    background: var(--white);
    border-radius: 18px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.1);
}

.job-header {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--soft-lavender);
}

.job-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--brand-primary);
    margin-bottom: 1.2rem;
}

.partner-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-soft);
    border-radius: 12px;
}

.partner-logo {
    max-width: 280px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(1.05);
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.95rem;
}

.job-meta span {
    padding: 0.5rem 1rem;
    background: var(--soft-lavender);
    border-radius: 20px;
    color: var(--slate-blue);
    font-weight: 500;
}

.job-content {
    color: var(--slate-blue);
    line-height: 1.8;
}

.job-section {
    margin-bottom: 2.5rem;
}

.job-section:last-child {
    margin-bottom: 0;
}

.job-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--brand-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.job-section p {
    margin-bottom: 1rem;
    color: var(--slate-blue);
}

.job-section p a {
    color: var(--brand-accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.job-section p a:hover {
    color: var(--brand-primary);
    text-decoration: underline;
}

.job-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.job-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 1rem;
    color: var(--slate-blue);
}

.job-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--brand-accent);
    font-weight: bold;
    font-size: 1.1rem;
}

.job-requirements {
    margin-top: 1.5rem;
}

.job-requirement-item {
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: var(--bg-soft);
    border-radius: 12px;
    border-left: 4px solid var(--brand-accent);
}

.job-requirement-item strong {
    color: var(--brand-primary);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.job-apply {
    background: var(--bg-soft);
    padding: 2rem;
    border-radius: 14px;
    margin-top: 2.5rem;
}

.job-apply a {
    color: var(--brand-accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.job-apply a:hover {
    color: var(--brand-primary);
    text-decoration: underline;
}

.job-deadline {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    border: 2px solid var(--brand-accent);
    color: var(--brand-primary);
}

.job-equal-opportunity {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--slate-blue);
    font-style: italic;
}

@media (max-width: 768px) {
    .job-listing {
        padding: 2rem 1.5rem;
        margin: 2rem 1rem 0;
    }

    .job-header h3 {
        font-size: 1.8rem;
    }

    .partner-logo-container {
        padding: 1rem;
        margin-bottom: 1.2rem;
    }

    .partner-logo {
        max-width: 220px;
        max-height: 100px;
    }

    .job-meta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .job-section h4 {
        font-size: 1.3rem;
    }

    .job-apply {
        padding: 1.5rem;
    }
}

/* Offer Items Styles */
.offer-items {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.offer-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 3rem;
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-items: center;
}

.offer-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.15);
}

.offer-item-image {
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    min-height: 300px;
}

.offer-item-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 350px;
}

.offer-item-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.offer-item-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--brand-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.offer-spec {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brand-accent);
    margin: 0.5rem 0;
    letter-spacing: 0.5px;
}

.offer-description {
    color: var(--slate-blue);
    line-height: 1.7;
    margin: 1rem 0;
    font-size: 1rem;
}

.offer-item-content .btn {
    align-self: flex-start;
    margin-top: 0.5rem;
}

@media (max-width: 900px) {
    .offer-item {
        grid-template-columns: minmax(0, 1fr);
        gap: 2rem;
        padding: 2rem;
    }

    .offer-item-image {
        min-height: 250px;
        order: 1;
    }

    .offer-item-content {
        order: 2;
    }

    .offer-item-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .offer-items {
        margin: 2rem 1rem 0;
        gap: 2rem;
    }

    .offer-item {
        padding: 1.5rem;
    }

    .offer-item-image {
        min-height: 200px;
        padding: 1rem;
    }

    .offer-item-image img {
        max-height: 250px;
    }
}

/* Contact Info Styles */
.contact-info {
    max-width: 1100px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--white);
    border-radius: 18px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.15);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--brand-primary);
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.contact-card p {
    color: var(--slate-blue);
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
}

.contact-card a {
    color: var(--brand-accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--brand-primary);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contact-info {
        margin: 2rem 1rem 0;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .contact-icon {
        font-size: 2.5rem;
    }

    .contact-card h3 {
        font-size: 1.3rem;
    }
}

/* Contact Form Styles */
.contact-form {
    padding: 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--brand-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group .required {
    color: var(--brand-accent);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--soft-lavender);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--brand-primary);
    background: var(--white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 3px rgba(242, 20, 20, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted-lilac);
}

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

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.contact-form .btn {
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

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

/* Beverage Featured Image */
.beverage-featured-image {
    max-width: 1200px;
    margin: 3rem auto 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.15);
    background: var(--white);
    padding: 2rem;
}

.beverage-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .beverage-featured-image {
        margin: 2rem 1rem 1.5rem;
        padding: 1.5rem;
    }
}

/* Product Cards Styles */
.products-grid {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.product-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-soft) 100%);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 6px 25px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.15);
    border-color: var(--brand-accent);
}

.product-icon {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.product-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--brand-primary);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.product-card p {
    color: var(--slate-blue);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .products-grid {
        margin: 2rem 1rem 0;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .product-card {
        padding: 2rem 1.5rem;
    }

    .product-icon {
        font-size: 3rem;
    }

    .product-card h3 {
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Solutions Gallery Styles */
.solutions-gallery {
    max-width: 1300px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.solution-item {
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

.solution-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.18);
    border-color: var(--brand-accent);
}

.solution-image {
    width: 100%;
    height: 360px;
    overflow: hidden;
    background: #ffffff;
    display: block;
    position: relative;
}

.solution-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(248, 249, 255, 0.4) 0%, rgba(240, 242, 255, 0.6) 100%);
    z-index: 1;
    pointer-events: none;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
    filter: brightness(1.1) contrast(1.08);
    position: relative;
    z-index: 0;
    display: block;
}

.solution-item:hover .solution-image img {
    transform: scale(1.1);
    filter: brightness(1.15) contrast(1.1);
}

.solution-content {
    padding: 2.5rem 2.2rem;
    text-align: center;
    background: var(--white);
    position: relative;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.solution-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--brand-accent);
    transition: width 0.4s ease;
}

.solution-item:hover .solution-content::before {
    width: 80px;
}

.solution-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--brand-primary);
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .solutions-gallery {
        margin: 2.5rem 1rem 0;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .solution-image {
        height: 300px;
    }

    .solution-content {
        padding: 2rem 1.8rem;
    }

    .solution-content h3 {
        font-size: 1.3rem;
    }
}

/* Footer */
footer {
    background: #121826;
    color: rgba(255, 255, 255, 0.82);
    padding: 4rem 5% 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--text-light);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer-section p,
.footer-section a {
    color: rgba(226, 232, 240, 0.9);
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--brand-accent);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-logo {
    height: auto;
    width: 60px;
    filter: brightness(1.1);
}

.footer-partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-partner-logos img {
    height: 30px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
}

.footer-ssl {
    margin-top: 1rem;
    height: 34px;
    width: auto;
}

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

@keyframes partnersMarquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .subtitle {
        font-size: 1.2rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 5%;
        left: 5%;
        display: none;
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem 1.5rem 1.5rem;
        background: #ffffff;
        border-radius: 14px;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
        z-index: 1500;
    }

    body.nav-open .nav-links {
        display: flex;
    }

    .nav-item--offer {
        display: block;
    }

    .nav-cta {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .solutions-grid,
    .equipment-grid {
        grid-template-columns: 1fr;
    }

    .stat-item h3 {
        font-size: 2.8rem;
    }

    .cta-section h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .logo {
        height: 45px;
    }

    nav {
        padding: 0.8rem 5%;
    }
}