:root {
    --primary-green: #2E8B57;
    --light-green: #3CB371;
    --lighter-green: #90EE90;
    --dark-green: #1a5c3a;
    --accent-orange: #FF7F50;
    --accent-red: #FF6347;
    --blue: #4A90E2;
    --purple: #9B59B6;
    --yellow: #F1C40F;
    --pure-white: #FFFFFF;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #495057;
    --text-dark: #212529;
    --shadow: rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --gradient-green: linear-gradient(135deg, #2E8B57 0%, #3CB371 100%);
    --gradient-orange: linear-gradient(135deg, #FF7F50 0%, #FF6347 100%);
    --gradient-blue: linear-gradient(135deg, #4A90E2 0%, #5DADE2 100%);
    --gradient-purple: linear-gradient(135deg, #9B59B6 0%, #BB8FCE 100%);
    --gradient-yellow: linear-gradient(135deg, #F1C40F 0%, #F7DC6F 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F7EF8A 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--pure-white);
    direction: rtl;
}

h1,
h2,
h3,
h4 {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    color: var(--dark-green);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: var(--pure-white);
    box-shadow: 0 4px 12px var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    color: var(--primary-green);
    font-size: 2.2rem;
    transition: all 0.5s ease;
}

.logo:hover .logo-icon {
    transition: all 0.5s ease;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
}

.logo-text span {
    color: var(--accent-orange);
}

.company-tagline {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-top: 3px;
    font-weight: 500;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-green);
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover {
    color: var(--accent-orange);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-orange);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-switcher {
    background: none;
    border: 1px solid var(--medium-gray);
    padding: 8px 15px;
    border-radius: 4px;
    font-family: 'Tajawal', sans-serif;
    cursor: pointer;
}

.cta-button {
    background: var(--gradient-orange);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: right 0.7s ease;
}

.cta-button:hover::before {
    right: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 99, 71, 0.2);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-green);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: 140px;
    background: linear-gradient(rgb(255 255 255 / 20%), rgb(255 255 255 / 0%)), url(../../imgs/header.png);
    background-size: cover;
    background-position: center;
    min-height: 95vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 700px;
    animation: fadeInUp 1s ease-out;
}

.hero-text {
    display: inline-block;
    padding: 18px 30px;
    border-radius: 14px;

    /* خلفية متدرجة مع شفافية */
    background: linear-gradient(135deg, rgb(34 202 95 / 46%), rgb(57 195 88 / 78%)) !important;

    /* تحسين وضوح النص */
    color: #ffffff !important;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.4;
    text-align: center;

    /* ظل خفيف للنص */
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35) !important;

    /* ظل للصندوق */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
    background: var(--gradient-green);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from {
        text-shadow: 0 0 10px rgba(46, 139, 87, 0.2);
    }

    to {
        text-shadow: 0 0 20px rgba(46, 139, 87, 0.4), 0 0 30px rgba(46, 139, 87, 0.2);
    }
}

.hero h1 span {
    color: var(--accent-orange);
}

.hero-company-name {
    display: inline-block;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    position: relative;
}

.hero-company-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.secondary-button {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
}

.secondary-button:hover {
    background-color: var(--primary-green);
    color: white;
    transform: translateY(-2px);
}

/* Company Info Banner */
.company-banner {
    background: var(--gradient-green);
    color: white;
    padding: 30px 0;
    text-align: center;
}

.company-banner-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.banner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.banner-icon {
    font-size: 2rem;
    color: white;
}

.banner-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.banner-subtext {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-green);
    border-radius: 2px;
}

.section-title p {
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: var(--pure-white);
    border-radius: 8px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-green);
    z-index: 2;
    transition: height 0.3s ease;
}

.feature-card:hover::before {
    height: 100%;
    opacity: 0.1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(46, 139, 87, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.2);
    color: var(--accent-orange);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 3;
}

.feature-card p {
    position: relative;
    z-index: 3;
}

/* About Company Section */
.about-company {
    padding: 80px 0;
    background-color: var(--pure-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-points {
    list-style: none;
}

.about-points li {
    margin-bottom: 25px;
    padding-right: 20px;
    position: relative;
    font-size: 1.1rem;
}

.about-points li::before {
    content: '✓';
    position: absolute;
    right: -20px;
    top: 0;
    width: 30px;
    height: 30px;
    background: var(--gradient-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.products-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background-color: var(--light-gray);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gradient-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 139, 87, 0.3);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.product-card {
    background-color: var(--pure-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-tag {
    display: inline-block;
    background: var(--gradient-green);
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    align-self: flex-start;
}

.product-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.product-content p {
    color: var(--dark-gray);
    margin-bottom: 15px;
    font-size: 0.95rem;
    flex-grow: 1;
}

/* Process Section */
.process {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="%232E8B57" opacity="0.03"/></svg>');
    background-size: cover;
    z-index: 0;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue) 0%, var(--purple) 25%, var(--accent-orange) 50%, var(--yellow) 75%, var(--primary-green) 100%);
    z-index: 1;
    border-radius: 3px;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
    width: 20%;
}

.step-number {
    width: 80px;
    height: 80px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
    border: 5px solid var(--light-gray);
    transition: all 0.5s ease;
    cursor: pointer;
}

.process-step:nth-child(1) .step-number {
    background: var(--gradient-blue);
}

.process-step:nth-child(2) .step-number {
    background: var(--gradient-purple);
}

.process-step:nth-child(3) .step-number {
    background: var(--gradient-orange);
}

.process-step:nth-child(4) .step-number {
    background: var(--gradient-yellow);
}

.process-step:nth-child(5) .step-number {
    background: var(--gradient-green);
}

.step-number:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.step-content {
    background-color: white;
    padding: 20px 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
}

.process-step:hover .step-content {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

/* Company Activities Section */
.activities {
    padding: 80px 0;
    background-color: var(--pure-white);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.activity-card {
    background-color: white;
    border-radius: 15px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    z-index: 2;
    transition: height 0.3s ease;
}

.activity-card:nth-child(1)::before {
    background: linear-gradient(90deg, #FF7F50, #FF6347);
}

.activity-card:nth-child(2)::before {
    background: linear-gradient(90deg, #4A90E2, #5DADE2);
}

.activity-card:nth-child(3)::before {
    background: linear-gradient(90deg, #2E8B57, #3CB371);
}

.activity-card:nth-child(4)::before {
    background: linear-gradient(90deg, #9B59B6, #BB8FCE);
}

.activity-card:hover::before {
    height: 100%;
    opacity: 0.1;
}

.activity-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.activity-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 3;
    display: inline-block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.activity-card:nth-child(1) .activity-icon {
    background: linear-gradient(135deg, rgba(255, 127, 80, 0.15), rgba(255, 99, 71, 0.15));
    color: #FF6347;
}

.activity-card:nth-child(2) .activity-icon {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.15), rgba(93, 173, 226, 0.15));
    color: #4A90E2;
}

.activity-card:nth-child(3) .activity-icon {
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.15), rgba(60, 179, 113, 0.15));
    color: #2E8B57;
}

.activity-card:nth-child(4) .activity-icon {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.15), rgba(187, 143, 206, 0.15));
    color: #9B59B6;
}

.activity-card:hover .activity-icon {
    transform: scale(1.2) rotate(5deg);
    transition: all 0.5s ease;
}

.activity-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 3;
}

.activity-card p {
    color: var(--dark-gray);
    position: relative;
    z-index: 3;
    font-size: 1rem;
}

/* Certifications Section */
.certifications {
    padding: 80px 0;
    text-align: center;
    background-color: var(--light-gray);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.cert-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-green);
    z-index: 2;
    transition: height 0.3s ease;
}

.cert-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.cert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.cert-logo {
    width: 100px;
    height: 100px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: var(--primary-green);
    box-shadow: 0 8px 20px rgba(46, 139, 87, 0.15);
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.cert-card:hover .cert-logo {
    transform: scale(1.15);
    color: var(--accent-orange);
    box-shadow: 0 12px 25px rgba(255, 99, 71, 0.2);
}

.cert-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 10px;
}

.cert-desc {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--pure-white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--dark-green);
}

.contact-subtitle {
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.contact-method:hover {
    transform: translateX(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.contact-method:nth-child(1) .contact-icon {
    background: var(--gradient-green);
}

.contact-method:nth-child(2) .contact-icon {
    background: var(--gradient-blue);
}

.contact-method:nth-child(3) .contact-icon {
    background: var(--gradient-purple);
}

.contact-method:nth-child(4) .contact-icon {
    background: var(--gradient-orange);
}

.contact-details h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark-green);
}

.contact-details a {
    display: block;
    color: var(--dark-gray);
    text-decoration: none;
    transition: var(--transition);
    margin-bottom: 5px;
}

.contact-details a:hover {
    color: var(--accent-orange);
}

.contact-note {
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-style: italic;
}

.map-container {
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--light-gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    padding: 20px;
    text-align: center;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.map-placeholder h3 {
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: var(--dark-green);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-orange);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #d1d1d1;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-right: 5px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact-item a {
    text-decoration: none;
    color: #fff;
}

.footer-contact-icon {
    color: var(--accent-orange);
    margin-top: 3px;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-family: 'Tajawal', sans-serif;
}

.newsletter-button {
    background: var(--gradient-orange);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--gradient-orange);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #d1d1d1;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

@media (max-width: 768px) {
    .footer-logo-column {
        order: -1;
        margin-bottom: 20px;
    }

    .footer-logo {
        max-width: 140px;
    }
}

.footer-logo-column {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    max-width: 280px;
    width: 100%;
    height: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .process-steps {
        flex-direction: column;
        gap: 40px;
    }

    .process-steps::before {
        display: none;
    }

    .process-step {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 20px;
        text-align: right;
    }

    .step-number {
        margin: 0;
        flex-shrink: 0;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .company-banner-content {
        flex-direction: column;
        gap: 25px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .header-actions {
        flex-direction: column;
        gap: 10px;
    }

    .lang-switcher,
    .cta-button {
        width: 100%;
        text-align: center;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    .contact-info{
        padding: 10px;
    }

    .contact-method:hover {
        transform: translateY(-10px);
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .certifications-grid {
        grid-template-columns: 1fr;
    }

    .activities-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    .hero-btn {
        flex: 1;
        min-width: 220px;
        padding: 14px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-align: center;
        font-weight: bold;
        border-radius: 8px;
        text-decoration: none;
    }

    .whatsapp-btn {
        background: #25d366;
        color: #fff;
    }

    .secondary-btn {
        background: transparent;
        border: 2px solid #359f64;
        color: #359f64;
    }

    .whatsapp-float {
        position: fixed;
        bottom: 25px;
        right: 25px;
        width: 65px;
        height: 65px;
        background: linear-gradient(135deg, #25D366, #1ebe57);
        color: #fff;
        border-radius: 50%;
        text-align: center;
        font-size: 32px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .whatsapp-float:hover {
        transform: scale(1.1) rotate(8deg);
        box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
        color: #fff;
    }

    .whatsapp-float::after {
        content: "تواصل معنا";
        position: absolute;
        right: 75px;
        background: #1a5c3a;
        color: #fff;
        padding: 6px 12px;
        border-radius: 6px;
        font-size: 14px;
        white-space: nowrap;
        opacity: 0;
        transform: translateX(10px);
        transition: all 0.3s ease;
    }

    .whatsapp-float:hover::after {
        opacity: 1;
        transform: translateX(0);
    }

    .banner-subtext a {
        text-decoration: none;
        color: #fff;
    }

    .banner-subtext a:hover {
        color: #25D366;
    }
}

/* عناصر الموبايل داخل القائمة */
.mobile-extra {
    display: none;
}

@media (max-width: 768px) {
    .header-actions {
        display: none;
    }

    .mobile-extra {
        display: block;
        margin-top: 20px;
        border-top: 1px solid #eee;
        padding-top: 15px;
        text-align: center;
    }

    .mobile-company {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-bottom: 15px;
        font-weight: bold;
    }

    .mobile-company img {
        width: 45px;
        border-radius: 6px;
    }

    .mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .mobile-actions .lang-switcher {
        padding: 8px;
        border-radius: 6px;
    }

    .mobile-actions .whatsapp-button {
        background: #25d366;
        color: #fff;
        padding: 10px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
    }
}


/* أنماط إضافية للكروت الفئوية */
.category-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-15px);
}

.category-link {
    margin-top: 15px;
    color: var(--primary-green);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    transition: var(--transition);
}

.category-card:hover .category-link {
    color: var(--accent-orange);
    gap: 12px;
}

.category-link i {
    font-size: 0.9rem;
    transition: var(--transition);
}

.category-card:hover .category-link i {
    transform: translateX(-5px);
}

/* تعديل حجم الكروت الفئوية */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 10px;
}

.product-card.category-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}