@font-face {
  font-family: 'MontserratAlt';
  src: url('fonts/MontserratAlt-600.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'MontserratAlt';
  src: url('fonts/MontserratAlt-700.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-700.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

*{box-sizing:border-box;margin:0;padding:0}
:root{--orange:#f46d33;--black:#111;--dark:#1a1a1a;--gray-dark:#333;--gray-mid:#555;--gray-light:#f7f7f7;--gray-bar:#d2d6e1;--border:#e5e5e5;--white:#fff}
/* Force every page to reserve the same scrollbar space, whether or not its content
   is tall enough to actually scroll. Without this, short pages (e.g. Contact) render
   a few pixels wider than taller pages, and the centered 1200px content appears
   shifted right relative to pages that have a visible scrollbar. */
html{overflow-y:scroll;scrollbar-gutter:stable}
body{font-family:Arial,sans-serif;color:var(--black);background:var(--white);line-height:1.6}

/* Present in the HTML (and readable by search engines / assistive tech) but not
   visually shown to sighted users. Used for work-sample images that back the
   alt-text keywords without rendering a visible thumbnail. */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* NAV */
.nav{background:var(--white);border-bottom:1px solid var(--border);position:sticky;top:0;z-index:50}
.nav-inner{max-width:1200px;margin:0 auto;padding:0 40px;display:flex;align-items:center;justify-content:space-between;height:68px}
.nav-logo{cursor:pointer;display:flex;align-items:center}
.nav-logo img{height:34px;width:auto;display:block}
.nav-links{display:flex;gap:36px;list-style:none}
.nav-links a{text-decoration:none;font-size:14px;font-weight:600;color:var(--gray-dark);letter-spacing:0.2px;transition:color .15s;cursor:pointer;padding-bottom:4px;border-bottom:2px solid transparent;transition:all .2s}
.nav-links a:hover{color:var(--orange)}
.nav-links a.active{color:var(--orange);border-bottom-color:var(--orange)}
.nav-cta{background:var(--orange);color:var(--white);padding:10px 22px;border-radius:5px;font-size:14px;font-weight:500;text-decoration:none;cursor:pointer;transition:opacity .15s;display:flex;align-items:center;gap:6px;border:none}
.nav-cta:hover{opacity:.88}
.nav-cta svg{flex-shrink:0}

/* HERO */
.hero{background:#f4f4f6;min-height:520px;display:flex;align-items:center;overflow:hidden;position:relative;background-image:url("images/multilingual-dtp-provider-hero-banner.jpg");background-size:cover;background-position:right center;background-repeat:no-repeat}
.hero::before{content:"";position:absolute;inset:0;background:linear-gradient(to right,rgba(244,244,246,1) 0%,rgba(244,244,246,0.95) 30%,rgba(244,244,246,0.7) 50%,rgba(244,244,246,0) 70%);z-index:0;pointer-events:none}
.hero-inner{max-width:1200px;margin:0 auto;width:100%;padding:60px 40px;display:flex;align-items:center;position:relative;z-index:1}
.hero-left{z-index:1;position:relative}
.hero-tag{display:inline-block;color:var(--orange);font-size:11px;font-weight:700;letter-spacing:2px;text-transform:uppercase;margin-bottom:20px}
.hero-title{font-size:46px;font-weight:700;color:var(--black);line-height:1.1;margin-bottom:20px;letter-spacing:-0.5px;font-family:Arial,sans-serif}
.hero-title span{color:var(--orange)}
.hero-sub{font-size:15px;color:#444;max-width:420px;line-height:1.7;margin-bottom:36px}
.hero-btns{display:flex;gap:12px;flex-wrap:wrap}
.btn-primary{background:var(--orange);color:var(--white);padding:13px 26px;border-radius:5px;font-size:14px;font-weight:700;cursor:pointer;transition:opacity .15s;display:inline-flex;align-items:center;gap:8px;border:none;text-decoration:none}
.btn-primary:hover{opacity:.88}
.btn-secondary{background:transparent;color:var(--black);border:1.5px solid #ccc;padding:12px 24px;border-radius:5px;font-size:14px;font-weight:700;cursor:pointer;transition:all .15s;display:inline-flex;align-items:center;gap:8px;text-decoration:none}
.btn-secondary:hover{border-color:var(--orange);color:var(--orange)}

.hero-right img{width:100%;height:auto;object-position:left center}

/* SECTIONS */
.section{padding:80px 0;background:#fff}
.section-inner{max-width:1200px;margin:0 auto;padding:0 40px}
.section-alt{background:#f6f2f0}
.section-head{margin-bottom:52px;text-align:center}
.section-head-left{text-align:left;margin-bottom:48px}
.section-title{font-size:30px;font-weight:700;color:var(--black);margin-bottom:12px;display:flex;align-items:center;gap:10px;justify-content:center}
.section-title.left{justify-content:flex-start}
.section-title-accent{display:block;width:40px;height:3px;background:var(--orange);margin:12px auto 0}
.section-sub{font-size:15px;color:var(--gray-mid);max-width:560px;margin:0 auto;line-height:1.7}

/* WHY CARDS — 4 col */
.why-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.why-card{background:var(--white);border:1px solid var(--border);border-radius:10px;padding:32px 24px}
.why-icon{width:52px;height:52px;background:rgba(244,109,51,.1);border-radius:50%;display:flex;align-items:center;justify-content:center;margin-bottom:20px;color:var(--orange)}
.why-title{font-size:17px;font-weight:700;color:var(--black);margin-bottom:10px;line-height:1.3}
.why-desc{font-size:13px;color:var(--gray-mid);line-height:1.7}

/* SERVICE CARDS */
.svc-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.svc-card{border:1px solid var(--border);border-radius:12px;padding:28px;background:var(--white);transition:all .2s;position:relative;overflow:hidden;display:flex;flex-direction:column}
.svc-card::before{content:"";position:absolute;top:0;left:0;right:0;height:3px;background:var(--orange);transform:scaleX(0);transition:transform .25s;transform-origin:left}
.svc-card:hover{border-color:#ddd;box-shadow:0 8px 32px rgba(0,0,0,.07);transform:translateY(-2px)}
.svc-card:hover::before{transform:scaleX(1)}
.svc-card-top{display:flex;align-items:center;gap:14px;margin-bottom:12px}
.svc-icon{width:48px;height:48px;background:#fff4ee;border-radius:10px;display:flex;align-items:center;justify-content:center;flex-shrink:0;color:var(--orange);font-size:22px;border:1px solid rgba(244,109,51,.15)}
.svc-title{font-size:17px;font-weight:700;color:var(--black);margin-bottom:2px;font-family:Arial,sans-serif;line-height:1.2}
.svc-subtitle{font-size:12px;font-weight:600;color:var(--orange)}
.svc-divider{height:1px;background:#f0f0f0;margin-bottom:14px}
.svc-desc{font-size:13px;color:var(--gray-mid);line-height:1.7;margin-bottom:14px}
.svc-bullets{list-style:none;display:flex;flex-direction:column;gap:7px}
.svc-bullets li{font-size:13px;color:var(--gray-dark);display:flex;align-items:flex-start;gap:8px;line-height:1.5}
.svc-chk{width:18px;height:18px;border-radius:50%;border:1.5px solid rgba(244,109,51,.4);display:inline-flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:1px;background:#fff8f5;font-size:10px;color:var(--orange)}

/* PAGE HERO */
.page-hero{background:#f8f8f8 url("images/multilingual-dtp-services-hero-banner.jpg") center center / cover no-repeat;min-height:240px;display:flex;align-items:center;position:relative;overflow:hidden;border-bottom:1px solid var(--border)}
.page-hero::after{content:"";position:absolute;inset:0;background:linear-gradient(to right,rgba(248,248,248,0.97) 0%,rgba(248,248,248,0.9) 30%,rgba(248,248,248,0.5) 55%,rgba(248,248,248,0) 75%);pointer-events:none}
.page-hero-inner{max-width:1200px;margin:0 auto;width:100%;padding:52px 40px;position:relative;z-index:1}
.breadcrumb{font-size:12px;color:#999;margin-bottom:18px}
.breadcrumb a{color:#999;text-decoration:none}
.breadcrumb a:hover{color:var(--orange)}
.page-hero-title{font-size:40px;font-weight:700;color:var(--black);line-height:1;margin-bottom:12px;font-family:Arial,sans-serif;letter-spacing:-0.5px}
.page-hero-accent{width:40px;height:3px;background:var(--orange);border-radius:2px;margin-bottom:16px}
.page-hero-sub{font-size:14px;color:var(--gray-mid);max-width:380px;line-height:1.7}

/* FOOTER */
.footer{background:var(--dark);padding:0}
.footer-inner{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:2fr 1fr 1fr 1.5fr;gap:48px;padding:60px 40px 48px}
.footer-brand img{height:28px;width:auto;margin-bottom:16px}
.footer-tagline{font-size:13px;color:rgba(255,255,255,.5);line-height:1.7;max-width:220px;margin-bottom:24px}
.footer-social{display:flex;gap:10px}
.social-btn{width:34px;height:34px;border-radius:50%;border:1px solid rgba(255,255,255,.2);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.6);cursor:pointer;transition:all .15s;text-decoration:none}
.social-btn:hover{border-color:var(--orange);color:var(--orange)}
.footer-col h4{font-size:14px;font-weight:600;color:var(--white);margin-bottom:18px;line-height:1.5}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:12px}
.footer-col ul li{font-size:13px;line-height:1.5;margin:0}
.footer-col ul li a{font-size:13px;color:rgba(255,255,255,.5);text-decoration:none;cursor:pointer;transition:color .15s;line-height:1.5;display:block}
.footer-col ul li a:hover{color:var(--orange)}
.footer-contact-item{display:flex;align-items:flex-start;gap:10px;margin-bottom:12px}
.footer-contact-item:last-child{margin-bottom:0}
.footer-contact-item svg{color:var(--orange);flex-shrink:0;margin-top:2px}
.footer-contact-item span{font-size:13px;color:rgba(255,255,255,.55);line-height:1.5}

/* WORK SAMPLES */
.ws-group{margin-bottom:6px}
.ws-spacer{height:20px}
.ws-group-header{display:flex;align-items:center;gap:10px;padding:10px 16px;border-radius:6px;background:var(--gray-bar);margin-bottom:2px}
.ws-crop-mark{width:11px;height:13px;border-top:2px solid var(--orange);border-left:2px solid var(--orange);border-radius:0;flex-shrink:0}
.ws-group-title{font-size:11px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:var(--black);font-family:Arial,sans-serif}
.ws-row{display:grid;grid-template-columns:180px 1fr 1fr;align-items:center;padding:14px 16px;gap:24px;border-bottom:.5px solid var(--border);cursor:pointer;border-radius:4px;transition:background .15s}
.ws-row:last-child{border-bottom:none}
.ws-row:hover{background:#fff5f0}
.ws-row:hover .ws-row-title,.ws-row:hover .ws-tag{color:var(--orange)}
.ws-tag{font-size:12px;color:var(--black);font-weight:700}
.ws-row-title{font-size:13px;color:var(--black);line-height:1.5;transition:color .15s}
.ws-row-detail{font-size:11px;color:var(--gray-mid);text-align:right}

/* ABOUT */
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:start}
.about-text p{font-size:15px;color:var(--gray-mid);line-height:1.8;margin-bottom:16px}
.about-text p strong{color:var(--black)}
.about-points{display:flex;flex-direction:column;gap:14px}
.about-point{display:flex;gap:12px;align-items:flex-start}
.about-dot{width:6px;height:6px;border-radius:50%;background:var(--orange);flex-shrink:0;margin-top:8px}
.about-point-text{font-size:14px;color:var(--gray-dark);font-weight:700}

/* LEGAL PAGES */
.legal-content{max-width:760px;margin:0 auto}
.legal-meta{font-size:13px;color:#999;margin-bottom:28px}
.legal-content h2{font-size:21px;font-weight:700;color:var(--black);margin:36px 0 12px}
.legal-content h2:first-of-type{margin-top:0}
.legal-content p{font-size:15px;color:var(--gray-mid);line-height:1.8;margin-bottom:14px}
.legal-content ul{margin:0 0 14px;padding-left:20px}
.legal-content li{font-size:15px;color:var(--gray-mid);line-height:1.8;margin-bottom:6px}
.legal-content address{font-style:normal;font-size:15px;color:var(--gray-mid);line-height:1.8}
.legal-content address a{color:var(--orange);text-decoration:none}

/* LEGAL MODAL */
.legal-modal-overlay{display:none;position:fixed;inset:0;background:rgba(20,18,16,.65);z-index:999;align-items:center;justify-content:center;padding:24px}
.legal-modal{background:var(--white);width:100%;max-width:720px;max-height:85vh;overflow-y:auto;border-radius:12px;padding:44px 48px;position:relative}
.legal-modal-close{position:absolute;top:18px;right:18px;width:32px;height:32px;border:none;background:#f2f2f2;border-radius:50%;font-size:18px;line-height:1;color:#333;cursor:pointer;display:flex;align-items:center;justify-content:center}
.legal-modal-close:hover{background:#e6e6e6}
.legal-modal-body h1{font-size:24px;font-weight:700;color:var(--black);margin:0 0 4px;font-family:Arial,sans-serif;letter-spacing:-0.3px}
.legal-modal-body .legal-content{max-width:none}

/* CONTACT */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:64px}
.contact-block{margin-bottom:28px}
.contact-label{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:1px;color:var(--orange);margin-bottom:6px}
.contact-value{font-size:15px;color:var(--black)}
.contact-value a{color:var(--black);text-decoration:none}
.contact-value a:hover{color:var(--orange)}
.contact-form{display:flex;flex-direction:column;gap:12px}
.contact-form input,.contact-form textarea,.contact-form select{border:1px solid var(--border);border-radius:4px;padding:11px 14px;font-size:14px;font-family:Arial,sans-serif;width:100%;outline:none;transition:border-color .15s}
.contact-form input:focus,.contact-form textarea:focus{border-color:var(--orange)}
.contact-form textarea{resize:vertical;min-height:120px}
.contact-form button{background:var(--orange);color:var(--white);border:none;padding:13px 28px;border-radius:5px;font-size:14px;font-weight:700;cursor:pointer;font-family:Arial,sans-serif;transition:opacity .15s;align-self:flex-start;display:inline-flex;align-items:center;gap:6px}
.contact-form button:hover{opacity:.88}

/* POPUP */
.overlay{position:fixed;inset:0;background:rgba(0,0,0,.65);z-index:100;display:none;align-items:center;justify-content:center;padding:12px}
.overlay.open{display:flex}
.popup{background:var(--white);border-radius:10px;width:100%;max-width:98vw;height:96vh;overflow:hidden;display:flex;flex-direction:column;border:.5px solid var(--border)}
.popup-header{padding:14px 20px;border-bottom:.5px solid var(--border);display:flex;align-items:flex-start;justify-content:space-between;gap:16px;flex-shrink:0}
.popup-tag{font-size:10px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:var(--orange);margin-bottom:6px}
.popup-title{font-size:17px;font-weight:700;color:var(--black);line-height:1.4}
.popup-detail{font-size:12px;color:var(--gray-mid);margin-top:4px}
.popup-close{background:#f0f0f0;border:none;color:var(--gray-mid);width:32px;height:32px;border-radius:50%;cursor:pointer;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.popup-close:hover{background:#e0e0e0}
.popup-tabs{display:flex;gap:6px;padding:0 16px 10px;flex-shrink:0;flex-wrap:wrap}
.ptab{background:rgba(0,0,0,.06);border:.5px solid var(--border);color:var(--gray-dark);font-size:12px;font-weight:700;padding:6px 16px;border-radius:6px;cursor:pointer;font-family:Arial,sans-serif;transition:all .15s}
.ptab:hover{background:rgba(0,0,0,.1)}
.ptab.active{background:var(--orange);border-color:var(--orange);color:var(--white)}
.popup-body{overflow:hidden;padding:8px 12px;flex:1;display:flex;flex-direction:column}
.img-grid{display:grid;grid-template-columns:1fr;gap:0;height:100%}
.img-wrap{background:#f8f9fb;border-radius:8px;overflow:hidden;border:.5px solid var(--border);height:100%;display:flex;align-items:center;justify-content:center}
.img-wrap img{width:100%;height:100%;object-fit:contain;display:block}
.img-label{font-size:10px;color:var(--gray-mid);padding:6px;text-align:center;flex-shrink:0}

/* SERVICES GRID (home) */
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.service-card{border:1px solid var(--border);border-radius:10px;padding:28px 24px;transition:border-color .15s;background:var(--white)}
.service-card:hover{border-color:var(--orange)}
.service-icon{width:44px;height:44px;background:rgba(244,109,51,.1);border-radius:8px;display:flex;align-items:center;justify-content:center;margin-bottom:16px;color:var(--orange)}
.service-title{font-size:16px;font-weight:700;color:var(--black);margin-bottom:8px}
.service-desc{font-size:13px;color:var(--gray-mid);line-height:1.6}
.lang-list{display:flex;flex-wrap:wrap;gap:8px}
.lang-tag{background:var(--white);border:1px solid var(--border);padding:6px 14px;border-radius:100px;font-size:12px;color:var(--gray-dark);font-weight:700}

/* Pages that use a tinted section background (Services, Work Samples, About, Contact) */
body.alt-bg .section{background:#f6f2f0}

/* FAQ */
.faq-list{max-width:820px;margin:0 auto}
.faq-item{border:1px solid var(--border);border-radius:10px;padding:22px 26px;margin-bottom:14px;background:var(--white)}
.faq-q{font-size:15px;font-weight:700;color:var(--black);margin-bottom:8px}
.faq-a{font-size:14px;color:var(--gray-mid);line-height:1.7}
.faq-a p{margin:0 0 10px}
.faq-a p:last-child{margin-bottom:0}
