/* ===================================
   MALIMA Industrial Website Styles
   =================================== */

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

:root {
    --primary-green: #24930C;
    --light-gray: #E2E2E2;
    --dark-gray: #3C3C3C;
    --white: #FFFFFF;
    --black: #000000;
    --success: #22c55e;
    --error: #ef4444;
    
    --font-headings: 'DM Sans', sans-serif;
    --font-body: 'Cairo', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    line-height: 1.2;
}

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

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

.hidden {
    display: none !important;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-headings);
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark-gray);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-gray);
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Language Toggle Button */
.language-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    margin-left: 2rem;
}

.language-toggle:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: scale(1.05);
}

.lang-flag {
    font-size: 1.3rem;
    line-height: 1;
}

.lang-text {
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.5px;
}


/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-gray) 0%, #f5f5f5 100%);
    overflow: hidden;
    margin-top: 70px;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.544);

    z-index: 1;
}

.hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: var(--primary-green);
    clip-path: polygon(0 60%, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.hero-logo {
    filter: drop-shadow(0 4px 6px rgba(255, 255, 255, 0.9));
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-weight: 400;
    animation: fadeInUp 0.8s ease 0.2s backwards;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.hero-tagline {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
    font-weight: 600;
    animation: fadeInUp 0.8s ease 0.4s backwards;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-headings);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
    box-shadow: var(--shadow);
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.btn-primary:hover {
    background-color: #1e7a0a;
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.btn-submit {
    width: 100%;
}

.btn-submit .btn-loading {
    display: none;
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit.loading .btn-loading {
    display: inline;
}

/* ===================================
   SECTIONS
   =================================== */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background-color: var(--primary-green);
    margin-bottom: 2rem;
}

.title-underline.center {
    margin-left: auto;
    margin-right: auto;
}

.section-description {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 3rem;
    max-width: 700px;
}

.text-center {
    text-align: center;
}

.section-description.text-center {
    margin-left: auto;
    margin-right: auto;
}

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

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--light-gray);
    border-radius: 10px;
    transition: var(--transition);
}

.feature-item:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-green);
}

.feature-item:hover i {
    color: var(--white);
}

.feature-item span {
    font-family: var(--font-headings);
    font-weight: 600;
}

/* ===================================
   ACTIVITIES SECTION
   =================================== */
.activities {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.activities::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    width: 300px;
    height: 300px;
    background-image: url('../images/treebg.svg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.activities::after {
    content: '';
    position: absolute;
    bottom: 50px;
    right: 0;
    width: 300px;
    height: 300px;
    background-image: url('../images/treebg.svg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
    transform: scaleX(-1);
}

.activities .container {
    position: relative;
    z-index: 1;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.activity-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.activity-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.activity-card:hover .activity-icon {
    transform: scale(1.1);
}

.activity-icon i {
    font-size: 2rem;
    color: var(--white);
}

.activity-title {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.activity-description {
    color: var(--dark-gray);
    line-height: 1.8;
}

/* ===================================
   PRODUCTS SECTION
   =================================== */
.products {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.products::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -50px;
    width: 400px;
    height: 400px;
    background-image: url('../images/treecirclebg.svg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
    transform: translateY(-50%);
}

.products::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -50px;
    width: 400px;
    height: 400px;
    background-image: url('../images/treecirclebg.svg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
    transform: translateY(-50%);
}

.products .container {
    position: relative;
    z-index: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, rgba(36, 147, 12, 0.1) 0%, transparent 100%);
    transition: height 0.4s ease;
    z-index: 1;
}

.product-card:hover::before {
    height: 100%;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--light-gray);
    position: relative;
}

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

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

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-gray) 0%, #d5d5d5 100%);
    transition: all 0.4s ease;
}

.product-card:hover .product-placeholder {
    background: linear-gradient(135deg, #d5d5d5 0%, var(--primary-green) 100%);
}

.product-placeholder i {
    font-size: 4rem;
    color: var(--primary-green);
    opacity: 0.5;
    transition: all 0.4s ease;
}

.product-card:hover .product-placeholder i {
    transform: scale(1.15) rotate(5deg);
    opacity: 0.8;
    color: var(--white);
}

.product-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.product-title {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: var(--primary-green);
}

.product-description {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.product-link {
    color: var(--primary-green);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.product-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-green);
    transition: width 0.3s ease;
}

.product-link:hover::after {
    width: 100%;
}

.product-link:hover {
    gap: 1rem;
}

.product-link i {
    transition: all 0.3s ease;
}

.product-card:hover .product-link i {
    transform: translateX(5px);
}

/* ===================================
   INDUSTRIES / APPLICATION SECTORS SECTION
   =================================== */
.industries {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #2a2a2a 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.industries::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100px;
    width: 500px;
    height: 100%;
    background-image: url('../images/treebg.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.industries::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -100px;
    width: 500px;
    height: 100%;
    background-image: url('../images/treebg.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
    transform: scaleX(-1);
}

.industries .container {
    position: relative;
    z-index: 1;
}

.industries .section-title {
    color: var(--white);
}

.industries .title-underline {
    background-color: var(--primary-green);
}

.industries .section-description {
    color: var(--light-gray);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.industry-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.industry-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(36, 147, 12, 0.2), transparent);
    transition: left 0.5s ease;
}

.industry-item:hover::before {
    left: 100%;
}

.industry-item:hover {
    background: rgba(36, 147, 12, 0.15);
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(36, 147, 12, 0.2);
}

.industry-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.industry-item:hover .industry-icon {
    transform: scale(1.1);
    color: var(--white);
}

.industry-name {
    font-family: var(--font-headings);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

/* ===================================
   EVENTS AND FOIRE SECTION
   =================================== */
.events {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.events::before {
    content: '';
    position: absolute;
    top: 50px;
    right: 0;
    width: 300px;
    height: 300px;
    background-image: url('../images/treebg.svg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

.events .container {
    position: relative;
    z-index: 1;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.event-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid var(--light-gray);
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.event-date {
    background: linear-gradient(135deg, var(--primary-green) 0%, #1e7d09 100%);
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.date-box {
    text-align: center;
    color: var(--white);
}

.date-day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-headings);
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(36, 147, 12, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.event-card:hover .event-icon {
    background-color: var(--primary-green);
    transform: scale(1.1);
}

.event-icon i {
    font-size: 1.5rem;
    color: var(--primary-green);
    transition: color 0.3s ease;
}

.event-card:hover .event-icon i {
    color: var(--white);
}

.event-title {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 0.8rem;
    font-family: var(--font-headings);
    font-weight: 600;
}

.event-location {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-location i {
    font-size: 0.9rem;
}

.event-description {
    color: var(--dark-gray);
    line-height: 1.7;
    margin: 0;
}

.event-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(36, 147, 12, 0.05) 0%, rgba(36, 147, 12, 0.02) 100%);
    border-radius: 10px;
}

.event-cta-text {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 350px;
    height: 350px;
    background-image: url('../images/treebg.svg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 350px;
    height: 350px;
    background-image: url('../images/treebg.svg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
    transform: scaleX(-1);
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.info-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.info-title {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.info-item {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    font-size: 1.1rem;
    color: var(--primary-green);
    margin-top: 0.2rem;
    min-width: 18px;
}

.info-item strong {
    display: block;
    font-family: var(--font-headings);
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
}

.info-item p {
    margin: 0;
    line-height: 1.6;
    font-size: 0.9rem;
}

.info-item a {
    color: var(--primary-green);
}

.info-item a:hover {
    text-decoration: underline;
}

.map-container {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    grid-column: 1 / -1;
    margin-top: 1rem;
    height: 350px;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 100%;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.form-group label {
    font-family: var(--font-headings);
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.required {
    color: var(--error);
}

.form-group input,
.form-group textarea {
    padding: 0.6rem;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
    background-color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

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

.form-message {
    padding: 0.8rem;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    display: none;
    font-size: 0.9rem;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    display: block;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    display: block;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

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

.footer-logotype {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 1.5rem;
}

.footer-logotype .logotype-img {
    height: 70px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-column-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-column-right .social-links {
    justify-content: flex-end;
}

.footer-description {
    color: var(--light-gray);
    line-height: 1.8;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--light-gray);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact li {
    color: var(--light-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--primary-green);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--white);
    color: var(--primary-green);
    transform: translateY(-3px);
}

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

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #6c757d;
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: #5a6268;
    transform: translateY(-5px);
}

/* ===================================
   WHATSAPP FLOATING BUTTON
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
}

.whatsapp-float i {
    line-height: 1;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .map-container {
        height: 300px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-link {
        padding: 1rem 1.5rem;
        width: 100%;
        text-align: center;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .language-toggle {
        position: absolute;
        top: 1rem;
        right: 4rem;
        margin-left: 0;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .lang-flag {
        font-size: 1.1rem;
    }
    
    .hero {
        margin-top: 65px;
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .activities-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .event-cta {
        padding: 2rem 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-column-right {
        align-items: flex-start;
    }
    
    .footer-logotype {
        justify-content: flex-start;
    }
    
    .footer-column-right .social-links {
        justify-content: flex-start;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.8rem 2rem;
    }
    
    .contact-form-wrapper {
        padding: 1.2rem;
    }
    
    .info-card {
        padding: 1.2rem;
    }
    
    .map-container {
        height: 250px;
        margin-top: 0.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   CATALOG & PRODUCT PAGES STYLES
   ========================================== */

/* Catalog Button */
.catalog-button-wrapper {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem 0;
}

.btn-catalog {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    box-shadow: 0 4px 15px rgba(36, 147, 12, 0.3);
}

.btn-catalog:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(36, 147, 12, 0.4);
}

/* Products Hero */
.products-hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-green) 0%, #1e7d09 100%);
    padding: 8rem 0 5rem;
    overflow: hidden;
    min-height: 350px;
}

.products-hero .hero-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.products-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.products-hero .hero-title {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.products-hero .hero-subtitle {
    color: var(--white);
    font-size: 1.3rem;
    opacity: 0.95;
}

/* Products Catalog Section */
.products-catalog {
    padding: 8rem 0 4rem;
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.products-catalog::before {
    content: '';
    position: absolute;
    top: 100px;
    left: -80px;
    width: 400px;
    height: 400px;
    background-image: url('../images/treebg.svg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}

.products-catalog::after {
    content: '';
    position: absolute;
    bottom: 100px;
    right: -80px;
    width: 400px;
    height: 400px;
    background-image: url('../images/treebg.svg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
    transform: scaleX(-1);
}

.products-catalog .container {
    position: relative;
    z-index: 1;
}

.catalog-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
}

/* Product Card Link */
.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(36, 147, 12, 0.95);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: var(--gray);
}

.breadcrumb a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--dark-gray);
}

.breadcrumb .separator {
    color: var(--gray);
}

.breadcrumb i {
    font-size: 0.9rem;
}

/* Product Detail Section */
.product-detail-section {
    padding: 6rem 0 4rem;
    background-color: var(--light-gray);
    min-height: 100vh;
}

.product-detail-header {
    margin-bottom: 3rem;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background-color: var(--white);
    color: var(--primary-green);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.btn-back:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: translateX(-5px);
}

.product-info {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.product-detail-title {
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.product-detail-description {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-image-count {
    color: var(--primary-green);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Product Detail Grid */
.product-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Ensure catalog products are visible by default */
.products-catalog .product-card {
    opacity: 1;
    transform: scale(1);
}

/* Contact Card in Products Grid */
.contact-card {
    background: linear-gradient(135deg, var(--primary-green) 0%, #1e7d09 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.contact-card::before {
    display: none !important;
}

.contact-card-content {
    padding: 2rem;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 10;
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-card-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.contact-card-title {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.contact-card-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Info Box */
.contact-info-box {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.info-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-row i {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    min-width: 20px;
}

.info-row span {
    font-weight: 500;
}

/* WhatsApp Button */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background-color: var(--white);
    color: #25D366;
    border-radius: 50px;
    font-family: var(--font-headings);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.btn-whatsapp:hover {
    background-color: #25D366;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
    font-size: 1.3rem;
}

/* Alternative Contact Buttons */
.contact-alternatives {
    display: flex;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 10;
}

.alt-contact-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.alt-contact-btn:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-3px);
}

.product-detail-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.product-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.product-detail-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.image-number {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white);
    color: var(--white);
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: var(--white);
    color: var(--dark-gray);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white);
    color: var(--white);
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--white);
    color: var(--dark-gray);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

.lightbox-counter {
    margin-top: 1rem;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
}

/* Responsive Styles for Catalog Pages */
@media (max-width: 768px) {
    .products-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .products-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .catalog-grid {
        grid-template-columns: 1fr;
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .product-detail-title {
        font-size: 2rem;
    }
    
    .contact-card-content {
        padding: 1.5rem;
    }
    
    .contact-card-icon {
        width: 70px;
        height: 70px;
    }
    
    .contact-card-icon i {
        font-size: 2rem;
    }
    
    .contact-card-title {
        font-size: 1.2rem;
    }
    
    .contact-info-box {
        padding: 1rem;
    }
    
    .info-row {
        font-size: 0.85rem;
    }
    
    .btn-whatsapp {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
    }
    
    .lightbox-prev,
    .lightbox-next,
    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .products-hero {
        padding: 6rem 0 3rem;
    }
    
    .products-hero .hero-title {
        font-size: 1.8rem;
    }
    
    .catalog-button-wrapper {
        margin-top: 2rem;
    }
    
    .btn-catalog {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

