/* ========================================
   MOLAGRO CORPORATE WEBSITE STYLES
   ======================================== */

/* CSS Custom Properties */
:root {
    /* Brand Colors */
    --green-primary: #4CAF50;
    --green-dark: #2E7D32;
    --green-light: #81C784;
    --green-pale: #E8F5E9;
    
    --blue-primary: #1565C0;
    --blue-dark: #0D47A1;
    --blue-light: #42A5F5;
    
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-400: #BDBDBD;
    --gray-500: #9E9E9E;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    
    --gold: #F9A825;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--green-primary) 0%, var(--blue-primary) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(46, 125, 50, 0.9) 0%, rgba(21, 101, 192, 0.85) 100%);
    --gradient-dark: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 24px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
}

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition-normal);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav__logo {
    z-index: 1001;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav__menu {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    gap: 40px;
}

.nav__link {
    font-weight: 500;
    font-size: 15px;
    color: var(--white);
    position: relative;
    padding: 8px 0;
}

.header.scrolled .nav__link {
    color: var(--gray-800);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__toggle,
.nav__close {
    display: none;
    cursor: pointer;
    color: var(--white);
}

.header.scrolled .nav__toggle {
    color: var(--gray-800);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/hero-bg.png') center/cover no-repeat;
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding-top: 80px;
}

.hero__subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 20px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--green-light) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-light {
    background: linear-gradient(135deg, var(--white) 0%, var(--green-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 1; top: 8px; }
    50% { opacity: 0.3; top: 20px; }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: none;
    transition: var(--transition-normal);
}

.btn--primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.4);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.5);
}

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

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn--light {
    background: var(--white);
    color: var(--green-dark);
    box-shadow: var(--shadow-lg);
}

.btn--light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn--full {
    width: 100%;
}

/* ========================================
   SECTION STYLES
   ======================================== */
.section {
    padding: var(--section-padding);
}

.section__header {
    text-align: center;
    margin-bottom: 60px;
}

.section__header--light {
    text-align: left;
}

.section__subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green-primary);
    margin-bottom: 16px;
}

.section__header--light .section__subtitle {
    color: var(--green-light);
}

.section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section__header--light .section__title {
    color: var(--white);
}

.section__description {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    background: var(--gray-100);
}

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

.about__description {
    font-size: 17px;
    color: var(--gray-700);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    color: var(--white);
    flex-shrink: 0;
}

.feature__content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.feature__content p {
    font-size: 15px;
    color: var(--gray-600);
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.stat__number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.stat__suffix {
    font-size: 32px;
    font-weight: 700;
    color: var(--green-primary);
}

.stat__label {
    display: block;
    font-size: 15px;
    color: var(--gray-600);
    margin-top: 8px;
    font-weight: 500;
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.products {
    background: var(--white);
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

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

.product-card__icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-pale);
    border-radius: 50%;
    margin: 0 auto 24px;
    color: var(--green-dark);
    transition: var(--transition-normal);
}

.product-card:hover .product-card__icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.1);
}

.product-card__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.product-card__description {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.7;
}

.product-card__items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 24px;
}

.product-tag {
    padding: 8px 16px;
    background: var(--gray-100);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    transition: var(--transition-fast);
}

.product-card:hover .product-tag {
    background: var(--green-pale);
    color: var(--green-dark);
}

.product-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--green-primary);
}

.product-card__link:hover {
    color: var(--green-dark);
}

.product-card__link svg {
    transition: var(--transition-fast);
}

.product-card__link:hover svg {
    transform: translateX(4px);
}

/* ========================================
   GLOBAL TRADE SECTION
   ======================================== */
.global {
    position: relative;
    background: var(--gradient-dark);
    overflow: hidden;
}

.global__overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/><circle cx="50" cy="50" r="30" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/><circle cx="50" cy="50" r="20" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></svg>') center/contain no-repeat;
    opacity: 0.5;
}

.global__content {
    position: relative;
    z-index: 10;
}

.global__description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    line-height: 1.8;
    margin-bottom: 50px;
}

.global__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.global__feature {
    text-align: center;
}

.global__feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: var(--green-light);
    margin: 0 auto 20px;
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
}

.global__feature:hover .global__feature-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.1);
}

.global__feature h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.global__feature p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    background: var(--gray-100);
}

.contact__wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact__info {
    background: var(--gradient-primary);
    padding: 50px;
    color: var(--white);
}

.contact__info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact__info > p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact__detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.contact__detail h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    opacity: 0.9;
}

.contact__detail p {
    font-size: 15px;
    line-height: 1.5;
}

.contact__form {
    padding: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.form__group {
    position: relative;
}

.form__group--full {
    grid-column: span 2;
}

.form__group input,
.form__group select,
.form__group textarea {
    width: 100%;
    padding: 18px 20px;
    font-size: 15px;
    font-family: var(--font-family);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--white);
    transition: var(--transition-fast);
    color: var(--gray-900);
}

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

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    outline: none;
    border-color: var(--green-primary);
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.1);
}

.form__group label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: var(--gray-500);
    pointer-events: none;
    transition: var(--transition-fast);
    background: var(--white);
    padding: 0 8px;
}

.form__group textarea + label {
    top: 28px;
}

.form__group input:focus + label,
.form__group input:not(:placeholder-shown) + label,
.form__group select:focus + label,
.form__group select:valid + label,
.form__group textarea:focus + label,
.form__group textarea:not(:placeholder-shown) + label {
    top: 0;
    font-size: 12px;
    color: var(--green-primary);
    font-weight: 600;
}

.contact__form .btn {
    grid-column: span 2;
    margin-top: 10px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer__content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer__logo {
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer__brand p {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer__column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--white);
}

.footer__column ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer__column a {
    font-size: 14px;
    color: var(--gray-400);
    transition: var(--transition-fast);
}

.footer__column a:hover {
    color: var(--green-light);
    padding-left: 8px;
}

.footer__bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer__bottom p {
    font-size: 14px;
    color: var(--gray-500);
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ========================================
   RESPONSIVE STYLES
   ======================================== */
@media screen and (max-width: 1024px) {
    .about__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about__stats {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .products__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .global__features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact__wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }
    
    /* Mobile Navigation */
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        box-shadow: var(--shadow-xl);
        transition: var(--transition-normal);
        z-index: 1000;
    }
    
    .nav__menu.show {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .nav__item {
        width: 100%;
    }
    
    .nav__link {
        display: block;
        padding: 20px 40px;
        color: var(--gray-800);
        font-size: 18px;
        border-bottom: 1px solid var(--gray-100);
    }
    
    .nav__toggle,
    .nav__close {
        display: block;
    }
    
    .nav__close {
        position: absolute;
        top: 20px;
        right: 20px;
        color: var(--gray-800);
    }
    
    /* Mobile Styles */
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero__scroll {
        display: none;
    }
    
    .about__stats {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .stat {
        padding: 24px 16px;
    }
    
    .stat__number {
        font-size: 36px;
    }
    
    .products__grid {
        grid-template-columns: 1fr;
    }
    
    .global__features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact__form {
        padding: 30px;
        grid-template-columns: 1fr;
    }
    
    .form__group--full,
    .contact__form .btn {
        grid-column: span 1;
    }
    
    .contact__info {
        padding: 30px;
    }
    
    .footer__links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .section__title {
        font-size: 1.75rem;
    }
    
    .about__stats {
        grid-template-columns: 1fr;
    }
    
    .footer__links {
        grid-template-columns: 1fr;
    }
    
    .footer__social {
        justify-content: center;
    }
}

/* ========================================
   LANGUAGE TOGGLE
   ======================================== */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
}

.lang-btn {
    background: transparent;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.header.scrolled .lang-btn {
    color: var(--gray-600);
}

.lang-btn.active {
    background: var(--gradient-primary);
    color: var(--white) !important;
}

.lang-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
}

.header.scrolled .lang-btn:hover:not(.active) {
    background: var(--gray-100);
}

.lang-divider {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.header.scrolled .lang-divider {
    color: var(--gray-300);
}

/* Highlighted Nav Link */
.nav__link--highlight {
    background: var(--gradient-primary);
    padding: 8px 16px !important;
    border-radius: var(--radius-sm);
    color: var(--white) !important;
}

.nav__link--highlight::after {
    display: none;
}

/* ========================================
   CATALOGS SECTION
   ======================================== */
.catalogs {
    background: linear-gradient(180deg, var(--green-pale) 0%, var(--white) 100%);
}

.catalogs__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.catalog-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    transition: var(--transition-normal);
    cursor: pointer;
}

.catalog-card:hover {
    border-color: var(--green-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.catalog-card__icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-pale);
    border-radius: var(--radius-md);
    color: var(--green-dark);
    flex-shrink: 0;
    transition: var(--transition-normal);
}

.catalog-card:hover .catalog-card__icon {
    background: var(--gradient-primary);
    color: var(--white);
}

.catalog-card__content {
    flex: 1;
}

.catalog-card__flag {
    font-size: 32px;
    margin-bottom: 8px;
}

.catalog-card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.catalog-card__description {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.catalog-card__action {
    font-size: 14px;
    font-weight: 600;
    color: var(--green-primary);
}

.catalog-card:hover .catalog-card__action {
    color: var(--green-dark);
}

.catalogs__qr-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    padding: 16px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px dashed var(--gray-300);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.catalogs__qr-note svg {
    color: var(--green-primary);
}

.catalogs__qr-note span {
    font-size: 14px;
    color: var(--gray-600);
}

/* ========================================
   FEATURED PRODUCT CARDS
   ======================================== */
.product-card--featured {
    border: 2px solid var(--green-light);
    background: linear-gradient(180deg, var(--green-pale) 0%, var(--white) 100%);
}

.product-card--featured::before {
    transform: scaleX(1);
}

.product-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
}

.product-card__subtitle {
    font-size: 14px;
    color: var(--green-primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.product-card__icon--copper {
    background: linear-gradient(135deg, #B87333 0%, #CD7F32 100%);
    color: var(--white);
}

.product-card__icon--green {
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
    color: var(--white);
}

.product-card__icon--blue {
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-dark) 100%);
    color: var(--white);
}

/* More Products Section */
.products__more {
    margin-top: 60px;
    text-align: center;
}

.products__more-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 24px;
}

.products__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.product-tag-large {
    padding: 12px 24px;
    background: var(--gray-100);
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-700);
    transition: var(--transition-fast);
    cursor: default;
}

.product-tag-large:hover {
    background: var(--green-pale);
    color: var(--green-dark);
}

/* ========================================
   RESPONSIVE ADJUSTMENTS FOR NEW ELEMENTS
   ======================================== */
@media screen and (max-width: 768px) {
    .lang-toggle {
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .lang-btn {
        padding: 4px 8px;
        font-size: 12px;
    }
    
    .catalogs__grid {
        grid-template-columns: 1fr;
    }
    
    .catalog-card {
        flex-direction: column;
        text-align: center;
    }
    
    .nav__link--highlight {
        background: transparent;
        color: var(--gray-800) !important;
        padding: 20px 40px !important;
    }
}

/* ========================================
   LARGE LOGO STYLES
   ======================================== */
.logo-img--large {
    height: 70px;
    width: auto;
}

.footer__logo--large {
    height: 80px;
    width: auto;
    margin-bottom: 16px;
}

@media screen and (max-width: 768px) {
    .logo-img--large {
        height: 55px;
    }
    
    .footer__logo--large {
        height: 60px;
    }
}

/* ========================================
   SIX-PRODUCT GRID
   ======================================== */
.products__grid--six {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media screen and (max-width: 992px) {
    .products__grid--six {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .products__grid--six {
        grid-template-columns: 1fr;
    }
}

/* Additional Product Icon Colors */
.product-card__icon--teal {
    background: linear-gradient(135deg, #00ACC1 0%, #00897B 100%);
    color: var(--white);
}

.product-card__icon--orange {
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    color: var(--white);
}

.product-card__icon--yellow {
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
    color: var(--gray-800);
}

/* Contact Link Styles */
.contact__link {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact__link:hover {
    opacity: 0.8;
}

/* Footer Contact Info */
.footer__contact-info {
    margin-top: 20px;
}

.footer__contact-info p {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer__contact-info a {
    color: var(--white);
    opacity: 0.9;
}

.footer__contact-info a:hover {
    opacity: 1;
}

.footer__address {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 8px;
}

/* Taller Header for Larger Logo */
.nav {
    height: 90px;
}

@media screen and (max-width: 768px) {
    .nav {
        height: 80px;
    }
}

/* ========================================
   EXTRA LARGE LOGO STYLES
   ======================================== */
.logo-img--xlarge {
    height: 100px;
    width: auto;
}

.footer__logo--xlarge {
    height: 120px;
    width: auto;
    margin-bottom: 20px;
}

/* Taller header for extra large logo */
.nav {
    height: 120px;
}

@media screen and (max-width: 768px) {
    .logo-img--xlarge {
        height: 70px;
    }
    
    .footer__logo--xlarge {
        height: 80px;
    }
    
    .nav {
        height: 90px;
    }
}
