/* =========================================================
   Accounting.sa — "Fresh Finance" Theme
   Light, modern, lead-focused. RTL/LTR aware.
   ========================================================= */

:root {
    --primary: #0e7490;      /* teal-700 */
    --primary-dark: #155e75; /* teal-800 */
    --deep: #134e4a;         /* teal-900 */
    --accent: #10b981;       /* emerald-500 */
    --accent-2: #8b5cf6;     /* violet-500 */
    --gold: #f59e0b;
    --ink: #1e2a3a;
    --muted: #5f7186;
    --soft: #f2f9f7;
    --line: #e6f0ee;
    --white: #ffffff;
    --grad: linear-gradient(35deg, #246247 0%, #66984b 55%, #119b8a 120%);
	--grad-soft: linear-gradient(135deg, #ffffff 0%, #ffffff00 100%);
    --grad-gold: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
}

html {
    scroll-padding-top: 90px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
    color: var(--ink);
    overflow-x: hidden;
    background: var(--white);
    font-size: 1.02rem;
    line-height: 1.7;
}

body.lang-en {
    font-family: 'Plus Jakarta Sans', 'Cairo', system-ui, sans-serif;
}

.text-accent { color: var(--accent); }
.text-gradient {
    background: linear-gradient(120deg, #0f6c34, #c5a257, #29674b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ---------- Buttons ---------- */
.btn-accent {
    background: var(--grad);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 14px;
    padding: .65rem 1.7rem;
    transition: all .3s ease;
    box-shadow: 0 8px 22px rgba(13, 148, 136, .30);
}
.btn-accent:hover,
.btn-accent:focus {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(13, 148, 136, .45);
}
.btn-outline-accent {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
    font-weight: 700;
    border-radius: 14px;
    padding: .6rem 1.6rem;
    transition: all .3s;
}
.btn-outline-accent:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-3px);
}
.outline-light { border: 2px solid #fff; }
.btn-light { border-radius: 14px; font-weight: 700; color: var(--deep); }
.btn-pulse { position: relative; overflow: hidden; }
.btn-pulse::after {
    content: '';
    position: absolute;
    top: 0; left: -75%;
    width: 50%; height: 100%;
    background: rgba(255,255,255,.35);
    transform: skewX(-20deg);
    animation: shine 3s infinite;
}
@keyframes shine { 0% { left: -75%; } 60%, 100% { left: 125%; } }

/* ---------- Top Bar ---------- */
.topbar { background: #083673; color: #d6f4ef; font-size: .85rem; padding: .55rem 0; position: relative; z-index: 1031; }
.topbar a { color: #e0f7f3; text-decoration: none; margin-inline-end: 1.2rem; transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar .bi { color: #5eead4; margin-inline-end: .4rem; }
.topbar-social a { margin-inline-end: .6rem; }
.lang-switch { display: inline-flex; margin-inline-start: .8rem; padding-inline-start: .8rem; border-inline-start: 1px solid rgba(255,255,255,.25); }
.lang-link { background: rgba(255,255,255,.15); border-radius: 8px; padding: .2rem .6rem; font-weight: 800; color: #fff !important; border: 1px solid rgba(255,255,255,.3); }
.lang-link:hover { background: #fff; color: var(--primary-dark) !important; }

/* ---------- Navbar ---------- */
.navbar { z-index: 1030; padding: .7rem 0; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); transition: box-shadow .3s; }
.nav-scrolled { box-shadow: 0 8px 26px rgba(15, 78, 74, .10); }
.navbar-brand { display: flex; align-items: center; gap: .6rem; }
.brand-logo-wrap { width: 46px; height: 46px; border-radius: 14px; padding: 3px; background: var(--grad-soft); display: grid; place-items: center; }
.brand-logo { width: 40px; height: 40px; object-fit: contain; border-radius: 10px; }
.brand-text { font-weight: 800; font-size: 1.1rem; color: var(--deep); line-height: 1.15; }
.navbar-nav .nav-link { color: var(--ink); font-weight: 700; margin-inline: .3rem; position: relative; }
.navbar-nav .nav-link::after { content: ''; position: absolute; bottom: 2px; inset-inline: .5rem; height: 3px; border-radius: 3px; background: var(--accent); transform: scaleX(0); transition: transform .25s ease; }
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after { transform: scaleX(1); }
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--primary-dark); }
.navbar .btn-accent { padding: .5rem 0.3rem; white-space: nowrap; }
.navbar-toggler { border: none; }
.navbar-toggler:focus { box-shadow: none; }
@media (max-width: 991px) {
    .navbar .btn-accent { width: 12%; margin-block: .5rem; }
    .navbar-nav { text-align: center; padding: 1rem 0; }
    .navbar-nav .nav-link::after { display: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--grad-soft); padding: 5rem 0 6rem; overflow: hidden; }
.hero-mesh { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; z-index: 0; }
.mesh-1 { width: 430px; height: 430px; background: #246247; top: -120px; inset-inline-end: -100px; }
.mesh-2 { width: 380px; height: 380px; background: #fff3cd; bottom: -140px; inset-inline-start: -120px; opacity: .4; }
.hero-container { position: relative; z-index: 2; }
.hero-badge { background: #fff; color: var(--primary-dark); font-weight: 700; padding: .55rem 1.1rem; border-radius: 50px; box-shadow: 0 6px 18px rgba(13,148,136,.15); }
.hero-badge .bi { color: var(--gold); }
.hero-title { font-size: clamp(2rem, 4.6vw, 3.2rem); font-weight: 900; line-height: 1.3; color: var(--deep); margin: 1.2rem 0 1rem; }
.hero-sub { font-size: 1.12rem; color: #45617a; max-width: 560px; margin: 0 auto 2rem; }
@media (min-width: 992px) { .hero-sub { margin: 0 0 2rem; } }
.hero-content .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(201, 162, 39, 0.2);
    border: 1px solid rgba(201, 162, 39, 0.5);
    color: #F3D77C;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: var(--radius-pill);
    margin-bottom: 22px;
}
.hero-rating {     display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(201, 162, 39, 0.2);
    border: 1px solid rgba(201, 162, 39, 0.5);
    color: #F3D77C;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: var(--radius-pill);
    margin-bottom: 22px; }
.rating-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.hero-rating strong { display: block; color: var(--deep); font-size: .95rem; line-height: 1.2; }
.hero-rating span { color: var(--muted); font-size: .82rem; }
.hero-trust { display: flex; gap: 1.8rem; flex-wrap: wrap; justify-content: center; }
@media (min-width: 992px) { .hero-trust { justify-content: flex-start; } }
.trust-item { display: flex; flex-direction: row; align-items: center; }
.trust-num { font-size: 1.9rem; font-weight: 900; color: var(--primary-dark); }
.trust-plus { font-size: 1.4rem; font-weight: 900; color: var(--accent); }
.trust-label { font-size: .85rem; color: var(--muted); }

/* Quote card (hero lead form) */
.quote-card { background: #fff; border-radius: 26px; padding: 1.8rem; box-shadow: 0 26px 60px rgba(13,148,136,.20); position: relative; overflow: hidden; }
.quote-card::before { content: ''; position: absolute; top: 0; inset-inline: 0; height: 6px; background: var(--grad); }
.quote-head { display: flex; gap: .9rem; align-items: center; margin-bottom: 1.4rem; }
.quote-icon { width: 56px; height: 56px; flex-shrink: 0; border-radius: 16px; background: var(--grad); color: #fff; display: grid; place-items: center; font-size: 1.6rem; box-shadow: 0 8px 20px rgba(13,148,136,.35); }
.quote-head h3 { font-weight: 900; color: var(--deep); font-size: 1.35rem; margin: 0; }
.quote-head p { color: var(--muted); font-size: .88rem; margin: 0; }
.quote-form .form-label { font-weight: 700; color: var(--deep); font-size: .9rem; }
.quote-note { text-align: center; font-size: .82rem; color: var(--muted); margin-top: .8rem; }
.quote-note .bi { color: var(--accent); }

.form-control, .form-select { border-radius: 12px; padding: .75rem 1rem; border: 1.5px solid var(--line); background: #fbfdfd; }
.form-control:focus, .form-select:focus { border-color: var(--accent); box-shadow: 0 0 0 .2rem rgba(16,185,129,.15); }
.form-label { font-weight: 600; color: var(--deep); }

/* ---------- Marquee ---------- */
.marquee-section { padding: 2.5rem 0; background: #fff; }
.marquee-label { text-align: center; color: var(--muted); font-weight: 700; margin-bottom: 1.5rem; letter-spacing: 1px; text-transform: uppercase; font-size: .82rem; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent); mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent); }
.marquee-track { display: flex; width: max-content; animation: scroll 32s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-group { display: flex; align-items: center; gap: 2.5rem; padding-inline: 1.25rem; }
.marquee-item { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.marquee-logo {
    height: 70px;
    width: auto;
    max-width: 170px;
    object-fit: contain;
    filter: grayscale(1) opacity(.55);
    transition: filter .3s ease, transform .3s ease;
}
.marquee-logo:hover { filter: grayscale(0) opacity(1); transform: scale(1.06); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
[dir="rtl"] .marquee-track { animation-direction: reverse; }

/* ---------- Sections ---------- */
.section { padding: 5.5rem 0; }
.section-tint { background: var(--soft); }
.section-tag { display: inline-block; background: rgba(16,185,129,.14); color: #0f766e; font-weight: 800; font-size: .85rem; letter-spacing: .6px; text-transform: uppercase; padding: .45rem 1.1rem; border-radius: 50px; margin-bottom: 1rem; }
.section-title { font-weight: 900; color: var(--deep); font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 1rem; line-height: 1.35; }
.section-sub { color: var(--muted); font-size: 1.1rem; max-width: 660px; margin: 0 auto; line-height: 1.8; }
.section-text { color: var(--muted); line-height: 1.9; margin-bottom: 1.5rem; }

/* ---------- About ---------- */
.about-img-wrap { position: relative; max-width: 430px; margin-inline: auto; }
.about-img-frame { border-radius: 26px; padding: 12px; background: #fff; border: 1px solid var(--line); box-shadow: 0 22px 50px rgba(13,148,136,.16); }
.about-img { width: 100%; height: 460px; object-fit: cover; border-radius: 18px; display: block; }
.exp-badge { position: absolute; bottom: -18px; inset-inline-start: -10px; background: var(--grad); color: #fff; border-radius: 18px; padding: .9rem 1.2rem; display: flex; align-items: center; gap: .6rem; box-shadow: 0 14px 30px rgba(13,148,136,.4); }
.exp-num { font-size: 2.2rem; font-weight: 900; line-height: 1; }
.exp-txt { font-weight: 700; line-height: 1.3; font-size: .9rem; }
.float-chip { position: absolute; top: 26px; inset-inline-end: -8px; background: #fff; border-radius: 14px; padding: .7rem 1rem; display: flex; align-items: center; gap: .7rem; box-shadow: 0 16px 40px rgba(13,148,136,.22); animation: float 4s ease-in-out infinite; }
.float-chip .bi { font-size: 1.5rem; color: var(--accent); }
.float-chip strong { display: block; font-size: .92rem; color: var(--deep); }
.float-chip span { font-size: .75rem; color: var(--muted); }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.about-list { list-style: none; padding: 0; margin-bottom: 2rem; }
.about-list li { margin-bottom: .9rem; font-weight: 600; display: flex; gap: .5rem; align-items: flex-start; }
.about-list .bi { color: var(--accent); margin-top: .3rem; }

/* ---------- Services (numbered cards) ---------- */
.service-card { background: #fff; border-radius: 22px; padding: 2rem 1.6rem; height: 100%; border: 1px solid var(--line); transition: all .35s ease; position: relative; overflow: hidden; }
.service-card::after { content: ''; position: absolute; bottom: 0; inset-inline: 0; height: 5px; background: var(--grad); transform: scaleX(0); transition: transform .35s ease; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 44px rgba(13,148,136,.14); }
.service-card:hover::after { transform: scaleX(1); }
.service-num { position: absolute; top: 1.1rem; inset-inline-end: 1.3rem; font-size: 2.6rem; font-weight: 900; color: rgba(13,148,136,.10); line-height: 1; }
.service-icon { width: 60px; height: 60px; border-radius: 16px; background: var(--grad-soft); color: var(--primary-dark); display: grid; place-items: center; font-size: 1.6rem; margin-bottom: 1.2rem; transition: all .35s ease; }
.service-card:hover .service-icon { background: var(--grad); color: #fff; }
.service-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--deep); margin-bottom: .7rem; }
.service-card p { color: var(--muted); font-size: .95rem; line-height: 1.8; }
.service-link { color: var(--primary-dark); font-weight: 800; text-decoration: none; font-size: .95rem; }
.service-link .bi { transition: transform .2s; }
.service-link:hover { color: var(--accent); }
.service-link:hover .bi { transform: translateX(4px); }
[dir="rtl"] .service-link:hover .bi { transform: translateX(-4px); }

/* ---------- Process steps ---------- */
.step-card { text-align: center; padding: 2rem 1.4rem 2.4rem; position: relative; background: #fff; border-radius: 22px; border: 1px solid var(--line); height: 100%; transition: all .3s; }
.step-card:hover { transform: translateY(-8px); box-shadow: 0 20px 44px rgba(13,148,136,.14); }
.step-num { position: absolute; top: -18px; inset-inline-start: 50%; width: 44px; height: 44px; transform: translateX(50%); background: var(--grad-gold); color: #fff; font-weight: 900; border-radius: 50%; display: grid; place-items: center; font-size: 1.2rem; box-shadow: 0 8px 18px rgba(245,158,11,.4); }
.step-icon { width: 74px; height: 74px; border-radius: 50%; background: var(--grad-soft); color: var(--primary-dark); display: grid; place-items: center; font-size: 1.8rem; margin: 1rem auto 1rem; }
.step-card h4 { font-weight: 800; color: var(--deep); margin-bottom: .6rem; font-size: 1.1rem; }
.step-card p { color: var(--muted); font-size: .92rem; line-height: 1.8; }
.step-line { margin-top: 1.2rem; height: 4px; width: 60px; margin-inline: auto; border-radius: 4px; background: var(--grad); }

/* ---------- Segments ---------- */
.seg-card { background: #fff; border-radius: 22px; overflow: hidden; height: 100%; border: 1px solid var(--line); transition: all .35s ease; box-shadow: 0 10px 24px rgba(13,148,136,.06); }
.seg-card:hover { transform: translateY(-8px); box-shadow: 0 20px 44px rgba(13,148,136,.14); }
.seg-img { width: 100%; height: 240px; object-fit: cover; }
.seg-body { padding: 1.6rem 1.8rem 2.2rem; text-align: center; }
.seg-body h3 { font-weight: 900; color: var(--deep); margin-bottom: .6rem; }
.seg-body p { color: var(--muted); line-height: 1.8; }

/* ---------- Stats Strip ---------- */
.stats-strip { background: var(--grad); padding: 4rem 0; color: #fff; }
.stat-box { text-align: center; }
.stat-box i { font-size: 2.4rem; color: #99f6e4; margin-bottom: .6rem; }
.stat-num { font-size: 2.6rem; font-weight: 900; }
.stat-plus { font-size: 2rem; font-weight: 900; color: #99f6e4; }
.stat-box p { color: rgba(255,255,255,.85); font-weight: 700; margin: .2rem 0 0; }

/* ---------- Testimonials ---------- */
.testimonial { background: #fff; border-radius: 24px; padding: 2.6rem; max-width: 780px; margin: 0 auto; text-align: center; border: 1px solid var(--line); box-shadow: 0 14px 34px rgba(13,148,136,.08); position: relative; }
.quote-mark { width: 54px; height: 54px; border-radius: 50%; background: var(--grad); color: #fff; font-size: 1.9rem; display: grid; place-items: center; margin: 0 auto 1.2rem; }
.stars { color: var(--gold); margin-bottom: 1.2rem; font-size: 1.2rem; letter-spacing: 2px; }
.testimonial > p { font-size: 1.12rem; color: var(--ink); font-style: italic; line-height: 1.9; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; justify-content: center; gap: .8rem; }
.avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-size: 1.3rem; }
.testi-author strong { display: block; color: var(--deep); }
.testi-author span { color: var(--muted); font-size: .85rem; }
.carousel-control-prev, .carousel-control-next { filter: invert(40%); width: 8%; }

/* ---------- FAQ ---------- */
.accordion-item { border: 1px solid var(--line); border-radius: 16px !important; overflow: hidden; margin-bottom: 1rem; box-shadow: 0 4px 14px rgba(13,148,136,.05); }
.accordion-button { font-weight: 800; color: var(--deep); padding: 1.1rem 1.4rem; background: #fff; font-size: 1.02rem; }
.accordion-button:not(.collapsed) { background: var(--grad-soft); color: var(--primary-dark); box-shadow: none; }
.accordion-button:focus { box-shadow: none; border-color: transparent; }
.accordion-body { color: var(--muted); line-height: 1.9; padding: 1.2rem 1.4rem 1.4rem; }

/* ---------- CTA Banner ---------- */
.cta-banner { background: var(--grad); padding: 4.5rem 0; position: relative; overflow: hidden; }
.cta-banner::after { content: ''; position: absolute; inset-inline-end: -70px; top: -70px; width: 240px; height: 240px; border-radius: 50%; background: rgba(255,255,255,.14); }
.cta-banner::before { content: ''; position: absolute; inset-inline-start: -70px; bottom: -90px; width: 260px; height: 260px; border-radius: 50%; background: rgba(255,255,255,.10); }
.cta-content { text-align: center; color: #fff; position: relative; z-index: 2; }
.cta-content h2 { font-weight: 900; font-size: clamp(1.8rem, 3.4vw, 2.4rem); }
.cta-content p { font-size: 1.15rem; font-weight: 600; opacity: .92; }

/* ---------- Contact ---------- */
.contact-info { margin-top: 1.5rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.3rem; align-items: center; }
.contact-item i { width: 48px; height: 48px; background: var(--grad-soft); color: var(--primary-dark); border-radius: 14px; display: grid; place-items: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-item strong { display: block; color: var(--deep); }
.contact-item span { color: var(--muted); font-size: .92rem; }
.contact-form-wrap { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 2.5rem; box-shadow: 0 16px 40px rgba(13,148,136,.10); }

/* ---------- Footer ---------- */
.footer { background: #040b3b; color: #b0d4cc; padding: 4rem 0 0; }
.footer .navbar-brand { margin-bottom: 1.2rem; }
.footer .brand-logo-wrap { background: rgba(255,255,255,.12); }
.footer .brand-text { color: #fff; }
.footer p { font-size: .92rem; line-height: 1.9; }
.footer h5 { color: #fff; font-weight: 800; margin-bottom: 1.2rem; font-size: 1.05rem; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: .7rem; }
.footer ul a { color: #b0d4cc; text-decoration: none; transition: color .2s, padding .2s; }
.footer ul a:hover { color: #5eead4; padding-inline-start: 5px; }
.footer-social { display: flex; gap: .8rem; margin-top: 1.2rem; }
.footer-social a { width: 40px; height: 40px; background: rgba(255,255,255,.10); border-radius: 10px; display: grid; place-items: center; color: #b0d4cc; text-decoration: none; transition: all .3s; }
.footer-social a:hover { background: var(--accent); color: #fff; transform: translateY(-3px); }
.footer-newsletter-p { margin-bottom: 1rem; }
.newsletter-form { display: flex; gap: .5rem; }
.newsletter-form .form-control { border: none; background: rgba(255,255,255,.1); color: #fff; }
.newsletter-form .form-control::placeholder { color: #8fbab1; }
.newsletter-form .btn { padding: .6rem .9rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 3rem; padding: 1.5rem 0; text-align: center; font-size: .88rem; color: #7faaa0; }
.footer-bottom p { margin: 0; }

/* ---------- Floating buttons ---------- */
.whatsapp-float { position: fixed; bottom: 25px; inset-inline-start: 25px; width: 56px; height: 56px; background: #25d366; color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: 1.8rem; text-decoration: none; z-index: 1001; box-shadow: 0 8px 24px rgba(37,211,102,.45); animation: waPulse 2s infinite; }
.whatsapp-float:hover { color: #fff; transform: scale(1.08); }
@keyframes waPulse { 0% { box-shadow: 0 8px 24px rgba(37,211,102,.45); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
.back-to-top { position: fixed; bottom: 25px; inset-inline-end: 25px; width: 48px; height: 48px; background: var(--deep); color: #fff; border-radius: 14px; display: grid; place-items: center; text-decoration: none; font-size: 1.3rem; opacity: 0; transform: translateY(20px); transition: all .3s ease; z-index: 1000; box-shadow: 0 8px 20px rgba(19,78,74,.3); }
.back-to-top.show { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--grad); color: #fff; }

.alert { border-radius: 14px; }
.section-tint .alert, .section .alert { }

/* ---------- Responsive ---------- */
@media (max-width: 991px) { .hero { text-align: center; } }
@media (max-width: 576px) {
    .contact-form-wrap { padding: 1.5rem; }
    .float-chip { display: none; }
    .section { padding: 3.5rem 0; }
    .exp-badge { inset-inline-start: 12px; }
    .step-num { transform: translateX(50%); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* =========================================================
   Inner pages (service.php / solution.php)
   ========================================================= */
.page-hero { position: relative; overflow: hidden; background: linear-gradient(135deg, #ecfdff 0%, #f4f1ff 100%); padding: 3.2rem 0 3rem; }
.page-hero h1 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 900; color: var(--deep); margin-bottom: .5rem; }
.page-hero-body p, .page-hero p { color: var(--muted); max-width: 660px; margin-bottom: 0; }
.page-breadcrumb { margin-bottom: 1rem; }
.page-breadcrumb a { color: var(--accent); text-decoration: none; font-weight: 700; }

.sol-hero-logo { background: #fff; border-radius: 22px; padding: 2rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 22px 50px rgba(13,148,136,.16); min-height: 220px; }
.sol-hero-logo img { max-height: 150px; max-width: 90%; object-fit: contain; }

.svc-detail-icon { width: 64px; height: 64px; border-radius: 16px; background: var(--grad); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; margin-bottom: 1.2rem; box-shadow: 0 12px 30px rgba(13,148,136,.3); }
.svc-block-title { font-weight: 800; color: var(--deep); margin: 1.8rem 0 1rem; display: flex; align-items: center; gap: .5rem; }
.svc-block-title .bi { color: var(--accent); }
.cta-band-inline { margin-top: 2rem; background: var(--grad-soft); border: 1px solid var(--line); border-left: none; border-right: none; padding: 1.4rem 0; }
.cta-band-inline strong { color: var(--deep); font-size: 1.15rem; }
.cta-band-inline p { color: var(--muted); margin: .3rem 0 0; }

.side-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 1.6rem; box-shadow: 0 18px 44px rgba(13,148,136,.10); position: sticky; top: 96px; }
.side-card h4 { font-weight: 800; color: var(--deep); margin-bottom: 1.1rem; font-size: 1.15rem; }
.side-card h4 .bi { color: var(--accent); }
.side-divider { border-top: 1px dashed var(--line); margin: 1.2rem 0; }

.sol-highlight { display: flex; gap: 1rem; background: var(--grad); color: #fff; border-radius: 20px; padding: 1.6rem; align-items: flex-start; }
.sol-highlight .bi { font-size: 2rem; margin-top: .2rem; }
.sol-highlight strong { display: block; margin-bottom: .3rem; font-size: 1.05rem; }
.sol-highlight span { opacity: .92; font-size: .9rem; }

.sol-feat { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 1.5rem 1.4rem; height: 100%; transition: .3s; }
.sol-feat:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(13,148,136,.14); border-color: var(--accent); }
.sol-feat-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--grad); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1rem; }
.sol-feat p { margin: 0; font-weight: 600; color: var(--deep); font-size: .96rem; }

.cta-band-strip { background: #fff; }

/* Brand / solution items inside the marquee */
.marquee-item-brand { position: relative; text-decoration: none; }
.marquee-logo-brand { height: 52px; }
.marquee-brand-main { background: #fff; border: 2px solid var(--accent); border-radius: 16px; padding: .35rem 1.1rem; box-shadow: 0 10px 26px rgba(16,185,129,.22); }
.marquee-item-brand:hover .marquee-logo { transform: scale(1.06); }
.marquee-brand-tag { position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); display: inline-flex; align-items: center; gap: .25rem; background: var(--accent); color: #fff; font-size: .66rem; font-weight: 800; padding: .18rem .55rem; border-radius: 99px; white-space: nowrap; }
.marquee-brand-tag .bi { font-size: .6rem; }

/* Hero background photo (subtle) */
.hero-bg-photo { position: absolute; inset: 0; background-image: url('../img/service-5.png'), url('../img/about.jpg'); background-size: cover; background-position: center; opacity: .06; z-index: 0; pointer-events: none; }

/* Language switch with flags */
.lang-link { display: inline-flex; align-items: center; gap: .4rem; }
.lang-link .flag-icon { width: 20px; height: auto; border-radius: 3px; box-shadow: 0 1px 3px rgba(0,0,0,.25); }
.lang-link.active { background: #fff; color: #083673 !important; }

/* Tech solutions section (home) */
.tech-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 2.2rem 2rem 2.4rem; text-align: center; box-shadow: 0 18px 44px rgba(13,148,136,.10); transition: .3s; height: 100%; }
.tech-card:hover { transform: translateY(-8px); box-shadow: 0 26px 56px rgba(13,148,136,.18); }
.tech-featured { border-color: var(--accent); }
.tech-badge { position: absolute; top: 18px; inset-inline-end: 18px; display: inline-flex; align-items: center; gap: .3rem; background: var(--gold); color: #fff; font-size: .7rem; font-weight: 800; padding: .28rem .7rem; border-radius: 99px; }
.tech-logo { width: 120px; height: 92px; margin: 0 auto 1.2rem; background: #f3faf7; border: 1px solid var(--line); border-radius: 18px; display: grid; place-items: center; padding: .8rem; }
.tech-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.tech-card h3 { font-weight: 900; color: var(--deep); margin-bottom: .4rem; }
.tech-sub { font-weight: 700; color: var(--accent); margin-bottom: .8rem; }
.tech-desc { color: var(--muted); font-size: .92rem; margin-bottom: 1.4rem; }

/* Footer credit */
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.footer-credit { display: inline-flex; align-items: center; gap: .35rem; }
.footer-credit a { color: #fff; font-weight: 700; text-decoration: none; }
.footer-credit a:hover { color: var(--gold); }

/* Form status toast */
.form-toast { position: fixed; top: 18px; left: 50%; transform: translateX(-50%); z-index: 9999; display: flex; align-items: center; gap: .6rem; background: #fff; border-radius: 14px; padding: .9rem 1.2rem; box-shadow: 0 18px 44px rgba(13,148,136,.28); font-weight: 700; font-size: .95rem; max-width: min(94vw, 560px); border: 1px solid var(--line); animation: toastIn .45s ease; }
.form-toast i { font-size: 1.25rem; }
.form-toast .btn-close { font-size: .7rem; }
.form-toast-success i { color: #16a34a; }
.form-toast-warning i { color: #f59e0b; }
.form-toast-danger i { color: #dc2626; }
.form-toast.hide { opacity: 0; transform: translate(-50%, -14px); transition: .5s; }
@keyframes toastIn { from { opacity: 0; transform: translate(-50%, -14px); } to { opacity: 1; transform: translate(-50%, 0); } }