@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
    --primary: #2E8E68;
    --primary-dark: #215742;
    --primary-darker: #0B1C14;
    --text: #4D4D4D;
    --text-dark: #111111;
    --bg: #FFFFFF;
    --bg-light: #FAFAFA;
    --border: #F2F2F2;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.05);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.8;
    direction: rtl;
    overflow-x: hidden;
}

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

/* Header */
header {
    padding: 20px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.7);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: auto;
    width: 200px;
    display: block;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

/* Navigation */
.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(255,255,255,0.5);
    border: 1px solid var(--border);
    border-radius: 42px;
    padding: 14px 28px;
    backdrop-filter: blur(5px);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 20px;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 32px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.5);
}

.header-end {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Language dropdown */
.lang-dropdown {
    position: relative;
    display: inline-block;
    margin-right: 8px;
}

.lang-dropbtn {
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 12px 18px;
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
    min-width: 70px;
}

.lang-dropbtn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.lang-dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #fff;
    min-width: 130px;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 999;
    overflow: hidden;
}

.lang-dropdown-content.show {
    display: block;
}

.lang-dropdown-content a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: background 0.2s;
}

.lang-dropdown-content a:hover,
.lang-dropdown-content a.active {
    background: #f0f7f4;
    color: var(--primary);
    font-weight: 700;
}

.nav-links a:hover,
.nav-links a.active {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-color: var(--border);
}

.get-in-touch {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 12px 12px 20px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 48px;
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.get-in-touch:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

.get-in-touch .arrow-circle {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-dark);
    cursor: pointer;
    z-index: 1001;
}

.lang-switch {
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
}

/* Hero */
.hero-section {
    padding: 140px 40px 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(46, 142, 104, 0.08) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(33, 87, 66, 0.06) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    animation: float 25s ease-in-out infinite reverse;
}

/* Semi-circles behind hero text */
.hero-semicircles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.hero-semicircles .semi {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
}

.hero-semicircles .s1 {
    width: 400px; height: 400px;
    background: linear-gradient(135deg, #2E8E68 50%, transparent 50%);
    top: -80px; right: -80px;
    animation: spinSemi 6s linear infinite;
}

.hero-semicircles .s2 {
    width: 300px; height: 300px;
    background: linear-gradient(225deg, #3BA87A 50%, transparent 50%);
    bottom: -60px; left: -60px;
    animation: spinSemi 8s linear infinite reverse;
}

.hero-semicircles .s3 {
    width: 200px; height: 200px;
    background: linear-gradient(180deg, #4DB88A 50%, transparent 50%);
    top: 40%; left: 2%;
    animation: spinSemi 5s linear infinite;
}

.hero-semicircles .s4 {
    width: 160px; height: 160px;
    background: linear-gradient(0deg, #5CC89A 50%, transparent 50%);
    top: 15%; right: 35%;
    animation: spinSemi 7s linear infinite reverse;
}

.hero-semicircles .s5 {
    width: 120px; height: 120px;
    background: linear-gradient(90deg, #6DD8AA 50%, transparent 50%);
    bottom: 20%; right: 20%;
    animation: spinSemi 4s linear infinite;
}

.hero-semicircles .s6 {
    width: 80px; height: 80px;
    background: linear-gradient(45deg, #2E8E68 50%, transparent 50%);
    top: 5%; left: 40%;
    animation: spinSemi 3.5s linear infinite reverse;
}

.hero-semicircles .s7 {
    width: 180px; height: 180px;
    background: linear-gradient(270deg, #3BA87A 50%, transparent 50%);
    bottom: 5%; right: 45%;
    animation: spinSemi 9s linear infinite;
}

.hero-semicircles .s8 {
    width: 100px; height: 100px;
    background: linear-gradient(135deg, #5CC89A 50%, transparent 50%);
    top: 25%; left: 5%;
    animation: spinSemi 5.5s linear infinite reverse;
}

@keyframes spinSemi {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-content, .hero-contact-form {
    position: relative;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(1deg); }
    66% { transform: translate(-20px, 20px) rotate(-1deg); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

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

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-title-highlight {
    display: inline-flex;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--text);
    max-width: 550px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Contact Form */
.hero-contact-form {
    background: var(--white);
    padding: 36px;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.hero-form-title {
    text-align: center;
    margin-bottom: 24px;
}

.hero-form-title h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.hero-form-title p {
    font-size: 17px;
    color: var(--text);
    opacity: 0.7;
}

.hero-contact-form .form-group {
    margin-bottom: 16px;
}

.hero-contact-form .form-group label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.hero-contact-form .form-group input,
.hero-contact-form .form-group textarea {
    padding: 15px 18px;
    font-size: 17px;
    border-radius: 12px;
}

.hero-contact-form .form-group textarea {
    height: 120px;
}

.hero-contact-form .form-row {
    gap: 16px;
}

.hero-form-note {
    text-align: center;
    font-size: 14px;
    color: var(--text);
    opacity: 0.5;
    margin-top: 16px;
    line-height: 1.5;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 48px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 56px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: transparent;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 48px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
    height: 56px;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Scroll Indicator */
.scroll-indicator {
    width: 64px;
    height: 64px;
    border-radius: 32px;
    border: 5px solid var(--white);
    padding: 8px;
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto 0;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
}

/* Client Logos */
.client-logos {
    padding: 60px 0;
    background: var(--bg-light);
    overflow: hidden;
}

.client-logos-inner {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.client-logo {
    height: 32px;
    opacity: 0.5;
    filter: grayscale(1);
    transition: all 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* Sections */
.section {
    padding: 100px 0;
}

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

.section-title h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: var(--text);
    max-width: 600px;
    margin: 0 auto;
}

/* Recycle Section */
.recycle-section {
    background: transparent !important;
    overflow: hidden;
    position: relative;
}

.recycle-card {
    background: transparent !important;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: none;
}

.phone-img-large {
    background: transparent !important;
}

.recycle-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.recycle-text-col {
    position: relative;
    z-index: 1;
}

.recycle-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50px;
    padding: 8px 22px;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(46, 142, 104, 0.25);
    margin-bottom: 20px;
}

.recycle-text-col h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.35;
    margin-bottom: 18px;
}

.recycle-text-col p {
    font-size: 16px;
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 28px;
}

.recycle-image-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-img-large {
    width: 450px;
    height: auto;
    display: block;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .recycle-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .recycle-card {
        padding: 30px;
    }
    .recycle-text-col h2 {
        font-size: 26px;
    }
    .recycle-badge {
        margin: 0 auto 20px;
    }
    .recycle-text-col .btn-primary {
        margin: 0 auto;
    }
    .phone-img-large {
        width: 300px;
    }
}

/* Solutions Section */
.solutions-section {
    background: var(--white);
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.solution-card {
    background: var(--bg-light);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    text-align: center;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border-color: var(--primary);
}

.solution-image {
    margin-bottom: 24px;
}

.solution-img-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto;
}

.solution-card h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.solution-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.solution-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text);
    font-weight: 500;
}

.shape-dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    background: var(--primary);
    border-radius: 3px;
    transform: rotate(45deg);
    display: inline-block;
}

/* Mission & Vision Section */
.mission-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f7f4, #e8f5ee);
}

.mission-layout {
    display: flex;
    align-items: center;
    gap: 50px;
}

.mission-text-side {
    flex: 1;
    text-align: right;
}

.mission-text-side .section-heading {
    font-size: 34px;
    margin-bottom: 14px;
}

.mission-sub {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    max-width: 460px;
}

.mission-cards-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mission-rect {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 24px 28px;
    transition: all 0.3s ease;
}

.mission-rect:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.mission-rect h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.mission-rect p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .mission-layout { flex-direction: column; gap: 30px; }
    .mission-text-side { text-align: center; }
    .mission-text-side .section-heading { font-size: 28px; }
    .mission-sub { max-width: 100%; }
}

@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    .solution-card {
        padding: 28px;
    }
}

/* Clients Section */
.clients-section {
    padding: 60px 0 80px;
    background: var(--white);
    overflow: hidden;
}

.clients-section .section-title {
    margin-bottom: 40px;
}

.clients-track-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

.clients-track {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.clients-track-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: scroll-clients 20s linear infinite;
    padding: 0 20px;
}

.client-brand {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    opacity: 0.3;
    white-space: nowrap;
    transition: opacity 0.3s ease;
    letter-spacing: 1px;
}

.client-brand:hover {
    opacity: 0.7;
}

.clients-track-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: scroll-clients 20s linear infinite;
    padding: 0 20px;
}

@keyframes scroll-clients {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* About Section */
.about-section {
    background: var(--bg-light);
}

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

.about-image {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.about-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.about-text h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text);
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Stats */
.stats-section {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 30px 0;
    color: var(--white);
    overflow: hidden;
}

.stats-grid {
    display: flex;
    gap: 60px;
    text-align: center;
    white-space: nowrap;
    animation: scrollStats 20s linear infinite;
    width: max-content;
}

@keyframes scrollStats {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.stat-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    min-width: 160px;
}

.stat-item h4 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 2px;
}

.stat-item p {
    font-size: 18px;
    opacity: 0.8;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: var(--white);
}

.service-card h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text);
    font-size: 15px;
    line-height: 1.7;
}

/* Page Header */
.page-header {
    background: var(--bg-light);
    padding: 160px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: var(--text);
    max-width: 500px;
    margin: 0 auto;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-light);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--primary);
}

.contact-item-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    flex-shrink: 0;
}

.contact-item-text h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contact-item-text p {
    color: var(--text);
    font-size: 15px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.contact-form h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    background: var(--bg-light);
    transition: border-color 0.3s ease;
    direction: rtl;
}

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

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-btn {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

/* Footer */
footer {
    background: transparent;
    color: var(--text-dark);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.footer-col p {
    opacity: 0.7;
    font-size: 15px;
    line-height: 2;
    color: var(--text);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text);
    opacity: 0.7;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
    padding-right: 5px;
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    opacity: 0.6;
    color: var(--text);
}

/* Services Page Extra */
.services-page .services-grid {
    margin-top: 40px;
}

/* Process Steps */
.process {
    background: var(--bg-light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    counter-reset: step;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    right: calc(50% + 60px);
    width: calc(100% - 120px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--border));
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
}

.process-step h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-wrapper {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        background: rgba(255,255,255,0.98);
        border-radius: 0;
        padding: 100px 20px 40px;
        z-index: 1000;
        backdrop-filter: blur(20px);
    }

    .nav-wrapper.open {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-contact-form {
        max-width: 100%;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-section {
        padding: 120px 20px 60px;
        min-height: auto;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 992px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    header {
        padding: 15px 20px;
    }
}

@media (max-width: 768px) {
    .hero-grid {
        gap: 30px;
    }

    .hero-title {
        font-size: 30px;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .hero-contact-form {
        padding: 24px;
    }

    .hero-contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .hero-contact-form .form-group textarea {
        height: 80px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 25px;
    }

    .stats-grid {
        gap: 20px;
    }

    .stat-item h4 {
        font-size: 36px;
    }

    .get-in-touch span {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .client-logo {
        height: 24px;
    }
}

.success-bar {
    background: #2E8E68;
    color: #fff;
    text-align: center;
    padding: 16px 20px;
    font-size: 18px;
    font-weight: 600;
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(46,142,104,0.3);
    animation: fadeOut 4s ease forwards;
}

@keyframes fadeOut {
    0%, 60% { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal-box {
    background: #fff;
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    direction: rtl;
}

.modal-icon {
    font-size: 56px;
    margin-bottom: 16px;
}

.modal-box h2 {
    font-size: 24px;
    color: #2E8E68;
    font-weight: 800;
    margin-bottom: 28px;
    line-height: 1.5;
}

.modal-btn {
    background: #2E8E68;
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
}

.modal-btn:hover {
    background: #215742;
}

/* ===== Bekia-Inspired Services Page ===== */

/* New Services Hero with animated circles */
.services-hero-new {
    padding: 140px 20px 80px;
    text-align: center;
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
}

.services-hero-new .circles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.services-hero-new .circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
}

.services-hero-new .c1 {
    width: 400px; height: 400px;
    background: #2E8E68;
    top: -120px; right: -80px;
    animation: floatCircle 12s ease-in-out infinite;
}

.services-hero-new .c2 {
    width: 280px; height: 280px;
    background: #3BA87A;
    bottom: -80px; left: -60px;
    animation: floatCircle 14s ease-in-out infinite reverse;
}

.services-hero-new .c3 {
    width: 180px; height: 180px;
    background: #4DB88A;
    top: 15%; left: 5%;
    animation: floatCircle 10s ease-in-out infinite 2s;
}

.services-hero-new .c4 {
    width: 120px; height: 120px;
    background: #5CC89A;
    bottom: 10%; right: 10%;
    animation: floatCircle 9s ease-in-out infinite 1s;
}

.services-hero-new .c5 {
    width: 90px; height: 90px;
    background: #6DD8AA;
    top: 40%; right: 35%;
    animation: floatCircle 11s ease-in-out infinite 3s;
}

.services-hero-new .c6 {
    width: 60px; height: 60px;
    background: #7EE8BA;
    bottom: 35%; left: 30%;
    animation: floatCircle 8s ease-in-out infinite 4s;
}

.services-hero-new .c7 {
    width: 150px; height: 150px;
    background: #2E8E68;
    top: 60%; right: 2%;
    animation: floatCircle 13s ease-in-out infinite 1.5s;
}

.services-hero-new .c8 {
    width: 70px; height: 70px;
    background: #3BA87A;
    top: 5%; left: 20%;
    animation: floatCircle 7.5s ease-in-out infinite 2.5s;
}

@keyframes floatCircle {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -25px) scale(1.06); }
    50% { transform: translate(-15px, 15px) scale(0.94); }
    75% { transform: translate(25px, 20px) scale(1.03); }
}

.services-hero-new .services-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.services-hero-new .hero-badge {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #2E8E68;
    background: rgba(46, 142, 104, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.services-hero-new h1 {
    font-size: 44px;
    font-weight: 900;
    color: #111;
    margin-bottom: 18px;
    line-height: 1.2;
}

.services-hero-new p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .services-hero-new { padding: 120px 20px 60px; min-height: auto; }
    .services-hero-new h1 { font-size: 30px; }
    .services-hero-new p { font-size: 16px; }
}

/* ===== Features Section (image on right) ===== */
.features-section {
    padding: 80px 0;
    background: #fff;
}

.features-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.features-text {
    flex: 1;
    max-width: 480px;
}

.features-sub {
    font-size: 17px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.7;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f8fbf9;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateX(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

.feature-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border-radius: 14px;
    background: linear-gradient(135deg, #2E8E68, #215742);
}

.feature-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 2px;
}

.feature-item p {
    font-size: 14px;
    color: #888;
}

.features-btn {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, #2E8E68, #215742);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
}

.features-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46,142,104,0.3);
}

.features-image {
    flex: 1.4;
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-image img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 20px;
}

/* ===== Individuals Section ===== */
.individuals-section {
    padding: 80px 0;
    background: #f8fbf9;
    text-align: center;
}

.section-sub {
    font-size: 17px;
    color: #666;
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.ind-cards, .comp-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

.ind-card, .comp-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 32px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.ind-card:hover, .comp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.ind-icon, .comp-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    border-radius: 16px;
    background: linear-gradient(135deg, #e8f5ee, #f0faf5);
}

.ind-card h4, .comp-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.ind-card p, .comp-card p {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
}

.section-btn-wrap {
    text-align: center;
}

.action-btn {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #2E8E68, #215742);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46,142,104,0.3);
}

/* ===== Companies Section ===== */
.companies-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

/* ===== Responsive for new sections ===== */
@media (max-width: 1024px) {
    .features-layout { gap: 40px; }
    .ind-cards, .comp-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .features-layout { flex-direction: column-reverse; gap: 30px; }
    .features-image img { max-height: 300px; }
    .ind-cards, .comp-cards { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 480px) {
    .ind-cards, .comp-cards { grid-template-columns: 1fr; }
}

.services-hero {
    padding: 140px 20px 60px;
    text-align: center;
    background: linear-gradient(180deg, #f0f7f4 0%, #fff 100%);
}

.services-hero h1 {
    font-size: 48px;
    font-weight: 900;
    color: #111;
    margin-bottom: 16px;
    line-height: 1.15;
}

.services-hero p {
    font-size: 20px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #2E8E68;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-heading {
    font-size: 36px;
    font-weight: 800;
    color: #111;
    margin-bottom: 16px;
    line-height: 1.2;
}

.services-section {
    padding: 80px 0;
    text-align: center;
}

.services-grid-bekia {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.service-card-bekia {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
}

.service-card-bekia:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.service-icon-wrap {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border-radius: 16px;
    background: linear-gradient(135deg, #e8f5ee, #f0faf5);
}

.service-card-bekia h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.service-card-bekia p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Collect Section */
.collect-section {
    padding: 80px 0;
    background: #f8fbf9;
    text-align: center;
}

.collect-desc {
    font-size: 17px;
    color: #666;
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.collect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.collect-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #f0f0f0;
    text-align: right;
    transition: all 0.3s ease;
}

.collect-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.collect-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 14px;
    background: linear-gradient(135deg, #2E8E68, #215742);
}

.collect-info h4 {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
}

.collect-info p {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    text-align: center;
}

.process-desc {
    font-size: 17px;
    color: #666;
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.process-grid-bekia {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-step-bekia {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 36px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.process-step-bekia:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
}

.step-num {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    border-radius: 50%;
    background: linear-gradient(135deg, #2E8E68, #215742);
}

.process-step-bekia h4 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.process-step-bekia p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid-bekia {
        grid-template-columns: repeat(3, 1fr);
    }
    .process-grid-bekia {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-hero h1 { font-size: 34px; }
    .services-hero p { font-size: 17px; }
    .section-heading { font-size: 28px; }
    .services-grid-bekia {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .collect-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .collect-item {
        flex-direction: column;
        text-align: center;
    }
    .process-grid-bekia {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .services-grid-bekia {
        grid-template-columns: 1fr;
    }
    .collect-grid {
        grid-template-columns: 1fr;
    }
    .process-grid-bekia {
        grid-template-columns: 1fr;
    }
}
