/*
Theme Name: Losco Theme
Text Domain: losco
Description: Custom theme converted from Next.js
Version: 1.0
*/


:root {
  --primary:       #3D7A52;
  --primary-dark:  #1B3825;
  --primary-light: #EBF3E8;
  --accent:        #C8920A;
  --btn-green:     #5CB840;
  --white:         #FFFFFF;
  --dark:          #1A1A1A;
  --gray:          #6B7280;
  --border:        #DDE8D6;
  --shadow:        0 4px 24px rgba(0,0,0,0.08);
  --transition:    all 0.3s ease;
}

*,*::before,*::after { box-sizing: border-box; }
html, body { overflow-x: clip; width: 100%; scroll-behavior: smooth; }
@supports not (overflow-x: clip) { html, body { overflow-x: hidden; } }
body { margin: 0; padding: 0; font-family: 'Poppins', 'Cairo', sans-serif; color: var(--dark); line-height: 1.7; }
[lang="ar"] body, [lang="ar"] *,
[dir="rtl"] body, [dir="rtl"] *,
html[dir="rtl"] body, html[dir="rtl"] * { font-family: 'Cairo', 'Poppins', sans-serif !important; }
a, a:hover, a:focus { text-decoration: none; color: inherit; transition: var(--transition); }
button, .btn, .btn-losco, .btn-hero-primary, .btn-hero-outline, .btn-company-profile, .btn-news-all, .biz-btn, .news-read-more, .msb-link, .lang-badge { text-decoration: none !important; }
button:hover, .btn:hover, .btn-losco:hover, .btn-hero-primary:hover, .btn-hero-outline:hover, .btn-company-profile:hover, .btn-news-all:hover, .biz-btn:hover, .news-read-more:hover, .msb-link:hover, .lang-badge:hover { text-decoration: none !important; }
img { max-width: 100%; height: auto; display: block; }

.icon-svg { width: 1.2em; height: 1.2em; display: inline-block; vertical-align: -0.125em; filter: invert(61%) sepia(50%) saturate(601%) hue-rotate(58deg) brightness(97%) contrast(89%); }
.btn-icon .icon-svg, .btn-hero-primary .icon-svg, .btn-hero-outline .icon-svg, .btn-losco .icon-svg { filter: brightness(0) invert(1); }
.footer-links .icon-svg, .footer-contact-row .icon-svg { filter: invert(61%) sepia(50%) saturate(601%) hue-rotate(58deg) brightness(97%) contrast(89%); }

.btn-losco { display: inline-flex; align-items: center; gap: 8px; background: var(--btn-green); color: #fff !important; border: 2px solid var(--btn-green); padding: 12px 30px; border-radius: 8px; font-weight: 600; font-size: 14px; cursor: pointer; transition: var(--transition); white-space: nowrap; }
.btn-losco:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(61,122,82,.3); }

.section-tag { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; color: var(--primary); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
.section-tag::before, .section-tag::after { content: ''; display: inline-block; width: 30px; height: 2px; background: var(--primary); }
.section-heading { font-size: 30px; font-weight: 600; line-height: 1.25; color: var(--dark); }
.section-subheading { font-size: 15px; color: var(--gray); max-width: 560px; margin: 0 auto; line-height: 1.8; }
.about-label { font-size: 14px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.about-label::after { content: ''; display: block; width: 50px; height: 2px; background: var(--primary); }
[dir="rtl"] .about-label::after { display: none; }
[dir="rtl"] .about-label::before { content: ''; display: block; width: 50px; height: 2px; background: var(--primary); order: -1; }


.navbar.navbar-losco { background: transparent; padding: 5px 35px; box-shadow: none; position: fixed; top: 0; left: 0; right: 0; z-index: 9999; transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease; }
.navbar.navbar-losco.scrolled { background: #fff; box-shadow: 0 4px 24px rgba(0,0,0,0.1); padding: 5px 0px 0px 0px; }
.navbar-brand { padding: 0; margin: 0; }
.navbar-brand img { height: 46px; width: auto; }
.navbar-nav .nav-link { font-size: 13px; font-weight: 600; color: var(--dark) !important; padding: 8px 14px !important; position: relative; transition: color 0.2s; letter-spacing: 0.5px; }
.navbar-nav .nav-link::after { content: ''; position: absolute; bottom: 0; left: 14px; right: 14px; height: 2.5px; background: var(--btn-green); transform: scaleX(0); transition: transform 0.25s; border-radius: 2px; }
.navbar-nav .nav-link:hover { color: var(--primary) !important; }
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after { transform: scaleX(1); }

.lang-badge { display: inline-flex; align-items: center; gap: 8px; color: var(--dark); font-size: 14px; font-weight: 500; transition: var(--transition); flex-shrink: 0; }
.lang-badge .lang-icon { width: 34px; height: 34px; border-radius: 8px; background: var(--primary-light); color: var(--primary); display: inline-flex; align-items: center; justify-content: center; font-size: 16px; transition: var(--transition); }
.lang-badge:hover .lang-icon { background: var(--primary); color: #fff; }
.btn-company-profile { display: inline-flex; align-items: center; justify-content: center; background: var(--btn-green); color: #fff !important; border: 2px solid var(--btn-green); padding: 10px 26px; border-radius: 30px; font-weight: 600; font-size: 14px; cursor: pointer; transition: var(--transition); white-space: nowrap; }
.btn-company-profile:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(61,122,82,.3); }

/* Hero */
.hero-section { position: relative; min-height: 88vh; background: #f8faf7; overflow: hidden; display: flex; align-items: stretch; padding: 0; }
.hero-row { min-height: 88vh; position: relative; z-index: 2; }
.hero-content-col { display: flex; align-items: center; padding: 140px 50px 80px 80px; position: relative; }
.hero-content-inner { max-width: 880px; position: relative; z-index: 3; }
[dir="rtl"] .hero-content-col { padding: 140px 80px 80px 50px; }
@media (max-width: 991.98px) { .hero-content-col { padding: 120px 24px 40px; } [dir="rtl"] .hero-content-col { padding: 120px 24px 40px; } }
@media (min-width: 992px) { .hero-content-col-aligned, [dir="rtl"] .hero-content-col-aligned { padding-left: 0; padding-right: 0; } .nav-item.nav-logo-item { padding-left: 25px; padding-right: 25px; }}

.hero-badge { display: inline-block; background: transparent; color: var(--primary); font-size: 12px; font-weight: 600; letter-spacing: 2px; padding: 7px 22px; border-radius: 30px; border: 1.5px solid var(--primary); margin-bottom: 28px; text-transform: uppercase; }
.hero-title { font-size: clamp(34px, 4.4vw, 54px); font-weight: 700; line-height: 1.15; color: var(--dark); margin-bottom: 22px; letter-spacing: -0.5px; }
.hero-title .highlight { color: var(--btn-green); }
.hero-desc { font-size: 15px; color: var(--gray); max-width: 760px; line-height: 1.8; margin-bottom: 36px; }
.btn-hero-primary { display: inline-flex; align-items: center; gap: 12px; background: var(--btn-green); color: #fff !important; border: 2px solid var(--btn-green); padding: 6px 8px 6px 26px; border-radius: 40px; font-weight: 600; font-size: 14px; cursor: pointer; transition: var(--transition); white-space: nowrap; }
[dir="rtl"] .btn-hero-primary { padding: 6px 26px 6px 8px; }
.btn-hero-primary .btn-icon { width: 34px; height: 34px; border-radius: 50%; background: #fff; color: var(--btn-green); display: inline-flex; align-items: center; justify-content: center; font-size: 11px; transition: var(--transition); }
.btn-hero-primary .btn-icon .icon-svg, .btn-hero-outline .btn-icon .icon-svg { width: 14px; height: 14px; }
.biz-btn .icon-svg, .btn-losco .icon-svg, .btn-news-all .icon-svg, .scroll-top .icon-svg { width: 24px; height: 24px; }
.btn-hero-primary:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(61,122,82,.3); }
.btn-hero-outline { display: inline-flex; align-items: center; gap: 12px; background: transparent; color: var(--dark) !important; border: 2px solid transparent; padding: 6px 8px 6px 26px; border-radius: 40px; font-weight: 600; font-size: 14px; cursor: pointer; transition: var(--transition); white-space: nowrap; }
[dir="rtl"] .btn-hero-outline { padding: 6px 26px 6px 8px; }
.btn-hero-outline .btn-icon { width: 34px; height: 34px; border-radius: 50%; background: var(--btn-green); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; transition: var(--transition); }
.btn-hero-outline:hover { color: var(--primary) !important; transform: translateY(-2px); }
.hero-img-col { position: absolute; inset: 0; width: 100%; height: 100%; overflow: hidden; z-index: 0; pointer-events: none; }
.hero-img-col img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-img-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(248,250,247,0.98) 0%, rgba(248,250,247,0.92) 35%, rgba(248,250,247,0.55) 55%, rgba(248,250,247,0.15) 80%, rgba(248,250,247,0) 100%); pointer-events: none; }
[dir="rtl"] .hero-img-overlay { background: linear-gradient(to left, rgba(248,250,247,0.98) 0%, rgba(248,250,247,0.92) 35%, rgba(248,250,247,0.55) 55%, rgba(248,250,247,0.15) 80%, rgba(248,250,247,0) 100%); }
.hero-deco-c { position: absolute; top: -180px; left: -260px; width: 620px; height: 620px; border-radius: 50%; border: 120px solid var(--primary-light); opacity: 0.85; z-index: 1; pointer-events: none; }
[dir="rtl"] .hero-deco-c { left: auto; right: -260px; }
.hero-deco-triangle { position: absolute; top: 180px; left: 40px; width: 90px; height: 90px; z-index: 1; pointer-events: none; }
[dir="rtl"] .hero-deco-triangle { left: auto; right: 40px; }
.hero-deco-triangle::before { content: ''; position: absolute; inset: 0; background: var(--primary-light); clip-path: polygon(0 0, 100% 0, 50% 100%); opacity: 0.9; }
.hero-deco-dots { position: absolute; top: 8px; left: 14px; width: 62px; height: 40px; background-image: radial-gradient(circle, var(--btn-green) 1.6px, transparent 1.6px); background-size: 10px 10px; opacity: 0.7; clip-path: polygon(0 0, 100% 0, 50% 100%); }

/* Sections */
.about-1 { padding: 100px 0; background: #fff; }
.about-img-card { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
.about-img-card img { width: 100%; height: 420px; object-fit: cover; display: block; }
.about-img-card .img-deco { position: absolute; bottom: -20px; right: -20px; width: 100px; height: 100px; background: var(--btn-green); border-radius: 14px; z-index: -1; opacity: 0.3; }
[dir="rtl"] .about-img-card .img-deco { right: auto; left: -20px; }
.about-2 { padding: 100px 0; background: #f3f3f3; }
.about-label-inline { display: inline-block; padding: 0 2px 8px; margin-bottom: 22px; border-bottom: 3px solid var(--btn-green); font-size: 14px; font-weight: 700; color: var(--primary-dark); text-transform: none; letter-spacing: 0.5px; }
.about-label.about-label-inline::before, .about-label.about-label-inline::after, [dir="rtl"] .about-label.about-label-inline::before, [dir="rtl"] .about-label.about-label-inline::after { content: none; display: none; }
.about-title span { color: var(--btn-green); }
.commitment-list { list-style: none; padding: 0; margin: 0 0 30px; }
.commitment-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--dark); line-height: 1.9; margin-bottom: 10px; }

/* Why Section */
.why-section { padding: 50px 0; background: #fff; position: relative; overflow: hidden; }
.why-section::before { content: ''; position: absolute; top: -80px; right: -80px; width: 260px; height: 260px; border-radius: 50%; background: var(--primary-light); opacity: 0.55; z-index: 0; }
[dir="rtl"] .why-section::before { right: auto; left: -80px; }
.why-card { background: #fff; border: 1px solid #eef2eb; border-radius: 18px; padding: 36px 26px; text-align: center; height: 100%; transition: var(--transition); position: relative; overflow: hidden; }
.why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--btn-green); transform: scaleX(0); transition: transform 0.35s ease; }
.why-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(61,122,82,0.14); border-color: transparent; }
.why-card:hover::before { transform: scaleX(1); }
.why-icon { width: 74px; height: 74px; border-radius: 20px; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 28px; transition: var(--transition); }
.why-card:hover .why-icon { background: #DDE8D6; color: #fff; }
.why-title { font-size: 18px; font-weight: 600; color: var(--dark); margin-bottom: 12px; }
.why-text { font-size: 14px; color: var(--gray); line-height: 1.85; margin: 0; }

/* Journey */
.journey-section { position: relative; background: #fff; padding: 0; }
.journey-sticky { position: relative; padding: 90px 0; }
@media (min-width: 992px) {
  .journey-section { height: 400vh; }
  .journey-sticky { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; padding: 60px 0 40px; overflow: hidden; }
  .journey-sticky > .container { width: 100%; }
  /* JS fallback when position: sticky cannot pin (e.g. browser quirk).
     The script below toggles .is-pinned / .is-bottom on .journey-sticky. */
  .journey-section.js-sticky-fallback { position: relative; }
  .journey-section.js-sticky-fallback .journey-sticky { position: absolute; top: 0; left: 0; right: 0; }
  .journey-section.js-sticky-fallback .journey-sticky.is-pinned { position: fixed; top: 0; left: 0; right: 0; }
  .journey-section.js-sticky-fallback .journey-sticky.is-bottom { position: absolute; top: auto; bottom: 0; }
  .nav-item.nav-logo-item { padding-left: 25px; padding-right: 25px;}
}
.heading-underline { display: inline-block; padding-bottom: 8px; border-bottom: 3px solid var(--btn-green); }
.journey-videos { position: relative; border-radius: 18px; overflow: hidden; background: var(--primary-dark); box-shadow: 0 16px 48px rgba(0,0,0,0.18); aspect-ratio: 16/10; max-height: 60vh; }
.journey-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.6s ease; pointer-events: none; }
.journey-video.active { opacity: 1; }
.journey-video-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.35), transparent 45%); pointer-events: none; z-index: 1; }
.timeline { position: relative; }
.timeline::before { content: ''; position: absolute; left: 9px; top: 0; bottom: 0; width: 2px; background: #E5E7EB; }
[dir="rtl"] .timeline::before { left: auto; right: 9px; }
.timeline-progress { position: absolute; left: 9px; top: 0; width: 2px; height: 0; background: var(--btn-green); box-shadow: 0 0 8px rgba(92,184,64,0.45); transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1); z-index: 1; }
[dir="rtl"] .timeline-progress { left: auto; right: 9px; }
.timeline-item { position: relative; padding-left: 38px; padding-bottom: 30px; cursor:pointer;}
[dir="rtl"] .timeline-item { padding-left: 0; padding-right: 38px; }
.timeline-dot { position: absolute; left: 0; top: 3px; width: 20px; height: 20px; border-radius: 50%; border: 3px solid #D1D5DB; background: #fff; transition: var(--transition); z-index: 2; }
[dir="rtl"] .timeline-dot { left: auto; right: 0; }
.timeline-item.active .timeline-dot { background: var(--btn-green); border-color: var(--btn-green); box-shadow: 0 0 0 4px rgba(92,184,64,0.2); }
.timeline-year { font-size: 12px; font-weight: 700; color: var(--btn-green); letter-spacing: 1px; margin-bottom: 3px; }
.timeline-ttl { font-size: 15px; font-weight: 600; color: var(--dark); transition: color 0.2s; }
.timeline-item.active .timeline-ttl { color: var(--primary); }
.journey-card { background: var(--primary-light); border-radius: 14px; padding: 20px 24px; margin-top: 20px; }
.journey-card h5 { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.journey-card h5::before { content: ''; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--btn-green); flex-shrink: 0; }
.journey-card p { font-size: 13.5px; color: var(--gray); margin: 0; line-height: 1.7; }

/* Business Units */
.business-section { padding: 90px 0; background: #f3f3f3; }
.heading-accent { color: var(--btn-green); }
.biz-card { position: relative; background: #fff; border-radius: 18px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); border: 1px solid #eef2eb; transition: var(--transition); height: 100%; display: flex; flex-direction: column; overflow: visible; }
.biz-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(61,122,82,0.14); }
.biz-card-featured { border: 2px solid var(--btn-green); box-shadow: 0 10px 32px rgba(61,122,82,0.14); }
.biz-featured-badge { position: absolute; top: 0; right: 0; background: var(--btn-green); color: #fff; font-size: 13px; font-weight: 600; padding: 7px 20px; border-radius: 0 16px 0 16px; z-index: 3; }
[dir="rtl"] .biz-featured-badge { right: auto; left: 0; border-radius: 16px 0 16px 0; }
.biz-img-wrap { position: relative; border-radius: 18px 18px 0 0; overflow: hidden; }
.biz-img { width: 100%; height: 390px; object-fit: cover; display: block; }
.biz-img-wrap::after { content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 44px; background: #fff; mask: radial-gradient(22px at 50% 0, transparent 98%, #000 100%); }
.biz-body { padding: 18px 28px 28px; flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }
.biz-number { display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--btn-green); font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.biz-number::before, .biz-number::after { content: ''; display: inline-block; width: 24px; height: 2px; background: var(--btn-green); border-radius: 2px; }
.biz-title { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.biz-text { font-size: 14px; color: var(--gray); line-height: 1.75; margin-bottom: 5px; max-width: 320px; }
.biz-logo { margin-bottom: 22px; min-height: 46px; display: flex; align-items: center; justify-content: center; }
.biz-logo img { max-height: 46px; max-width: 150px; object-fit: contain; }
.biz-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 28px; border-radius: 30px; font-size: 13px; font-weight: 600; color: var(--primary); background: #fff; border: 1.5px solid #d7e3d3; transition: var(--transition); text-decoration: none; }
.biz-btn:hover { background: var(--btn-green); border-color: var(--btn-green); color: #fff; }
.biz-btn-primary { background: var(--btn-green); border-color: var(--btn-green); color: #fff; }
.biz-btn-primary:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* Marquee */
.clients-section { padding: 70px 0; background: #fff; }
.client-logo { display: flex; align-items: center; justify-content: center; padding: 16px 20px; filter: grayscale(100%); opacity: 0.55; transition: var(--transition); }
.client-logo:hover { filter: grayscale(0%); opacity: 1; }
.client-logo img { max-height: 55px; max-width: 130px; object-fit: contain; }
.clients-marquee { position: relative; width: 100%; overflow: hidden; mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); }
.clients-track { display: flex; width: max-content; animation: clients-scroll 32s linear infinite; will-change: transform; }
.clients-marquee:hover .clients-track { animation-play-state: paused; }
.clients-group { display: flex; flex-shrink: 0; }
.clients-marquee .client-logo { flex: 0 0 auto; padding: 16px 36px; }
@keyframes clients-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes clients-scroll-rtl { from { transform: translateX(0); } to { transform: translateX(50%); } }
[dir="rtl"] .clients-track { animation-name: clients-scroll-rtl; }

/* News */
.news-section { padding: 90px 0; background: #fff; position: relative; overflow: hidden; }
.news-deco-dots { position: absolute; top: 24px; right: 24px; width: 130px; height: 130px; background-image: radial-gradient(circle, var(--border) 1.5px, transparent 1.5px); background-size: 16px 16px; opacity: 0.8; pointer-events: none; }
[dir="rtl"] .news-deco-dots { right: auto; left: 24px; }
.news-sep { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 8px auto 0; }
.news-sep::before, .news-sep::after { content: ''; width: 48px; height: 2px; background: var(--primary); border-radius: 2px; }
.news-sep span { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); display: block; }
.news-carousel-wrap { display: flex; align-items: center; gap: 16px; overflow:hidden;}
.news-carousel { position: relative; }
.news-track-outer { overflow: hidden; padding: 12px 0; }
.news-track { display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); will-change: transform; }
.news-card-link { display: flex; flex-direction: column; flex: 1; height: 100%; text-decoration: none; color: inherit; }
.news-card-link:hover { color: inherit; }
.news-arrows-row { direction: ltr; display: flex; justify-content: center; align-items: center; gap: 18px; margin-top: 32px; }
.news-card { flex: 0 0 calc(33.333% - 16px); margin: 0 8px; background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: var(--transition); display: flex; flex-direction: column; }
@media(max-width:992px){ .news-card {flex: 0 0 calc(50% - 16px); } }
@media(max-width:576px){ .news-card {flex: 0 0 calc(100% - 16px); } }
.news-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,0.14); }
.news-card--featured { border: 1.5px solid var(--border); }
.news-card-img { position: relative; overflow: hidden; height: 220px; background: var(--primary-light); flex-shrink: 0; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-badge { position: absolute; top: 14px; left: 14px; padding: 4px 12px; border-radius: 6px; font-size: 11px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: #fff; }
[dir="rtl"] .news-badge { left: auto; right: 14px; }
.news-badge--news { background: var(--primary); }
.news-badge--featured { background: var(--primary-dark); }
.news-badge--event { background: var(--accent); }
.news-card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.news-date { font-size: 12px; color: var(--gray); display: flex; align-items: center; gap: 6px; margin: 0 0 10px; }
.news-title { font-size: 16px; font-weight: 700; color: var(--dark); margin: 0 0 10px; line-height: 1.4; }
.news-text { font-size: 13.5px; color: var(--gray); line-height: 1.75; margin: 0 0 18px; flex: 1; }
.news-read-more { font-size: 13px; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); align-self: flex-start; }
.news-arrow { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid #ddd; background: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); }
.news-arrow:hover:not(:disabled) { border-color: var(--primary); background: var(--primary-light); }
.news-arrow:disabled { opacity: 0.3; cursor: not-allowed; }
.btn-news-all { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--primary-dark); border: 1.5px solid var(--primary-dark); padding: 13px 30px; border-radius: 30px; font-size: 14px; font-weight: 600; transition: var(--transition); }
.btn-news-all:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(61,122,82,.25); }

/* Contact */
.contact-section { padding: 90px 0; background: #f8faf7; }
.contact-form-box { background: #fff; border-radius: 20px; padding: 44px; box-shadow: var(--shadow); height: 100%; }
.form-field { border: 1.5px solid var(--border); border-radius: 10px; padding: 13px 18px; font-size: 14px; background: #fafcf9; width: 100%; margin-bottom: 18px; outline:none; transition:var(--transition);}
.form-field:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px rgba(61,122,82,0.1); }
textarea.form-field { resize: vertical; min-height: 140px; }
.map-box { border-radius: 20px; overflow: hidden; height: 100%; min-height: 460px; box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.map-box iframe { width: 100%; height: 100%; border: none; min-height: 460px; display: block; }

/* Footer */
.footer { background: #111; color: rgba(255,255,255,0.78); padding: 80px 0 0; position: relative; overflow: hidden; }
.footer-overlay-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.13; pointer-events: none; }
.footer-logo-img { height: 52px; margin-bottom: 18px; }
.footer-about { font-size: 13.5px; line-height: 1.85; margin-bottom: 22px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer-socials a:hover { background: transparent; transform: translateY(-3px); }
.footer-heading { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 22px; padding-bottom: 12px; position: relative; }
.footer-heading::after { content: ''; position: absolute; bottom: 0; left: 0; width: 38px; height: 2.5px; background: var(--btn-green); }
[dir="rtl"] .footer-heading::after { left: auto; right: 0; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 13.5px; display: inline-flex; align-items: center; gap: 7px; transition: var(--transition); }
.footer-links a:hover { color: #fff; padding-left: 4px; }
[dir="rtl"] .footer-links a:hover { padding-left: 0; padding-right: 4px; }
.footer-contact-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.footer-contact-row span { font-size: 13.5px; line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 60px; padding: 20px 0; text-align: center; font-size: 13px; }

/* Mobile Menu & Misc */
.scroll-top { position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px; background: #ffffff; border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: var(--transition); z-index: 9000; }
[dir="rtl"] .scroll-top { right: auto; left: 28px; }
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--primary); transform: translateY(-3px); }

.mobile-sidebar-backdrop { position: fixed; inset: 0; background: rgba(27, 56, 37, 0.55); backdrop-filter: blur(4px); z-index: 9998; opacity: 0; pointer-events: none; transition: opacity 0.35s ease; }
.mobile-sidebar-backdrop.open { opacity: 1; pointer-events: auto; }
.mobile-sidebar { position: fixed; top: 0; left: 0; height: 100vh; width: min(86vw, 340px); background: #fff; z-index: 9999; transform: translateX(-105%); transition: transform 0.4s; display: flex; flex-direction: column; }
[dir="rtl"] .mobile-sidebar { left: auto; right: 0; transform: translateX(105%); }
.mobile-sidebar.open { transform: translateX(0); }
.mobile-sidebar-head { display: flex; align-items: center; justify-content: space-between; padding: 20px; background: #fff; border-bottom: 1px solid #e5e7eb; }
.mobile-sidebar-brand img { height: 44px; }
.mobile-sidebar-close { width: 42px; height: 42px; background: rgba(0, 0, 0, 0.06); border: none; border-radius: 12px; color: var(--primary-dark); font-size: 24px; cursor: pointer; }
.mobile-sidebar-intro { padding: 18px 22px; border-bottom: 1px solid rgba(0,0,0,0.05); }
.mobile-sidebar-tag { display: inline-block; font-size: 10.5px; font-weight: 700; color: var(--primary); padding: 4px 12px; border: 1.2px solid var(--primary); border-radius: 20px; }
.mobile-sidebar-menu { padding: 18px 14px; display: flex; flex-direction: column; gap: 6px; }
.msb-link { display: block; padding: 12px 14px; border-radius: 14px; color: var(--dark); font-size: 14px; font-weight: 600; text-decoration: none; }
.msb-link.active { color: var(--primary); border-bottom: 2px solid var(--primary); border-radius: 0; }

@media (max-width: 991.98px) {
  .hero-section { min-height: auto; flex-direction: column; }
  .navbar.navbar-losco,
  .navbar.navbar-losco.scrolled { background: #fff; box-shadow: 0 2px 16px rgba(0,0,0,0.05); padding: 10px 0; }
  .mobile-nav-toggle { width: 44px; height: 44px; border: none; background: var(--primary-light); border-radius: 12px; display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; transition: var(--transition); }
  .mobile-nav-toggle:hover { background: var(--primary); }
  .mobile-nav-toggle span { display: block; width: 20px; height: 2.4px; background: var(--primary); border-radius: 2px; transition: var(--transition); }
  .mobile-nav-toggle:hover span { background: #fff; }
  .mobile-nav-brand { position: absolute; left: 50%; transform: translateX(-50%); }
  [dir="rtl"] .mobile-nav-brand { left: auto; right: 50%; transform: translateX(50%); }
  .mobile-nav-brand img { height: 38px; }
  .mobile-nav-lang { width: 44px; height: 44px; border-radius: 12px; background: var(--primary-light); display: inline-flex; align-items: center; justify-content: center; transition: var(--transition); }
  .mobile-nav-lang:hover { background: var(--primary); }
  .mobile-nav-lang .icon-svg { width: 20px; height: 20px; filter: invert(35%) sepia(38%) saturate(560%) hue-rotate(85deg) brightness(92%) contrast(85%); transition: var(--transition); }
  .mobile-nav-lang:hover .icon-svg { filter: brightness(0) invert(1); }
  .journey-sticky { padding: 60px 0; height: auto; position: static; }
  .journey-section { height: auto; }
}
@media (max-width: 767.98px) {
  .hero-title { font-size: clamp(50px, 7vw, 36px) !important; }
  #home .hero-title { font-size: clamp(24px, 6.4vw, 32px) !important; }
  .about-img-card img { height: 280px; }
  .map-box, .map-box iframe { min-height: 320px; }
}

/* ============== About Page ============== */

/* Page Hero */
.page-hero { position: relative; padding: 170px 0 100px; background: #f7faf5; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -180px; right: -180px; width: 460px; height: 460px; border-radius: 50%; border: 110px solid rgba(92,184,64,0.10); pointer-events: none; }
[dir="rtl"] .page-hero::before { right: auto; left: -180px; }
.page-hero::after { content: ''; position: absolute; bottom: 70px; left: 6%; width: 130px; height: 80px; background-image: radial-gradient(circle, var(--btn-green) 1.8px, transparent 1.8px); background-size: 13px 13px; opacity: 0.55; clip-path: polygon(0 0, 100% 0, 50% 100%); pointer-events: none; }
[dir="rtl"] .page-hero::after { left: auto; right: 6%; }
.page-hero-inner { max-width: 640px; position: relative; z-index: 2; }
[dir="rtl"] .page-hero-inner { margin-left: 0; margin-right: 0; }
.page-hero-tag { display: inline-block; font-size: 13px; font-weight: 600; color: var(--primary); padding: 8px 24px; border-radius: 30px; border: 1.5px solid var(--primary); margin-bottom: 26px; }
.page-hero-title { font-size: clamp(28px, 3.8vw, 46px); font-weight: 700; line-height: 1.3; color: var(--dark); margin-bottom: 22px; letter-spacing: -0.3px; }
.page-hero-title span { color: var(--btn-green); }
.page-hero-desc { font-size: 15.5px; color: var(--gray); line-height: 1.95; margin: 0 0 30px; max-width: 600px; }
.page-hero-crumbs { display: inline-flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 600; }
.page-hero-crumbs a { color: var(--primary); transition: var(--transition); }
.page-hero-crumbs a:hover { color: var(--btn-green); }
.page-hero-crumbs .sep { width: 5px; height: 5px; border-radius: 50%; background: var(--btn-green); }
.page-hero-crumbs .current { color: var(--gray); }

/* Intro / Who We Are */
.intro-section { padding: 100px 0; background: #fff; }
.intro-img-stack { position: relative; padding-bottom: 30px; }
.stack-main { position: relative; border-radius: 22px; overflow: hidden; box-shadow: 0 22px 60px rgba(27,56,37,0.18); }
.stack-main img { width: 100%; height: 480px; object-fit: cover; display: block; }
.stack-main::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(27,56,37,0.25) 100%); pointer-events: none; }
.stack-badge { position: absolute; bottom: 0; right: -10px; background: var(--btn-green); color: #fff; padding: 22px 28px; border-radius: 18px; box-shadow: 0 16px 40px rgba(92,184,64,0.35); display: flex; flex-direction: column; align-items: center; line-height: 1.1; min-width: 150px; }
[dir="rtl"] .stack-badge { right: auto; left: -10px; }
.stack-badge .num { font-size: 34px; font-weight: 800; letter-spacing: -1px; }
.stack-badge .lbl { font-size: 12px; font-weight: 500; opacity: 0.95; margin-top: 4px; text-align: center; }

.intro-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; }
.intro-feat { display: flex; gap: 14px; align-items: flex-start; }
.intro-feat .ico { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: var(--primary-light); display: inline-flex; align-items: center; justify-content: center; transition: var(--transition); }
.intro-feat .ico .icon-svg { width: 20px; height: 20px; filter: invert(35%) sepia(38%) saturate(560%) hue-rotate(85deg) brightness(92%) contrast(85%); }
.intro-feat:hover .ico { background: var(--btn-green); }
.intro-feat:hover .ico .icon-svg { filter: brightness(0) invert(1); }
.intro-feat h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin: 0 0 4px; }
.intro-feat p { font-size: 13.5px; color: var(--gray); margin: 0; line-height: 1.65; }

/* CEO Section */
.ceo-section { padding: 100px 0; background: #f8faf7; position: relative; overflow: hidden; }
.ceo-section::before { content: ''; position: absolute; top: -100px; left: -100px; width: 280px; height: 280px; border-radius: 50%; border: 60px solid rgba(92,184,64,0.08); pointer-events: none; }
[dir="rtl"] .ceo-section::before { left: auto; right: -100px; }
.ceo-card { position: relative; background: #fff; border-radius: 26px; padding: 50px 56px; box-shadow: 0 24px 60px rgba(27,56,37,0.10); display: grid; grid-template-columns: 280px 1fr; gap: 50px; align-items: center; max-width: 1080px; margin: 0 auto; }
.ceo-quote-mark { position: absolute; top: 30px; right: 40px; font-family: Georgia, serif; font-size: 110px; line-height: 1; color: var(--primary-light); pointer-events: none; user-select: none; }
[dir="rtl"] .ceo-quote-mark { right: auto; left: 40px; transform: scaleX(-1); }
.ceo-photo-wrap { position: relative; }
.ceo-photo { position: relative; width: 240px; height: 280px; border-radius: 20px; overflow: hidden; margin: 0 auto; }
.ceo-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ceo-photo-frame { position: absolute; top: 14px; left: 14px; right: -14px; bottom: -14px; border-radius: 20px; border: 3px solid var(--btn-green); z-index: -1; pointer-events: none; }
[dir="rtl"] .ceo-photo-frame { left: -14px; right: 14px; }
.ceo-body { position: relative; z-index: 2; }
.ceo-tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--btn-green); margin-bottom: 12px; }
.ceo-title { font-size: clamp(22px, 2.4vw, 28px); font-weight: 700; color: var(--dark); line-height: 1.4; margin: 0 0 18px; }
.ceo-message { font-size: 14.5px; color: var(--gray); line-height: 1.95; margin: 0 0 14px; }
.ceo-sign { display: flex; align-items: center; gap: 14px; margin-top: 24px; padding-top: 22px; border-top: 1px dashed #d7e3d3; }
.ceo-sign-divider { width: 4px; height: 36px; border-radius: 4px; background: var(--btn-green); }
.ceo-sign-name { font-size: 16px; font-weight: 700; color: var(--dark); margin: 0; }
.ceo-sign-role { font-size: 13px; color: var(--gray); margin: 2px 0 0; }

/* Vision / Mission / Values */
.vmv-section { padding: 100px 0; background: #fff; }
.vmv-card { position: relative; background: #fff; border: 1px solid #eef2eb; border-radius: 22px; padding: 44px 32px 36px; height: 100%; transition: var(--transition); overflow: hidden; }
.vmv-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--btn-green); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
[dir="rtl"] .vmv-card::before { transform-origin: right; }
.vmv-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(61,122,82,0.12); border-color: transparent; }
.vmv-card:hover::before { transform: scaleX(1); }
.vmv-num { position: absolute; top: 22px; right: 28px; font-size: 48px; font-weight: 800; color: var(--primary-light); line-height: 1; letter-spacing: -1px; user-select: none; }
[dir="rtl"] .vmv-num { right: auto; left: 28px; }
.vmv-icon { width: 60px; height: 60px; border-radius: 16px; background: var(--primary-light); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: var(--transition); }
.vmv-icon .icon-svg { width: 26px; height: 26px; filter: invert(35%) sepia(38%) saturate(560%) hue-rotate(85deg) brightness(92%) contrast(85%); }
.vmv-card:hover .vmv-icon { background: #D1D5DB; }
.vmv-card:hover .vmv-icon .icon-svg { filter: brightness(0) invert(1); }
.vmv-title { font-size: 22px; font-weight: 700; color: var(--dark); margin: 0 0 12px; }
.vmv-text { font-size: 14.5px; color: var(--gray); line-height: 1.9; margin: 0 0 20px; }
.vmv-points { list-style: none; padding: 0; margin: 0; border-top: 1px dashed #d7e3d3; padding-top: 18px; }
.vmv-points li { position: relative; padding-left: 18px; font-size: 13.5px; color: var(--primary-dark); font-weight: 600; line-height: 1.7; margin-bottom: 8px; }
[dir="rtl"] .vmv-points li { padding-left: 0; padding-right: 18px; }
.vmv-points li::before { content: ''; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--btn-green); }
[dir="rtl"] .vmv-points li::before { left: auto; right: 0; }

/* CTA */
.cta-section { padding: 100px 0 110px; background: #fff; }
.cta-inner { position: relative; background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); border-radius: 26px; padding: 70px 56px; text-align: center; overflow: hidden; box-shadow: 0 24px 60px rgba(27,56,37,0.20); }
.cta-inner::before { content: ''; position: absolute; top: -100px; right: -100px; width: 280px; height: 280px; border-radius: 50%; background: rgba(92,184,64,0.20); pointer-events: none; }
[dir="rtl"] .cta-inner::before { right: auto; left: -100px; }
.cta-inner::after { content: ''; position: absolute; bottom: -120px; left: -80px; width: 260px; height: 260px; border-radius: 50%; border: 40px solid rgba(255,255,255,0.06); pointer-events: none; }
[dir="rtl"] .cta-inner::after { left: auto; right: -80px; }
.cta-title { position: relative; z-index: 2; font-size: clamp(26px, 3vw, 38px); font-weight: 700; color: #fff; margin: 0 0 16px; line-height: 1.3; letter-spacing: -0.5px; }
.cta-title span { color: var(--btn-green); }
.cta-desc { position: relative; z-index: 2; font-size: 15.5px; color: rgba(255,255,255,0.88); line-height: 1.85; max-width: 640px; margin: 0 auto 28px; }
.cta-actions { position: relative; z-index: 2; display: inline-flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.btn-cta-light { display: inline-flex; align-items: center; gap: 10px; background: #fff; color: var(--primary-dark) !important; padding: 13px 28px; border-radius: 30px; font-weight: 600; font-size: 14px; transition: var(--transition); border: 2px solid #fff; white-space: nowrap; }
.btn-cta-light:hover { background: var(--btn-green); border-color: var(--btn-green); color: #fff !important; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(92,184,64,0.4); }
.btn-cta-light .icon-svg { width: 14px; height: 14px; filter: invert(15%) sepia(20%) saturate(1500%) hue-rotate(85deg) brightness(35%) contrast(95%); transition: var(--transition); }
.btn-cta-light:hover .icon-svg { filter: brightness(0) invert(1); }
.btn-cta-ghost { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: #fff !important; padding: 13px 28px; border-radius: 30px; font-weight: 600; font-size: 14px; transition: var(--transition); border: 2px solid rgba(255,255,255,0.5); white-space: nowrap; }
.btn-cta-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-2px); }
.btn-cta-ghost .icon-svg { width: 14px; height: 14px; }

@media (max-width: 991.98px) {
  .ceo-card { grid-template-columns: 1fr; gap: 30px; padding: 40px 32px; text-align: center; }
  .ceo-photo { margin: 0 auto; }
  .ceo-sign { justify-content: center; }
  .stack-main img { height: 380px; }
}
@media (max-width: 767.98px) {
  .page-hero { padding: 130px 0 60px; }
  .intro-section, .ceo-section, .vmv-section { padding: 60px 0; }
  .cta-section { padding: 60px 0 80px; }
  .cta-inner { padding: 50px 28px; }
  .intro-features { grid-template-columns: 1fr; gap: 16px; margin-top: 26px; }
  .stack-main img { height: 300px; }
  .stack-badge { padding: 16px 22px; min-width: 130px; }
  .stack-badge .num { font-size: 28px; }
  .ceo-card { padding: 32px 22px; }
  .ceo-quote-mark { font-size: 80px; top: 14px; right: 22px; }
  [dir="rtl"] .ceo-quote-mark { left: 22px; right: auto; }
  .vmv-card { padding: 36px 26px 30px; }
  .vmv-num { font-size: 40px; top: 18px; right: 22px; }
  [dir="rtl"] .vmv-num { left: 22px; right: auto; }
}

img.icon-svg.social-svg {
    max-width: 18px;
    transition: 0.3s ease;
}

img.icon-svg.social-svg:hover {
    filter: brightness(0) invert(1);
	background: transparent;
}

.biz-btn .icon-svg, .btn-losco .icon-svg, .btn-news-all .icon-svg, .scroll-top .icon-svg:hover {
    filter: brightness(0) invert(1) !important;
}