﻿/* ============================================================
   TRUST OSSAM GROUP — style.css  v2
   Color system: Deep Navy + Corporate Teal (zero gold)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&family=DM+Mono:wght@400;500&display=swap');

:root {
  --navy:         #0B1F3A;
  --navy-mid:     #102A4C;
  --navy-light:   #1A3A60;
  --teal:         #0A7070;
  --teal-mid:     #0D8A8A;
  --teal-light:   #12AAAA;
  --teal-pale:    #E4F4F4;
  --steel:        #1B4F8A;
  --white:        #FFFFFF;
  --off-white:    #F5F8FA;
  --text-dark:    #0B1F3A;
  --text-mid:     #364A5E;
  --text-light:   #7A8EA3;
  --border:       rgba(10,112,112,0.16);
  --border-soft:  rgba(11,31,58,0.08);
  --shadow-sm:    0 2px 12px rgba(11,31,58,0.07);
  --shadow-md:    0 8px 32px rgba(11,31,58,0.11);
  --shadow-lg:    0 20px 60px rgba(11,31,58,0.15);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;
  --radius:       4px;
  --radius-md:    10px;
  --radius-lg:    18px;
  --transition:   0.35s cubic-bezier(0.4,0,0.2,1);
  --max-w:        1200px;
  --nav-h:        80px;
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; }
body { font-family:var(--font-body); color:var(--text-dark); background:var(--white); overflow-x:hidden; cursor:none; }
img  { max-width:100%; height:auto; display:block; }
a    { text-decoration:none; color:inherit; }
ul   { list-style:none; }
button { cursor:none; border:none; background:none; font-family:inherit; }

/* Loader */
#page-loader { position:fixed; inset:0; z-index:9999; background:var(--navy); display:flex; align-items:center; justify-content:center; transition:opacity .55s ease,visibility .55s ease; }
#page-loader.hidden { opacity:0; visibility:hidden; pointer-events:none; }
.loader-inner { display:flex; flex-direction:column; align-items:center; gap:22px; }
.loader-logo  { font-family:var(--font-display); font-size:2rem; font-weight:600; letter-spacing:.16em; color:var(--teal-light); }
.loader-bar   { width:120px; height:2px; background:rgba(18,170,170,.18); border-radius:2px; overflow:hidden; }
.loader-bar::after { content:''; display:block; height:100%; background:var(--teal-light); animation:load-anim .85s ease forwards; }
@keyframes load-anim { from{width:0} to{width:100%} }

/* Cursor */
#cursor     { position:fixed; top:-18px; left:-18px; width:36px; height:36px; border:1.5px solid var(--teal-light); border-radius:50%; pointer-events:none; z-index:9998; transition:width .25s,height .25s,background .25s; }
#cursor.hover { width:54px; height:54px; background:rgba(12,138,138,.1); }
#cursor-dot { position:fixed; top:-3px; left:-3px; width:6px; height:6px; background:var(--teal); border-radius:50%; pointer-events:none; z-index:9999; }

/* Scroll reveal */
.reveal { opacity:0; transform:translateY(26px); transition:opacity .65s ease,transform .65s ease; }
.reveal.revealed { opacity:1; transform:translateY(0); }
.reveal-delay-1{transition-delay:.1s} .reveal-delay-2{transition-delay:.2s}
.reveal-delay-3{transition-delay:.3s} .reveal-delay-4{transition-delay:.4s}
.reveal-delay-5{transition-delay:.5s}

/* Type */
h1,h2,h3,h4,h5 { font-family:var(--font-display); font-weight:600; line-height:1.15; }
h1{font-size:clamp(2.8rem,6vw,5rem)} h2{font-size:clamp(2rem,4vw,3.2rem)}
h3{font-size:clamp(1.4rem,2.5vw,2rem)} h4{font-size:1.3rem}
p { line-height:1.78; color:var(--text-mid); font-weight:300; }

/* Layout */
.container { width:100%; max-width:var(--max-w); margin:0 auto; padding:0 32px; }
.section{padding:96px 0} .section-sm{padding:64px 0} .section-lg{padding:128px 0}

/* Badge */
.badge { display:inline-flex; align-items:center; gap:8px; font-family:var(--font-mono); font-size:.7rem; letter-spacing:.18em; text-transform:uppercase; color:var(--teal); padding:6px 14px; border:1px solid var(--border); border-radius:2px; margin-bottom:20px; }
.badge::before { content:''; width:16px; height:1px; background:var(--teal); }

/* Buttons */
.btn { display:inline-flex; align-items:center; gap:8px; padding:14px 32px; font-family:var(--font-body); font-size:.9rem; font-weight:500; letter-spacing:.04em; border-radius:var(--radius); transition:var(--transition); }
.btn-primary { background:var(--teal); color:var(--white); }
.btn-primary:hover { background:var(--teal-mid); transform:translateY(-2px); box-shadow:0 8px 24px rgba(10,112,112,.3); }
.btn-outline { border:1.5px solid rgba(10,112,112,.4); color:var(--teal); }
.btn-outline:hover { background:rgba(10,112,112,.07); border-color:var(--teal); transform:translateY(-2px); }
.btn-outline-white { border:1.5px solid rgba(255,255,255,.4); color:var(--white); }
.btn-outline-white:hover { background:rgba(255,255,255,.1); border-color:var(--white); transform:translateY(-2px); }

/* WhatsApp */
.wa-btn { position:fixed; bottom:28px; right:28px; z-index:500; width:56px; height:56px; background:#25D366; border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 20px rgba(37,211,102,.35); transition:transform .3s,box-shadow .3s; }
.wa-btn:hover { transform:scale(1.1) translateY(-2px); box-shadow:0 8px 28px rgba(37,211,102,.45); }
.wa-btn svg { width:28px; height:28px; fill:white; }

/* Section header */
.section-header { margin-bottom:52px; }
.section-header h2 { margin:8px 0 16px; }
.section-header p  { max-width:560px; }
.section-header.centered { text-align:center; }
.section-header.centered p { margin:0 auto; }

/* ── NAV ── */
#main-nav { position:fixed; top:0; left:0; right:0; z-index:400; height:var(--nav-h); display:flex; align-items:center; transition:background .4s ease,box-shadow .4s ease; background:rgba(11,31,58,0.85); }
#main-nav.scrolled { background:rgba(11,31,58,0.97); backdrop-filter:blur(14px); box-shadow:var(--shadow-md); }
#main-nav.menu-open { background:rgba(11,31,58,0.99) !important; }
.nav-inner { display:flex; align-items:center; justify-content:space-between; width:100%; max-width:var(--max-w); margin:0 auto; padding:0 32px; }
.nav-logo { font-family:var(--font-display); font-size:1.2rem; font-weight:700; color:var(--white); letter-spacing:.06em; display:flex; flex-direction:column; line-height:1.1; }
.nav-logo span { font-size:.58rem; font-family:var(--font-mono); letter-spacing:.22em; color:var(--teal-light); font-weight:400; text-transform:uppercase; }
#nav-menu { display:flex; align-items:center; gap:34px; }
.nav-link { font-size:.85rem; font-weight:400; color:rgba(255,255,255,.72); letter-spacing:.04em; position:relative; transition:color .25s; }
.nav-link::after { content:''; position:absolute; bottom:-4px; left:0; width:0; height:1px; background:var(--teal-light); transition:width .3s ease; }
.nav-link:hover,.nav-link.active { color:var(--white); }
.nav-link:hover::after,.nav-link.active::after { width:100%; }
.nav-right { display:flex; align-items:center; gap:18px; }
.lang-switcher { display:flex; align-items:center; gap:2px; border:1px solid rgba(10,112,112,.3); border-radius:2px; overflow:hidden; }
.lang-btn { font-family:var(--font-mono); font-size:.64rem; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.5); padding:5px 10px; transition:background .25s,color .25s; }
.lang-btn.active,.lang-btn:hover { background:var(--teal); color:var(--white); }
.nav-cta { font-size:.8rem; font-weight:500; padding:9px 22px; background:var(--teal); color:var(--white); border-radius:var(--radius); transition:background .25s,transform .25s; }
.nav-cta:hover { background:var(--teal-mid); transform:translateY(-1px); }
#nav-toggle { display:none; flex-direction:column; gap:5px; padding:4px; }
#nav-toggle span { display:block; width:24px; height:1.5px; background:var(--white); transition:transform .3s,opacity .3s; }
#nav-toggle.open span:nth-child(1){transform:translateY(6.5px) rotate(45deg)}
#nav-toggle.open span:nth-child(2){opacity:0}
#nav-toggle.open span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg)}

/* ── HERO ── */
.hero { position:relative; min-height:100vh; display:flex; align-items:center; background:var(--navy); overflow:hidden; padding-top:var(--nav-h); }
.hero-video-wrap { position:absolute; inset:0; z-index:0; overflow:hidden; }
.hero-video-wrap video { width:100%; height:100%; object-fit:cover; opacity:.22; }
.hero-video-wrap::after { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(11,31,58,.9) 0%,rgba(11,31,58,.65) 55%,rgba(10,112,112,.15) 100%); }
.hero-grid-overlay { position:absolute; inset:0; z-index:1; background-image:linear-gradient(rgba(10,112,112,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(10,112,112,.05) 1px,transparent 1px); background-size:56px 56px; }
.hero-inner { position:relative; z-index:2; display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; width:100%; max-width:var(--max-w); margin:0 auto; padding:80px 32px; }
.hero-content { max-width:580px; }
.hero-title { font-family:var(--font-display); font-weight:600; line-height:1.08; margin:16px 0 28px; }
.hero-title .line-1,.hero-title .line-3 { color:var(--white); }
.hero-title .line-2 { color:var(--teal-light); font-style:italic; }
.hero-sub { font-size:1.05rem; color:rgba(255,255,255,.62); line-height:1.78; max-width:480px; margin-bottom:40px; font-weight:300; }
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; }
.hero-stats { display:flex; flex-direction:column; gap:28px; align-self:center; padding-left:44px; border-left:1px solid rgba(10,112,112,.22); }
.stat-label { font-family:var(--font-mono); font-size:.64rem; letter-spacing:.18em; text-transform:uppercase; color:var(--teal-light); margin-bottom:4px; }
.stat-value { font-family:var(--font-display); font-size:3.5rem; font-weight:700; color:var(--white); line-height:1; }
.stat-divider { width:28px; height:1px; background:rgba(10,112,112,.28); margin:6px 0; }
.hero-scroll { position:absolute; bottom:36px; left:50%; transform:translateX(-50%); display:flex; flex-direction:column; align-items:center; gap:8px; font-family:var(--font-mono); font-size:.6rem; letter-spacing:.2em; text-transform:uppercase; color:rgba(255,255,255,.3); }
.hero-scroll::after { content:''; width:1px; height:48px; background:linear-gradient(to bottom,rgba(10,112,112,.7),transparent); animation:scroll-pulse 2s ease infinite; }
@keyframes scroll-pulse{0%,100%{opacity:.4}50%{opacity:1}}

/* ── SERVICES PREVIEW ── */
.services-preview { background:var(--off-white); }
.srv-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.srv-card { background:var(--white); border:1px solid var(--border-soft); border-radius:var(--radius-md); padding:36px 28px; position:relative; overflow:hidden; transition:transform var(--transition),box-shadow var(--transition); }
.srv-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,var(--teal),var(--teal-light)); transform:scaleX(0); transform-origin:left; transition:transform .4s ease; }
.srv-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-md); }
.srv-card:hover::before { transform:scaleX(1); }
.srv-icon { width:48px; height:48px; background:var(--teal-pale); border-radius:var(--radius); display:flex; align-items:center; justify-content:center; margin-bottom:20px; }
.srv-icon svg { width:22px; height:22px; stroke:var(--teal); fill:none; stroke-width:1.5; }
.srv-card h4 { font-family:var(--font-display); font-size:1.25rem; color:var(--navy); margin-bottom:12px; }
.srv-card p  { font-size:.91rem; line-height:1.72; }
.srv-all-link { margin-top:36px; font-family:var(--font-mono); font-size:.78rem; letter-spacing:.1em; color:var(--teal); border-bottom:1px solid var(--border); padding-bottom:2px; display:inline-block; transition:border-color .25s; }
.srv-all-link:hover { border-color:var(--teal); }

/* ── ABOUT PREVIEW ── */
.about-preview { background:var(--white); }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.about-img-wrap { position:relative; }
.about-img-main { width:100%; height:520px; object-fit:cover; border-radius:var(--radius-md); }
.about-img-accent { position:absolute; bottom:-28px; right:-28px; width:180px; height:180px; object-fit:cover; border-radius:var(--radius-md); border:6px solid var(--white); box-shadow:var(--shadow-md); }
.about-badge-float { position:absolute; top:28px; left:-20px; background:var(--navy); color:var(--teal-light); font-family:var(--font-display); font-size:1.1rem; font-weight:600; padding:16px 20px; border-radius:var(--radius-md); line-height:1.2; text-align:center; box-shadow:var(--shadow-md); }
.about-badge-float span { display:block; font-family:var(--font-mono); font-size:.58rem; letter-spacing:.14em; color:rgba(255,255,255,.4); text-transform:uppercase; margin-top:4px; }
.about-content h2 { margin:8px 0 24px; }
.about-content p  { margin-bottom:18px; }
.about-link { font-family:var(--font-mono); font-size:.78rem; letter-spacing:.1em; color:var(--teal); border-bottom:1px solid var(--border); padding-bottom:2px; display:inline-block; transition:border-color .25s; margin-top:8px; }
.about-link:hover { border-color:var(--teal); }
.values-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:32px; }
.val-card { padding:20px; background:var(--off-white); border-radius:var(--radius-md); border-left:3px solid var(--teal); transition:transform .25s,background .25s; }
.val-card:hover { transform:translateX(4px); background:var(--teal-pale); }
.val-card h5 { font-family:var(--font-display); font-size:1rem; color:var(--navy); margin-bottom:6px; }
.val-card p  { font-size:.84rem; line-height:1.62; }

/* ── TESTIMONIALS ── */
.testimonials { background:var(--navy); overflow:hidden; }
.tst-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:52px; }
.tst-card { background:rgba(255,255,255,.04); border:1px solid rgba(10,112,112,.16); border-radius:var(--radius-md); padding:34px 26px; position:relative; transition:border-color var(--transition),background var(--transition); }
.tst-card:hover { border-color:rgba(10,112,112,.42); background:rgba(255,255,255,.07); }
.tst-quote { font-family:var(--font-display); font-size:4rem; color:var(--teal-light); line-height:1; opacity:.22; position:absolute; top:16px; left:24px; }
.tst-text { font-size:.93rem; color:rgba(255,255,255,.7); line-height:1.77; margin-top:22px; font-weight:300; }
.tst-author { margin-top:24px; padding-top:18px; border-top:1px solid rgba(10,112,112,.13); }
.tst-name    { font-family:var(--font-display); font-size:1rem; color:var(--white); font-weight:600; }
.tst-company { font-family:var(--font-mono); font-size:.66rem; letter-spacing:.1em; color:var(--teal-light); margin-top:3px; }

/* ── CTA ── */
.cta-section { background:linear-gradient(135deg,var(--teal) 0%,var(--navy-mid) 100%); position:relative; overflow:hidden; text-align:center; padding:96px 0; }
.cta-section::before { content:''; position:absolute; top:-50%; left:50%; transform:translateX(-50%); width:700px; height:700px; background:radial-gradient(circle,rgba(255,255,255,.06) 0%,transparent 70%); pointer-events:none; }
.cta-section h2 { color:var(--white); margin-bottom:16px; }
.cta-section p  { color:rgba(255,255,255,.65); max-width:500px; margin:0 auto 36px; }

/* ── FOOTER ── */
footer { background:#060D1A; padding:72px 0 0; border-top:1px solid rgba(10,112,112,.1); }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr; gap:56px; margin-bottom:48px; }
.footer-brand .nav-logo { margin-bottom:16px; }
.footer-tagline { font-size:.88rem; color:rgba(255,255,255,.38); line-height:1.75; max-width:280px; }
.footer-col h6 { font-family:var(--font-mono); font-size:.68rem; letter-spacing:.18em; text-transform:uppercase; color:var(--teal-light); margin-bottom:20px; }
.footer-links { display:flex; flex-direction:column; gap:10px; }
.footer-links a { font-size:.87rem; color:rgba(255,255,255,.45); transition:color .25s; }
.footer-links a:hover { color:var(--white); }
.footer-contact-item { display:flex; gap:10px; margin-bottom:13px; align-items:flex-start; }
.footer-contact-item svg { width:15px; height:15px; stroke:var(--teal-light); fill:none; flex-shrink:0; margin-top:2px; stroke-width:1.8; }
.footer-contact-item span { font-size:.84rem; color:rgba(255,255,255,.42); line-height:1.55; }

/* Built-by bar */
.footer-built { border-top:1px solid rgba(255,255,255,.05); padding:16px 0; display:flex; align-items:center; justify-content:center; gap:10px; font-size:.76rem; color:rgba(255,255,255,.25); font-family:var(--font-mono); letter-spacing:.05em; flex-wrap:wrap; }
.footer-built a.built-link { color:var(--teal-light); font-weight:500; transition:color .25s; }
.footer-built a.built-link:hover { color:var(--white); }
.built-icons { display:flex; gap:7px; align-items:center; }
.built-icon-btn { width:26px; height:26px; border:1px solid rgba(10,112,112,.28); border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--teal-light); transition:background .25s,border-color .25s; }
.built-icon-btn:hover { background:var(--teal); border-color:var(--teal); color:var(--white); }
.built-icon-btn svg { width:12px; height:12px; stroke:currentColor; fill:none; stroke-width:2; }

.footer-bottom { border-top:1px solid rgba(255,255,255,.05); padding:22px 0; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px; }
.footer-copy  { font-size:.76rem; color:rgba(255,255,255,.26); }
.footer-legal { font-family:var(--font-mono); font-size:.6rem; letter-spacing:.07em; color:rgba(255,255,255,.16); }

/* ── PAGE HERO ── */
.page-hero { background:var(--navy); padding:calc(var(--nav-h) + 80px) 0 80px; position:relative; overflow:hidden; }
.page-hero::after { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 60% 80% at 90% 50%,rgba(10,112,112,.1) 0%,transparent 60%); }
.page-hero-inner { position:relative; z-index:1; }
.page-hero h1   { color:var(--white); margin:12px 0 20px; }
.page-hero p.sub { color:rgba(255,255,255,.58); max-width:560px; font-size:1.05rem; }

/* ── SERVICES PAGE ── */
.srv-detail-section { padding:80px 0; }
.srv-detail-section:nth-child(even) { background:var(--off-white); }
.srv-detail-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.srv-detail-grid.reverse { direction:rtl; }
.srv-detail-grid.reverse > * { direction:ltr; }
.srv-detail-img { width:100%; height:400px; object-fit:cover; border-radius:var(--radius-md); }
.srv-detail-content .number { font-family:var(--font-display); font-size:5rem; font-weight:700; color:var(--teal); opacity:.1; line-height:1; margin-bottom:-20px; }
.srv-detail-content h3 { color:var(--navy); margin-bottom:20px; }
.srv-detail-content p  { margin-bottom:16px; }
.why-section { background:var(--navy); padding:80px 0; }
.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:48px; }
.why-item { padding:28px 24px; background:rgba(255,255,255,.04); border:1px solid rgba(10,112,112,.14); border-radius:var(--radius-md); display:flex; gap:16px; align-items:flex-start; transition:border-color .3s,background .3s; }
.why-item:hover { border-color:rgba(10,112,112,.38); background:rgba(10,112,112,.06); }
.why-num  { font-family:var(--font-display); font-size:1.8rem; font-weight:700; color:var(--teal-light); opacity:.42; line-height:1; flex-shrink:0; }
.why-text { font-size:.9rem; color:rgba(255,255,255,.63); line-height:1.65; font-weight:300; }

/* ── ABOUT PAGE ── */
.story-section { padding:96px 0; }
.story-grid { display:grid; grid-template-columns:1fr 2fr; gap:80px; }
.story-aside { position:sticky; top:calc(var(--nav-h) + 32px); height:fit-content; }
.story-aside img { width:100%; height:340px; object-fit:cover; border-radius:var(--radius-md); }
.legal-box { margin-top:24px; background:var(--navy); border-radius:var(--radius-md); padding:24px; }
.legal-box h6 { font-family:var(--font-mono); font-size:.63rem; letter-spacing:.18em; text-transform:uppercase; color:var(--teal-light); margin-bottom:16px; }
.legal-row { display:flex; justify-content:space-between; gap:8px; border-bottom:1px solid rgba(255,255,255,.06); padding:10px 0; font-size:.79rem; }
.legal-row:last-child { border-bottom:none; }
.legal-row .lk { color:rgba(255,255,255,.36); }
.legal-row .lv { color:var(--white); font-weight:500; text-align:right; }
.story-content h3 { color:var(--navy); margin-bottom:24px; }
.story-content p  { margin-bottom:20px; }
.mission-vision { display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-top:40px; }
.mv-card { background:var(--navy); border-radius:var(--radius-md); padding:32px 28px; }
.mv-card .mv-icon { width:44px; height:44px; background:rgba(10,112,112,.18); border-radius:var(--radius); display:flex; align-items:center; justify-content:center; margin-bottom:20px; }
.mv-card .mv-icon svg { width:22px; height:22px; stroke:var(--teal-light); fill:none; stroke-width:1.5; }
.mv-card h4 { color:var(--white); margin-bottom:12px; }
.mv-card p  { color:rgba(255,255,255,.56); font-size:.91rem; }
.values-section { background:var(--off-white); padding:80px 0; }
.values-big-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:48px; }
.val-big-card { background:var(--white); border-radius:var(--radius-md); padding:34px 22px; text-align:center; border-bottom:3px solid transparent; transition:border-color .3s,transform .3s,box-shadow .3s; }
.val-big-card:hover { border-color:var(--teal); transform:translateY(-4px); box-shadow:var(--shadow-md); }
.val-big-card .val-num { font-family:var(--font-display); font-size:3rem; font-weight:700; color:var(--teal); opacity:.14; line-height:1; }
.val-big-card h4 { color:var(--navy); margin:12px 0 10px; }
.val-big-card p  { font-size:.85rem; }
.stats-strip { background:var(--teal); padding:56px 0; }
.stats-strip-grid { display:grid; grid-template-columns:repeat(4,1fr); }
.strip-stat { text-align:center; padding:0 24px; border-right:1px solid rgba(255,255,255,.14); }
.strip-stat:last-child { border-right:none; }
.strip-stat .s-num { font-family:var(--font-display); font-size:3.2rem; font-weight:700; color:var(--white); line-height:1; }
.strip-stat .s-label { font-family:var(--font-mono); font-size:.65rem; letter-spacing:.16em; text-transform:uppercase; color:rgba(255,255,255,.62); margin-top:6px; }

/* ── CONTACT PAGE ── */
.contact-section { padding:96px 0; }
.contact-grid { display:grid; grid-template-columns:3fr 2fr; gap:56px; align-items:flex-start; }
.contact-form { background:var(--off-white); border-radius:var(--radius-lg); padding:48px 40px; }
.contact-form h3 { color:var(--navy); margin-bottom:32px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group { margin-bottom:20px; }
.form-group label { display:block; font-size:.75rem; font-weight:500; letter-spacing:.06em; color:var(--text-mid); margin-bottom:8px; text-transform:uppercase; }
.form-group input,.form-group textarea,.form-group select { width:100%; padding:13px 16px; background:var(--white); border:1.5px solid rgba(11,31,58,.1); border-radius:var(--radius); font-family:var(--font-body); font-size:.92rem; color:var(--text-dark); cursor:none; transition:border-color .25s,box-shadow .25s; appearance:none; }
.form-group input:focus,.form-group textarea:focus,.form-group select:focus { outline:none; border-color:var(--teal); box-shadow:0 0 0 3px rgba(10,112,112,.1); }
.form-group textarea { resize:vertical; min-height:130px; }
.contact-info-panel h3 { color:var(--navy); margin-bottom:28px; }
.contact-info-item { display:flex; gap:16px; align-items:flex-start; margin-bottom:22px; padding-bottom:22px; border-bottom:1px solid var(--border-soft); }
.contact-info-item:last-of-type { border-bottom:none; }
.ci-icon { width:44px; height:44px; flex-shrink:0; background:var(--teal-pale); border-radius:var(--radius); display:flex; align-items:center; justify-content:center; }
.ci-icon svg { width:20px; height:20px; stroke:var(--teal); fill:none; stroke-width:1.5; }
.ci-label { font-family:var(--font-mono); font-size:.62rem; letter-spacing:.15em; text-transform:uppercase; color:var(--text-light); margin-bottom:4px; }
.ci-value { font-size:.9rem; color:var(--text-dark); line-height:1.55; }
.faq-section { background:var(--off-white); padding:80px 0; }
.faq-list { margin-top:48px; max-width:780px; margin-left:auto; margin-right:auto; }
.faq-item { border-bottom:1px solid rgba(11,31,58,.09); overflow:hidden; }
.faq-q { width:100%; text-align:left; padding:22px 0; display:flex; justify-content:space-between; align-items:center; gap:16px; font-family:var(--font-display); font-size:1.1rem; color:var(--navy); font-weight:500; cursor:none; transition:color .25s; }
.faq-q:hover { color:var(--teal); }
.faq-icon { width:24px; height:24px; flex-shrink:0; border:1px solid var(--border); border-radius:50%; display:flex; align-items:center; justify-content:center; transition:background .25s,border-color .25s,transform .3s; font-size:1.1rem; color:var(--teal); line-height:1; }
.faq-item.open .faq-icon { background:var(--teal); border-color:var(--teal); color:var(--white); transform:rotate(45deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .4s ease,padding .4s ease; font-size:.94rem; color:var(--text-mid); line-height:1.78; }
.faq-item.open .faq-a { max-height:220px; padding-bottom:20px; }

/* ── GALLERY ── */
.gallery-section { padding:80px 0; }
.gal-filters { display:flex; gap:8px; flex-wrap:wrap; margin:36px 0; }
.gal-filter { padding:8px 20px; font-family:var(--font-mono); font-size:.7rem; letter-spacing:.1em; text-transform:uppercase; border:1px solid rgba(11,31,58,.13); border-radius:2px; color:var(--text-mid); transition:all .25s; cursor:none; }
.gal-filter.active,.gal-filter:hover { background:var(--navy); color:var(--white); border-color:var(--navy); }
.gal-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.gal-item { position:relative; overflow:hidden; border-radius:var(--radius-md); aspect-ratio:4/3; }
.gal-item img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.gal-item:hover img { transform:scale(1.06); }
.gal-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(11,31,58,.88) 0%,transparent 55%); display:flex; flex-direction:column; justify-content:flex-end; padding:20px 18px; opacity:0; transition:opacity .35s; }
.gal-item:hover .gal-overlay { opacity:1; }
.gal-cat     { font-family:var(--font-mono); font-size:.58rem; letter-spacing:.15em; text-transform:uppercase; color:var(--teal-light); margin-bottom:5px; }
.gal-caption { font-family:var(--font-display); font-size:1.1rem; color:var(--white); }

/* ── CEO / LEADERSHIP SECTION ── */
.leadership-section { background:var(--white); padding:96px 0; }
.leadership-inner { display:grid; grid-template-columns:340px 1fr; gap:64px; align-items:flex-start; }

.ceo-card {
  background:var(--navy);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  position:sticky; top:calc(var(--nav-h) + 32px);
}
.ceo-photo-wrap {
  position:relative; width:100%; aspect-ratio:3/4; overflow:hidden;
  background:var(--navy-mid);
}
.ceo-photo-wrap img {
  width:100%; height:100%; object-fit:cover; object-position:center top;
  display:block;
}
.ceo-photo-placeholder {
  width:100%; height:100%; display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:12px;
  background:linear-gradient(160deg, var(--navy-light) 0%, var(--navy) 100%);
}
.ceo-photo-placeholder svg { width:72px; height:72px; stroke:rgba(255,255,255,.18); fill:none; stroke-width:1; }
.ceo-photo-placeholder span { font-family:var(--font-mono); font-size:.62rem; letter-spacing:.14em; color:rgba(255,255,255,.22); text-transform:uppercase; }

.ceo-photo-badge {
  position:absolute; bottom:16px; left:16px; right:16px;
  background:rgba(10,112,112,.88); backdrop-filter:blur(8px);
  border-radius:var(--radius-md); padding:12px 16px;
  display:flex; align-items:center; gap:10px;
}
.ceo-photo-badge .badge-dot { width:8px; height:8px; background:var(--teal-light); border-radius:50%; flex-shrink:0; animation:pulse-dot 2s ease infinite; }
@keyframes pulse-dot { 0%,100%{opacity:.5;transform:scale(1)} 50%{opacity:1;transform:scale(1.25)} }
.ceo-photo-badge span { font-family:var(--font-mono); font-size:.64rem; letter-spacing:.1em; color:var(--white); text-transform:uppercase; }

.ceo-meta { padding:24px; border-top:1px solid rgba(255,255,255,.07); }
.ceo-name  { font-family:var(--font-display); font-size:1.45rem; font-weight:700; color:var(--white); line-height:1.15; margin-bottom:4px; }
.ceo-title { font-family:var(--font-mono); font-size:.66rem; letter-spacing:.14em; text-transform:uppercase; color:var(--teal-light); margin-bottom:18px; }

.ceo-tags { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:18px; }
.ceo-tag {
  font-family:var(--font-mono); font-size:.6rem; letter-spacing:.09em;
  text-transform:uppercase; color:rgba(255,255,255,.55);
  border:1px solid rgba(10,112,112,.3); border-radius:2px; padding:4px 9px;
}

.ceo-langs { display:flex; gap:8px; flex-wrap:wrap; }
.lang-pill {
  display:flex; align-items:center; gap:5px;
  background:rgba(255,255,255,.06); border-radius:20px;
  padding:4px 10px 4px 7px;
  font-size:.72rem; color:rgba(255,255,255,.6);
}
.lang-flag { font-size:.85rem; line-height:1; }

/* CEO bio content */
.ceo-bio { }
.ceo-bio .section-label {
  font-family:var(--font-mono); font-size:.68rem; letter-spacing:.18em;
  text-transform:uppercase; color:var(--teal); margin-bottom:8px; display:block;
}
.ceo-bio h3 { color:var(--navy); margin-bottom:24px; font-size:clamp(1.5rem,3vw,2.2rem); }
.ceo-bio p  { margin-bottom:18px; }

.expertise-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin:32px 0; }
.exp-item {
  display:flex; align-items:flex-start; gap:12px;
  background:var(--off-white); border-radius:var(--radius-md);
  padding:16px; border-left:3px solid var(--teal);
  transition:background .25s, transform .25s;
}
.exp-item:hover { background:var(--teal-pale); transform:translateX(4px); }
.exp-icon { width:36px; height:36px; background:var(--teal-pale); border-radius:var(--radius); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.exp-icon svg { width:18px; height:18px; stroke:var(--teal); fill:none; stroke-width:1.5; }
.exp-text { font-size:.86rem; color:var(--text-mid); line-height:1.55; font-weight:400; }
.exp-text strong { display:block; font-weight:600; color:var(--text-dark); margin-bottom:2px; font-family:var(--font-display); font-size:1rem; }

.ceo-quote {
  background:var(--navy); border-radius:var(--radius-md); padding:30px 28px;
  position:relative; margin-top:32px;
}
.ceo-quote::before {
  content:'"'; font-family:var(--font-display); font-size:5rem; color:var(--teal-light);
  opacity:.18; position:absolute; top:8px; left:22px; line-height:1;
}
.ceo-quote p { color:rgba(255,255,255,.72); font-size:1rem; line-height:1.75; font-style:italic; margin:0; padding-top:18px; }
.ceo-quote cite { display:block; margin-top:14px; font-family:var(--font-mono); font-size:.64rem; letter-spacing:.1em; color:var(--teal-light); font-style:normal; text-transform:uppercase; }

@media(max-width:1024px){
  .leadership-inner { grid-template-columns:280px 1fr; gap:40px; }
}
@media(max-width:768px){
  .leadership-inner { grid-template-columns:1fr; gap:32px; }
  .ceo-card { position:static; max-width:360px; margin:0 auto; }
  .expertise-grid { grid-template-columns:1fr; }
}

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  .srv-grid{grid-template-columns:repeat(2,1fr)}
  .why-grid{grid-template-columns:repeat(2,1fr)}
  .values-big-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
  .story-grid{grid-template-columns:1fr}
  .story-aside{position:static}
  .stats-strip-grid{grid-template-columns:repeat(2,1fr);gap:32px}
  .strip-stat{border-right:none;padding-bottom:20px;border-bottom:1px solid rgba(255,255,255,.1)}
  .strip-stat:nth-child(even),.strip-stat:last-child{border:none}
}
@media(max-width:768px){
  :root{--nav-h:66px}
  body{cursor:auto}
  #cursor,#cursor-dot{display:none}
  #nav-toggle{display:flex}
  #nav-menu{position:fixed;top:0;right:0;bottom:0;left:auto;width:75vw;max-width:320px;height:100vh;padding-top:calc(var(--nav-h) + 20px);background:rgba(11,31,58,0.98);backdrop-filter:blur(12px);flex-direction:column;justify-content:flex-start;align-items:flex-start;padding-left:36px;gap:28px;transform:translateX(100%);transition:transform .4s cubic-bezier(0.4,0,0.2,1);z-index:998;box-shadow:-8px 0 32px rgba(0,0,0,0.4);}
  #nav-menu.open{transform:translateX(0)}
  #main-nav{background:rgba(11,31,58,1) !important;z-index:1000 !important;}
  #nav-toggle{z-index:1001 !important;position:relative;}
  .nav-right{z-index:1001 !important;position:relative;}
  #main-nav.scrolled{background:rgba(11,31,58,1) !important;}
  #main-nav.menu-open{background:rgba(11,31,58,1) !important;}
  .nav-link{font-size:1.3rem}
  .nav-cta{display:none}
  .hero-inner{grid-template-columns:1fr;padding:60px 24px}
  .hero-stats{padding-left:0;border-left:none;flex-direction:row;flex-wrap:wrap;gap:20px;border-top:1px solid rgba(10,112,112,.2);padding-top:28px}
  .stat-value{font-size:2.5rem}
  .srv-grid{grid-template-columns:1fr}
  .about-grid{grid-template-columns:1fr;gap:36px}
  .about-img-main{height:300px}
  .about-img-accent,.about-badge-float{display:none}
  .tst-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
  .gal-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr;gap:32px}
  .footer-bottom{flex-direction:column;text-align:center}
  .srv-detail-grid{grid-template-columns:1fr}
  .srv-detail-grid.reverse{direction:ltr}
  .why-grid{grid-template-columns:1fr}
  .values-big-grid{grid-template-columns:1fr 1fr}
  .mission-vision{grid-template-columns:1fr}
  .values-grid{grid-template-columns:1fr}
  .container{padding:0 20px}
  .contact-form{padding:32px 24px}
  .stats-strip-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:480px){
  .gal-grid{grid-template-columns:1fr}
  .values-big-grid{grid-template-columns:1fr}
  h1{font-size:2.4rem} h2{font-size:1.85rem}
}

/* ── MAP ── */
.map-box { width:100%; height:260px; border-radius:var(--radius-md); overflow:hidden; margin-top:28px; border:1px solid var(--border-soft); }
.map-box iframe { width:100%; height:100%; border:none; display:block; }

/* ── JAPANESE LANGUAGE SUPPORT ── */
/* Load Noto Sans JP only when Japanese is active — non-blocking */
.lang-ja body,
body.lang-ja {
  font-family: 'Noto Sans JP', 'DM Sans', sans-serif;
}
body.lang-ja h1,
body.lang-ja h2,
body.lang-ja h3,
body.lang-ja h4,
body.lang-ja h5 {
  font-family: 'Noto Serif JP', 'Cormorant Garamond', Georgia, serif;
  letter-spacing: 0.04em;
  line-height: 1.45;
}
body.lang-ja p,
body.lang-ja span,
body.lang-ja a,
body.lang-ja button,
body.lang-ja label {
  font-family: 'Noto Sans JP', 'DM Sans', sans-serif;
  line-height: 1.9;
  font-weight: 300;
}
body.lang-ja .badge,
body.lang-ja .nav-link,
body.lang-ja .lang-btn,
body.lang-ja .footer-col h6,
body.lang-ja .stat-label,
body.lang-ja .ci-label,
body.lang-ja .gal-cat,
body.lang-ja .ceo-title,
body.lang-ja .ceo-tag {
  font-family: 'Noto Sans JP', 'DM Mono', monospace;
  letter-spacing: 0.02em;
}
/* Lang switcher — 3 buttons fit cleanly */
.lang-switcher { flex-wrap: nowrap; }

/* ============================================================
   NOS PARTENAIRES — Partners Section
   ============================================================ */

/* ── Section wrapper ── */
.partners-section {
  background: var(--navy);
  padding: 96px 0;
  overflow: hidden;
  position: relative;
}
.partners-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(10,112,112,0.07) 0%, transparent 70%);
  z-index: 0;
}

.partners-section .container { position: relative; z-index: 1; }

/* ── Section header ── */
.partners-section .section-header {
  text-align: center;
  margin-bottom: 16px;
}
.partners-section .section-header h2 { margin: 8px 0 12px; color: var(--white); }
.partners-section .section-header p  { margin: 0 auto; max-width: 520px; color: rgba(255,255,255,0.58); }

/* ── Divider line under header ── */
.partners-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 36px auto 52px;
  max-width: 320px;
  justify-content: center;
}
.partners-divider::before,
.partners-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(10,112,112,0.3);
}
.partners-divider-dot {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
}

/* ── Ticker track ── */
.partners-ticker-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  /* Fade edges */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.partners-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: partners-scroll 30s linear infinite;
}
.partners-track:hover { animation-play-state: paused; }

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

/* ── Individual partner card ── */
.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 200px;
  max-width: 200px;
  height: 168px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  flex-shrink: 0;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.partner-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.partner-card:hover {
  border-color: rgba(10,112,112,0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.partner-card:hover::before { transform: scaleX(1); }

.partner-logo-wrap {
  width: 100%;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.partner-logo-wrap img,
.partner-logo-wrap svg {
  width: 100%;
  height: 100%;
  max-width: 164px;
  max-height: 110px;
  object-fit: contain;
  filter: none;
  transition: filter var(--transition);
}
.partner-card:hover .partner-logo-wrap img,
.partner-card:hover .partner-logo-wrap svg {
  filter: none;
}

.partner-name {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  text-align: center;
  line-height: 1.3;
  transition: color var(--transition);
}
.partner-card:hover .partner-name { color: var(--teal); }

/* ── Partner count tag ── */
.partners-count-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.pcount-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.pcount-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .partner-card { min-width: 160px; max-width: 160px; height: 148px; padding: 14px 12px; }
  .partners-track { gap: 18px; }
  .partner-logo-wrap { height: 90px; }
  .partner-logo-wrap img, .partner-logo-wrap svg { max-width: 130px; max-height: 90px; }
}
@media (max-width: 480px) {
  .partner-card { min-width: 140px; max-width: 140px; height: 136px; }
  .partner-logo-wrap { height: 80px; }
  .partner-logo-wrap img, .partner-logo-wrap svg { max-width: 114px; max-height: 80px; }
}

/* ── GALLERY VIDEO SUPPORT ── */
.gal-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.gal-item:hover video { transform: scale(1.06); }
.gal-item { cursor: pointer; }

/* ── LIGHTBOX ── */
.gal-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(7, 14, 30, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
  backdrop-filter: blur(6px);
}
.gal-lightbox.active {
  opacity: 1;
  visibility: visible;
}
.gal-lb-close {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 2.2rem;
  color: rgba(255,255,255,0.7);
  background: none;
  border: none;
  line-height: 1;
  cursor: pointer;
  z-index: 9001;
  transition: color .2s, transform .2s;
  font-family: var(--font-body);
}
.gal-lb-close:hover { color: var(--white); transform: scale(1.15); }
.gal-lb-inner {
  width: 90vw;
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}
.gal-lb-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.gal-lb-media img,
.gal-lb-media video {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-md);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  object-fit: contain;
}
