/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #3d8a4e;
    --secondary-color: #ff6b35;
    --dark-green: #3d8a4e;
    --darker-green: #3d8a4e;
    --light-green: #f5fce8;
    --text-dark: #3d8a4e;
    --text-light: #555555;
    --text-on-primary: #3d8a4e;
    --white: #ffffff;
    --card-bg: #ffffff;
    --gray-light: #f5f5f5;
    --gray-dark: #4a4a4a;
    --success-color: #3d8a4e;
}

body {
    font-family: 'Cairo', sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    background-color: var(--white);
}

/* Smooth in-page scrolling for anchor navigation */
html {
    scroll-behavior: smooth;
}

/* Lazy Loading Images Styles */
img {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

img.lazy-loaded,
img.hero-logo-image {
    opacity: 1;
}

img[loading="lazy"] {
    min-height: 100px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    background: linear-gradient(135deg, var(--gray-dark) 0%, #2a2a2a 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
}

.navbar {
    padding: 5px 0;
    position: relative;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 85px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 5px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    color: var(--white);
    padding: 0;
    overflow: hidden;
    min-height: 87vh;
    display: flex;
    align-items: center;
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

/* Blurred Background Video */
.hero-video-bg-blur {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    filter: blur(40px) brightness(0.5);
    scale: 1.1;
}

/* Main Video */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(1.3);
    object-fit: contain;
    z-index: 2;
    filter: brightness(0.4);
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 3;
}




    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 1;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-30px) translateX(20px); }
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    position: relative;
    z-index: 4;
    width: 100%;
    padding: 80px 0;
}

.hero-text-container {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.3;
    min-height: 70px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    position: relative;
    z-index: 10;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    position: relative;
    z-index: 10;
    min-height: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1.5s ease-out;
}

/* Typing Animation */
@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

.typing-text,
.typing-text-2 {
    overflow: hidden;
    white-space: nowrap;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Remove old slideshow styles */
.hero-slideshow,
.hero-slideshow .slide,
.hero-slideshow::before,
.hero-overlay {
    display: none;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .hero {
        min-height: 40vh;
        max-height: 40vh;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-background {
        height: 100%;
    }

    .hero-video {
        object-fit: contain;
        width: 185%;
        height: 110%;
        position: absolute;
        top: 50%;
        left: 45%;
        transform: translate(-50%, -50%);
    }

    .hero-overlay {
        background: rgba(0, 0, 0, 0.75);
    }

    .hero-wrapper {
        flex-direction: column !important;
        gap: 0 !important;
        padding: 15px !important;
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .container {
        padding: 0 15px;
        width: 100%;
    }

    .hero-logo-container {
        flex: 0 0 auto;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }

    .hero-logo-image {
        max-width: 200px;
    }

    .hero-logo-container::before,
    .hero-logo-container::after {
        display: none;
    }

    .hero-text-container {
        text-align: center !important;
        padding: 0 !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 1 !important;
    }

    .hero-text-container::before {
        display: none;
    }

    .hero-text-container::after {
        display: none;
    }

    .hero-title {
        font-size: 20px !important;
        min-height: auto !important;
        margin-bottom: 8px !important;
        line-height: 1.2 !important;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.8) !important;
        font-weight: 900 !important;
        text-align: center !important;
        width: 100% !important;
    }

    .hero-subtitle {
        font-size: 14px !important;
        margin-bottom: 15px !important;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.8) !important;
        text-align: center !important;
        line-height: 1.4 !important;
        min-height: auto !important;
    }

    .hero-buttons {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 8px !important;
        width: 100% !important;
        justify-content: center !important;
        align-items: center !important;
        margin-top: 0 !important;
        margin-bottom: 15px !important;
        padding-bottom: 10px !important;
        padding: 0 10px !important;
    }

    .btn {
        padding: 8px 12px !important;
        font-size: 11px !important;
        flex: 0 0 auto !important;
        max-width: none !important;
        min-width: auto !important;
        white-space: nowrap !important;
    }

    .typing-text,
    .typing-text-2 {
        overflow: visible;
        white-space: normal;
    }

    .hero-buttons .btn {
        width: auto !important;
        max-width: none !important;
        min-width: auto !important;
        text-align: center;
        padding: 8px 12px !important;
        font-size: 11px !important;
        white-space: nowrap !important;
        flex-shrink: 1 !important;
    }

    .hero::before {
        width: 80px;
        height: 80px;
        bottom: 3%;
        right: 3%;
        opacity: 0.2;
    }

    .hero::after {
        width: 70px;
        height: 70px;
        top: 8%;
        left: 3%;
        opacity: 0.2;
    }

    .hero-background::before,
    .hero-background::after {
        display: none;
    }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #4d9a5e;
    color: var(--white);
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(61, 138, 78, 0.4);
}

.btn-primary:hover {
    background: #5daa6e;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(77, 154, 94, 0.6);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.btn-secondary:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.5);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 900;
    color: var(--darker-green);
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--dark-green);
    border-radius: 2px;
}

/* Success Story Section */
.success-story {
    background: var(--gray-light);
}

.story-content p {
    font-size: 18px;
    line-height: 2;
    margin-bottom: 20px;
    color: var(--text-light);
}

.trust-box {
    background: var(--dark-green);
    color: var(--white);
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    padding-bottom: 60px;
    overflow: hidden;
}

.trust-box h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.trust-box p {
    font-size: 18px;
    color: var(--white);
}

/* SVG Dividers */
.section-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    pointer-events: none;
    opacity: 0.15;
}

.section-divider.bottom {
    bottom: 0;
}

.cta,
.page-header {
    position: relative;
    padding-bottom: 60px;
}

.cta .section-divider,
.page-header .section-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
}

.trust-box .section-divider {
    bottom: -5px;
}

/* Vision & Mission Section */
.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.vm-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-10px);
}

.vm-card h3 {
    font-size: 28px;
    color: var(--darker-green);
    margin-bottom: 20px;
    font-weight: 700;
}

.vm-card p {
    font-size: 16px;
    line-height: 1.9;
    color: #000000;
}

/* Values Section */
.values {
    background: var(--light-green);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(90,158,46,0.3);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-green);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.value-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 20px rgba(90, 158, 46, 0.4);
}

.value-card h3 {
    font-size: 22px;
    color: var(--darker-green);
    margin-bottom: 15px;
    font-weight: 700;
}

.value-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Journey Section */
.journey-content p {
    font-size: 18px;
    line-height: 2;
    margin-bottom: 20px;
    color: var(--text-light);
}

.journey-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.journey-box {
    background: var(--light-green);
    padding: 40px;
    border-radius: 15px;
    border-right: 5px solid var(--primary-color);
}

.journey-box h3 {
    font-size: 24px;
    color: var(--darker-green);
    margin-bottom: 20px;
    font-weight: 700;
}

.journey-box ul {
    list-style: none;
}

.journey-box li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
    padding-right: 10px;
}

/* Clients Section */
.clients {
    background: var(--gray-light);
}

.clients-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.clients-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    align-items: center;
    justify-content: center;
    overflow-x: auto;
    padding: 20px 0;
}

.client-logo {
    background: var(--card-bg);
    padding: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    height: 120px;
    width: 140px;
    flex-shrink: 0;
    overflow: hidden;
}

.client-logo:hover {
    transform: scale(1.05);
}

.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
}

/* CTA Section */
.cta {
    background: var(--dark-green);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 20px;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.15);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--gray-dark) 0%, #2a2a2a 100%);
    color: var(--white);
    padding: 40px 0 15px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 30px;
    margin-bottom: 25px;
    background: transparent !important;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: transparent !important;
}

.footer-logo {
    height: 200px;
    width: auto;
}

.footer-description {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.8;
}

.footer-section {
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--dark-green);
    font-weight: 700;
    position: static !important;
    padding-bottom: 0 !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
}

.footer-section h4::after {
    content: "" !important;
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
}

.footer-section ul {
    list-style: none;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.footer-section ul li {
    margin-bottom: 12px;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.footer-section a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.footer-section a:hover {
    color: var(--primary-color);
    transform: translateX(-5px);
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.footer-section p {
    margin-bottom: 12px;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.contact-info {
    list-style: none;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.contact-info li {
    margin-bottom: 15px;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    display: flex !important;
    align-items: center !important;
    flex-direction: row !important;
}

.contact-info a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    white-space: nowrap !important;
}

.contact-info a:hover {
    color: var(--primary-color);
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* SVG Icons Styles */
.contact-info svg,
.footer-contact-icon {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-left: 5px;
}

.header-icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-left: 8px;
}

.footer-map {
    grid-column: span 1;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    margin-top: 15px;
}

.map-container iframe {
    display: block;
    border: none;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.7);
    text-align: center;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.whatsapp-icon:hover {
    background: #25D366;
}

.email-icon:hover {
    background: #EA4335;
}

.facebook-icon:hover {
    background: #1877F2;
}

.linkedin-icon:hover {
    background: #0A66C2;
}

.youtube-icon:hover {
    background: #FF0000;
}

.location-icon:hover {
    background: var(--secondary-color);
}

/* Page Header */
.page-header {
    background: var(--dark-green);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
}

/* About Page */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    font-size: 18px;
    line-height: 2;
    margin-bottom: 25px;
    color: var(--text-light);
}

/* Services Page */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--light-green);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--secondary-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(90,158,46,0.3);
}

.service-card h3 {
    font-size: 22px;
    color: var(--darker-green);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-item {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.service-item h3 {
    font-size: 22px;
    color: var(--dark-green);
    margin-bottom: 15px;
}

.service-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Gallery Page */
.gallery-section {
    padding: 60px 0;
    background: var(--gray-light);
}

.gallery-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.gallery-intro h2 {
    font-size: 36px;
    color: var(--darker-green);
    margin-bottom: 15px;
    font-weight: 700;
}

.gallery-intro p {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 4/3;
    background: var(--gray-light);
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 122, 62, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    font-size: 48px;
    color: var(--white);
}

/* Videos Section */
.videos-section {
    padding: 60px 0 80px;
    background: var(--light-green);
}

.videos-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.videos-intro h2 {
    font-size: 36px;
    color: var(--darker-green);
    margin-bottom: 15px;
    font-weight: 700;
}

.videos-intro p {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.6;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 35px;
}

.video-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 25px;
}

.video-info h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.video-info p {
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.95);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--white);
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.modal-close:hover,
.modal-close:focus {
    color: #ddd;
}

/* Contact Page */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: var(--card-bg);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e5e5;
    height: fit-content;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--dark-green);
}

.contact-info h2 {
    font-size: 24px;
    color: var(--darker-green);
    margin-bottom: 25px;
    font-weight: 700;
}

.contact-form h2 {
    font-size: 22px;
    color: var(--darker-green);
    margin-bottom: 25px;
    font-weight: 700;
}

.info-item {
    margin-bottom: 25px;
}

.info-item h3 {
    font-size: 16px;
    color: var(--dark-green);
    margin-bottom: 8px;
    font-weight: 600;
    font-weight: 700;
}

.info-item p {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.8;
}

.info-item a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
}

.contact-form {
    background: var(--card-bg);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e5e5;
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--dark-green);
}

.contact-form h2 {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 25px;
    font-size: 24px;
}

.contact-form h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: var(--dark-green);
    border-radius: 2px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
    background: var(--card-bg);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dark-green);
    box-shadow: 0 0 0 3px rgba(90, 158, 46, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
    transition: all 0.3s ease;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    opacity: 0.5;
}

.contact-form button {
    width: 100%;
    cursor: pointer;
    border: none;
}

/* Contact Links */
.contact-link {
    color: var(--dark-green);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-color);
}

/* Form Row */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: var(--white);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232d7a3e' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 15px center;
    color: #000000;
}

.form-group select:focus {
    outline: none;
    border-color: var(--dark-green);
    box-shadow: 0 4px 16px rgba(90, 158, 46, 0.2);
    transform: translateY(-2px);
}

.form-group optgroup {
    font-weight: 700;
    color: #000000;
    background: #f5f5f5;
    font-size: 13px;
    padding: 8px 10px;
    margin-top: 5px;
}

.form-group option {
    padding: 12px 15px;
    transition: all 0.2s ease;
    color: #000000;
    background: var(--white);
}

.form-group option:hover,
.form-group option:checked {
    background: #f0f9f0;
    color: #000000;
}

/* Multi-select styling */
/* Products Checkboxes Container */
.products-checkboxes {
    padding: 12px;
    background: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    max-height: 350px;
    overflow-y: auto;
}

.products-checkboxes::-webkit-scrollbar {
    width: 8px;
}

.products-checkboxes::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.products-checkboxes::-webkit-scrollbar-thumb {
    background: var(--dark-green);
    border-radius: 10px;
}

/* Checkbox Groups */
.checkbox-group {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
}

.checkbox-group:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.checkbox-category {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 8px;
    padding-right: 8px;
    position: relative;
}

.checkbox-category::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 14px;
    background: var(--dark-green);
    border-radius: 2px;
}

/* Checkbox Items */
.checkbox-item {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    margin: 4px 0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--card-bg);
    position: relative;
}

.checkbox-item:hover {
    background: #f5f5f5;
}

/* Custom Checkbox */
.checkbox-item input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #bbb;
    border-radius: 3px;
    margin-left: 8px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.checkbox-item input[type="checkbox"]:hover {
    border-color: var(--dark-green);
}

.checkbox-item input[type="checkbox"]:checked {
    background: var(--dark-green);
    border-color: var(--dark-green);
}

.checkbox-item input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 12px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Checkbox Label */
.checkbox-label {
    color: var(--text-color);
    font-size: 13px;
    -webkit-user-select: none;
    user-select: none;
    flex: 1;
}

.checkbox-item:has(input:checked) {
    background: #e8f5e9;
}

.checkbox-item:has(input:checked) .checkbox-label {
    color: var(--dark-green);
    font-weight: 600;
}

.hint {
    font-size: 12px;
    font-weight: 500;
    color: #888;
    margin-right: 6px;
}

.form-hint {
    font-size: 12px;
    color: #666;
    margin-top: 6px;
}

/* Submit Button Animation */
.contact-form button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--darker-green) 100%);
    box-shadow: 0 4px 12px rgba(90, 158, 46, 0.3);
    max-width: 180px;
    margin-right: auto;
    margin-left: auto;
}

.contact-form button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.contact-form button:hover::before {
    width: 400px;
    height: 400px;
}

.contact-form button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(45, 122, 62, 0.5);
}

.contact-form button:active {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 10px 25px rgba(45, 122, 62, 0.4);
}

/* Loading Animation */
.contact-form button.loading {
    pointer-events: none;
    opacity: 0.8;
}

.contact-form button.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.contact-form button.loading svg {
    opacity: 0;
}

/* Map Section */
.map-section {
    padding: 0;
    margin-top: 80px;
}

.map-section .container {
    padding-bottom: 30px;
}

.map-section .section-title {
    font-size: 36px;
    color: var(--dark-green);
    text-align: center;
    margin-bottom: 10px;
}

.map-section .section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
}

.map-full {
    width: 100%;
    height: 450px;
    border-top: 4px solid var(--primary-color);
}

.map-full iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background: linear-gradient(135deg, var(--gray-dark) 0%, #2a2a2a 100%);
        width: 100%;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        min-height: 40vh;
        background-position: center center;
        background-size: cover;
    }

    .hero .container {
        padding-bottom: 40px;
        padding-right: 40px;
    }

    .hero-content {
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
        align-items: center;
        margin-top: 20px !important;
    }

    .hero-buttons .btn {
        padding: 6px 12px;
        font-size: 11px;
        flex: 1;
        min-width: 110px;
        max-width: 130px;
    }

    .vm-grid,
    .journey-boxes {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo-section {
        align-items: center;
    }
    
    .footer-logo {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 40vh;
        background-position: center top;
        background-size: cover;
    }

    .hero .container {
        padding-bottom: 30px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .hero-content {
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 8px;
        justify-content: center;
        align-items: center;
        margin-top: 20px !important;
    }

    .hero-buttons .btn {
        padding: 6px 12px;
        font-size: 11px;
        max-width: 120px;
        width: 100%;
        max-width: 100%;
    }

    .section-title {
        font-size: 30px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    /* Clients Grid - Mobile */
    .clients-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        overflow-x: visible;
    }

    .client-logo {
        width: 100%;
        height: 100px;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .map-full {
        height: 350px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
    
    .footer-logo-section {
        align-items: center;
    }
    
    .footer-logo {
        height: 150px;
    }
}

/* Blog Page Styles */
.blog-section {
    padding: 80px 0;
    background-color: var(--gray-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.blog-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--dark-green);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.blog-date .day {
    display: block;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
}

.blog-date .month {
    display: block;
    font-size: 14px;
    margin-top: 5px;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-meta .category {
    background: var(--light-green);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.blog-meta .read-time {
    color: var(--text-light);
    font-size: 14px;
}

.blog-content h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 700;
}

.blog-content p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 15px;
}

.read-more span {
    font-size: 18px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    margin-top: 40px;
}

.page-number {
    padding: 10px 18px;
    background: var(--card-bg);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.page-number:hover {
    background: var(--dark-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.page-number.active {
    background: var(--dark-green);
    color: var(--white);
}

/* Responsive Blog */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-content h3 {
        font-size: 20px;
    }

    .blog-content p {
        font-size: 15px;
    }

    .blog-image {
        height: 200px;
    }

    .pagination {
        flex-wrap: wrap;
    }

    .page-number {
        padding: 8px 15px;
        font-size: 14px;
    }

    /* Gallery Responsive */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-intro h2,
    .videos-intro h2 {
        font-size: 28px;
    }

    .gallery-intro p,
    .videos-intro p {
        font-size: 16px;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .video-info h3 {
        font-size: 20px;
    }

    .video-info p {
        font-size: 15px;
    }

    .modal-close {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }

    .modal-content {
        max-width: 95%;
    }
}

/* Products Page Styles */
.products-section {
    padding: 60px 0;
}

.products-section.alt-bg {
    background: var(--gray-light);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--dark-green), var(--secondary-color));
    margin: 15px auto 0;
    border-radius: 2px;
}

.product-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.product-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.lead-text {
    font-size: 19px !important;
    font-weight: 500;
    color: var(--text-dark);
}

.highlight-text {
    background: linear-gradient(120deg, var(--light-green) 0%, var(--light-green) 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 80%;
    padding: 10px 0;
    font-weight: 600;
    color: var(--primary-color);
}

.subsection-title {
    font-size: 28px;
    color: var(--primary-color);
    margin: 50px 0 20px;
    text-align: center;
    font-weight: 700;
}

.subsection-intro {
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Chemical Categories */
.chemical-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.chemical-category {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.chemical-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.category-title {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.category-icon {
    font-size: 28px;
    line-height: 1;
}

.chemical-list {
    list-style: none;
    padding: 0;
}

.chemical-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-dark);
    font-size: 16px;
    position: relative;
    padding-right: 25px;
    transition: color 0.3s ease, padding-right 0.3s ease;
}

.chemical-list li:last-child {
    border-bottom: none;
}

.chemical-list li:before {
    content: "✓";
    position: absolute;
    right: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

.chemical-list li:hover {
    color: var(--primary-color);
    padding-right: 30px;
}

/* Plastic Products Cards */
.plastic-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.plastic-card {
    background: var(--card-bg);
    padding: 0;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
}

.plastic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: var(--dark-green);
}

.plastic-card.highlighted {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--card-bg) 100%);
    border: 2px solid var(--dark-green);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--light-green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.plastic-card:hover .product-image img {
    transform: scale(1.1);
}

.plastic-card .plastic-title,
.plastic-card p {
    padding: 0 35px;
}

.plastic-card .plastic-title {
    padding-top: 25px;
}

.plastic-card p {
    padding-bottom: 35px;
}

.plastic-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--dark-green), var(--darker-green));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(45, 122, 62, 0.3);
}

.plastic-title {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.plastic-card p {
    color: #000000;
    line-height: 1.8;
    font-size: 16px;
}

.plastic-card strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Products Section */
.products-section {
    padding: 60px 0 80px;
    background: var(--gray-light);
}

.tab-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.tab-intro h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.intro-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--dark-green), var(--secondary-color));
    margin: 20px auto 30px;
    border-radius: 2px;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Responsive Products */
@media (max-width: 768px) {
    .tab-intro h2 {
        font-size: 28px;
    }

    .plastic-products {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .chemical-category {
        padding: 25px 20px;
    }

    .plastic-card {
        padding: 0;
    }

    .plastic-card .plastic-title,
    .plastic-card p {
        padding: 0 25px;
    }

    .plastic-card .plastic-title {
        padding-top: 20px;
    }

    .plastic-card p {
        padding-bottom: 25px;
    }

    .product-image {
        height: 200px;
    }

    .category-title {
        font-size: 20px;
    }

    .plastic-title {
        font-size: 20px;
    }

    .subsection-title {
        font-size: 24px;
    }

    .product-intro p {
        font-size: 16px;
    }

    .lead-text {
        font-size: 17px !important;
    }
}

/* Simple Contact Page Design */
.simple-contact-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    margin-top: 30px;
}

.simple-contact-info {
    background: transparent;
    padding: 30px;
    border-radius: 12px;
    box-shadow: none;
    height: fit-content;
}

.simple-contact-info h2 {
    font-size: 22px;
    color: var(--dark-green);
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item h3 {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-item a {
    font-size: 14px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--dark-green);
}

/* Simple Form */
.simple-contact-form {
    background: var(--card-bg);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.simple-contact-form h2 {
    font-size: 22px;
    color: var(--dark-green);
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
}

.simple-form-group {
    margin-bottom: 18px;
}

.simple-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.simple-form-group input,
.simple-form-group textarea,
.simple-form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: var(--card-bg);
}

.simple-form-group input:focus,
.simple-form-group textarea:focus,
.simple-form-group select:focus {
    outline: none;
    border-color: var(--dark-green);
    box-shadow: 0 0 0 3px rgba(90, 158, 46, 0.15);
}

.simple-form-group select[multiple] {
    padding: 10px;
}

.simple-form-group select[multiple] option {
    padding: 8px;
    border-radius: 4px;
    margin: 2px 0;
    color: #000000;
}

.simple-form-group small {
    display: block;
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

/* Dropdown Checkbox */
.dropdown-checkbox {
    position: relative;
}

.dropdown-toggle {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: var(--card-bg);
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    text-align: right;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.dropdown-toggle:hover,
.dropdown-toggle.active {
    border-color: var(--dark-green);
    box-shadow: 0 0 0 3px rgba(90, 158, 46, 0.15);
}

.dropdown-toggle .selected-text {
    flex: 1;
    color: #000000;
}

.dropdown-toggle .dropdown-arrow {
    transition: transform 0.3s;
    margin-left: 8px;
}

.dropdown-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    left: 0;
    background: var(--card-bg);
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-height: 350px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.dropdown-section {
    padding: 10px 15px;
    background: linear-gradient(135deg, var(--dark-green), var(--darker-green));
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
    position: sticky;
    top: 0;
    z-index: 1;
}

.dropdown-section:first-child {
    margin-top: 0;
    border-radius: 7px 7px 0 0;
}

.dropdown-menu.show {
    display: block;
    animation: dropdownFadeIn 0.2s ease;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: rgba(45, 122, 62, 0.05);
}

.dropdown-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-left: 10px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.dropdown-item span {
    font-size: 14px;
    color: #000000;
    font-weight: 500;
}

.dropdown-item input[type="checkbox"]:checked + span {
    color: #000000;
    font-weight: 600;
}

/* Phone Input Direction */
input[type="tel"] {
    direction: ltr;
    text-align: right;
}

.simple-btn {
    width: 100%;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--dark-green), var(--darker-green));
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.simple-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 122, 62, 0.3);
}

.simple-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Simple Map Section */
.simple-map-section {
    margin-top: 60px;
    padding: 0;
}

.simple-map-section h2 {
    font-size: 26px;
    color: var(--dark-green);
    margin-bottom: 25px;
    text-align: center;
}

.simple-map-section iframe {
    width: 100%;
    border: 0;
    border-radius: 0;
}

/* Responsive */
@media (max-width: 968px) {
    .simple-contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Article Modal Styles */
.article-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
    animation: fadeIn 0.3s ease;
}

.article-modal.show {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.article-modal-content {
    background-color: var(--white);
    margin: 2% auto;
    padding: 0;
    width: 90%;
    max-width: 1000px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideDown 0.4s ease;
    max-height: 95vh;
    overflow-y: auto;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.article-modal-close {
    position: absolute;
    top: 20px;
    left: 20px;
    color: var(--white);
    background: var(--dark-green);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.article-modal-close:hover,
.article-modal-close:focus {
    background: var(--dark-green);
    transform: rotate(90deg);
}

.article-modal-body {
    display: flex;
    flex-direction: column;
}

.article-modal-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.article-modal-text {
    padding: 40px;
}

.article-modal-category {
    display: inline-block;
    background: var(--light-green);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.article-modal-text h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.4;
    font-weight: 800;
}

.article-modal-text h3 {
    font-size: 24px;
    color: #000000;
    margin: 30px 0 15px;
    font-weight: 700;
}

.article-modal-text p {
    font-size: 18px;
    line-height: 2;
    color: #000000;
    margin-bottom: 20px;
    text-align: justify;
}

.article-modal-text ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.article-modal-text ul li {
    font-size: 18px;
    line-height: 2;
    color: #000000;
    margin-bottom: 15px;
    padding-right: 30px;
    position: relative;
}

.article-modal-text ul li:before {
    content: "✓";
    position: absolute;
    right: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
}

.article-modal-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Responsive for Article Modal */
@media (max-width: 768px) {
    .article-modal-content {
        width: 95%;
        margin: 5% auto;
        border-radius: 15px;
    }

    .article-modal-image {
        height: 250px;
        border-radius: 15px 15px 0 0;
    }

    .article-modal-text {
        padding: 25px;
    }

    .article-modal-text h2 {
        font-size: 24px;
    }

    .article-modal-text h3 {
        font-size: 20px;
    }

    .article-modal-text p,
    .article-modal-text ul li {
        font-size: 16px;
        line-height: 1.8;
    }

    .article-modal-close {
        width: 40px;
        height: 40px;
        font-size: 28px;
        top: 15px;
        left: 15px;
    }
}

/* Product Tabs Styles */
.product-tabs {
    display: flex;
    gap: 15px;
    margin: 40px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tab-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #2d7a3e;
    background: rgba(45, 122, 62, 0.05);
}

.tab-button.active {
    background: linear-gradient(135deg, #2d7a3e, #1e5a2b);
    color: white;
    border-color: #2d7a3e;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-header {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #f9fafb, #f3f4f6);
    border-radius: 15px;
}

.tab-header h2 {
    font-size: 32px;
    color: #1f2937;
    margin-bottom: 15px;
    font-weight: 700;
}

.tab-header p {
    font-size: 18px;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Tabs */
@media (max-width: 768px) {
    .product-tabs {
        flex-direction: column;
        gap: 10px;
    }

    .tab-button {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 16px;
    }

    .tab-header h2 {
        font-size: 24px;
    }

    .tab-header p {
        font-size: 16px;
    }
}

/* Top Social Bar */
.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.footer-social-icons .social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.footer-social-icons .social-icon:hover {
    background: #2d7a3e;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(45, 122, 62, 0.4);
    border-color: #2d7a3e;
}

.footer-social-icons .social-icon svg {
    width: 22px;
    height: 22px;
    fill: white;
}

@media (max-width: 768px) {
    .footer-social-icons {
        gap: 15px;
        padding: 20px 0;
    }

    .footer-social-icons .social-icon {
        width: 40px;
        height: 40px;
    }

    .footer-social-icons .social-icon svg {
        width: 20px;
        height: 20px;
    }
}