:root {
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  color-scheme: dark;
  --bg: #0b1522;
  --ink: #f7faff;
  --muted: #b9c9d9;
  --glass: rgba(23, 42, 63, .70);
  --glass-strong: rgba(21, 39, 59, .86);
  --stroke: rgba(233, 246, 255, .20);
  --stroke-soft: rgba(233, 246, 255, .12);
  --blue: #3984ef;
  --blue-deep: #1265d5;
  --blue-glow: rgba(50, 132, 242, .25);
  --shadow: 0 22px 65px rgba(0, 5, 17, .24);
  --hero-image: url('assets/hero-dark.webp');
  --hero-veil: linear-gradient(180deg, rgba(6, 17, 30, .25), rgba(6, 17, 30, .05) 34%, rgba(7, 18, 32, .32) 65%, #0b1522 100%);
}
:root[data-theme="light"] {
  color-scheme: light;
  --bg: #ecf3f9;
  --ink: #172b40;
  --muted: #52677b;
  --glass: rgba(255, 255, 255, .66);
  --glass-strong: rgba(255, 255, 255, .86);
  --stroke: rgba(255, 255, 255, .82);
  --stroke-soft: rgba(55, 95, 134, .15);
  --blue: #2672df;
  --blue-deep: #155fc8;
  --blue-glow: rgba(39, 111, 211, .18);
  --shadow: 0 22px 65px rgba(41, 76, 112, .12);
  --hero-image: url('assets/hero-light.webp');
  --hero-veil: linear-gradient(180deg, rgba(220, 238, 250, .16), rgba(237, 246, 252, .06) 36%, rgba(230, 240, 248, .30) 65%, #ecf3f9 100%);
}
:root[lang="fa"] { font-family: Vazirmatn, Tahoma, sans-serif; }
:root[lang="ar"] { font-family: 'Noto Sans Arabic', Tahoma, sans-serif; }
:root[lang="zh"] { font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif; }
:root[lang="hi"] { font-family: 'Noto Sans Devanagari', sans-serif; }
:root[lang="bn"] { font-family: 'Noto Sans Bengali', sans-serif; }
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 28px; }
body { margin: 0; min-width: 280px; overflow-x: hidden; background: var(--bg); color: var(--ink); transition: background-color .45s ease, color .45s ease; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
[hidden] { display: none !important; }
.container { width: min(1190px, calc(100% - 56px)); margin-inline: auto; }
.glass { background: var(--glass); border: 1px solid var(--stroke); box-shadow: var(--shadow); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); transition: background-color .45s ease, border-color .45s ease, box-shadow .3s ease, color .45s ease; }
:focus-visible { outline: 3px solid #74b7ff; outline-offset: 3px; }
.skip-link { position: fixed; z-index: 100; top: -100px; left: 18px; padding: 12px 18px; border-radius: 12px; background: #fff; color: #111; }
.skip-link:focus { top: 8px; }

/* Header */
.site-header { position: absolute; inset: 0 0 auto; z-index: 30; }
.header-inner { direction: ltr; display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px; align-items: center; width: min(1380px, calc(100% - 56px)); margin-inline: auto; padding-top: 26px; }
.header-control { position: relative; width: max-content; }
.menu-wrap { justify-self: end; }
.language-trigger { min-width: 152px; padding: 11px 15px 10px; border-radius: 17px; color: var(--ink); text-align: start; }
.language-main { display: flex; justify-content: space-between; align-items: center; gap: 16px; direction: ltr; font-family: Manrope, sans-serif; font-size: 19px; line-height: 1.25; letter-spacing: -.035em; }
.language-main strong { font-weight: 800; }
.flag, .language-menu img { border-radius: 3px; object-fit: cover; box-shadow: 0 2px 5px rgba(0,0,0,.2); }
.language-caption { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; line-height: 1.35; }
[dir="rtl"] .language-trigger { direction: rtl; }
.location-pill { direction: ltr; display: flex; align-items: center; gap: 9px; padding: 13px 17px; border-radius: 100px; white-space: nowrap; font: 700 13px/1.3 Manrope, sans-serif; transition: background-color .45s ease, border-color .3s ease, box-shadow .3s ease, transform .2s ease; }
.location-pill:hover { border-color: var(--blue); transform: translateY(-2px); }
.location-pill svg { width: 17px; height: 17px; color: var(--blue); }
.menu-trigger { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 48px; height: 48px; border-radius: 15px; color: var(--ink); }
.menu-trigger span { width: 19px; height: 2px; border-radius: 2px; background: currentColor; transition: transform .22s ease, opacity .22s ease; }
.menu-trigger[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
.menu-trigger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-trigger[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }
.popover { position: absolute; top: calc(100% + 10px); z-index: 40; min-width: 210px; max-height: min(440px, calc(100dvh - 105px)); overflow: auto; padding: 8px; border-radius: 18px; animation: menu-in .22s ease both; }
.language-menu { left: 0; }
.site-menu { right: 0; }
.popover button, .popover a { display: flex; align-items: center; gap: 12px; width: 100%; min-height: 44px; padding: 9px 12px; border: 0; border-radius: 11px; background: transparent; color: var(--ink); text-align: start; font-size: 14px; white-space: nowrap; }
.popover button:hover, .popover a:hover, .popover button[aria-current="true"] { background: var(--blue-glow); }
.language-menu button { direction: ltr; }
.language-menu button img { flex: none; }
.site-menu button { justify-content: space-between; }
.theme-icon { width: 18px; height: 18px; }
.theme-icon.moon { fill: currentColor; stroke: none; }
.theme-icon.sun, [data-theme="light"] .theme-icon.moon { display: none; }
[data-theme="light"] .theme-icon.sun { display: block; }
@keyframes menu-in { from { opacity: 0; transform: translateY(-7px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* Hero */
.hero { position: relative; display: flex; align-items: flex-start; min-height: 750px; height: min(930px, 100svh); isolation: isolate; overflow: hidden; background: var(--bg); }
.hero-image, .hero-shade { position: absolute; inset: 0; z-index: -1; }
.hero-image::before, .hero-image::after, .hero-shade::before, .hero-shade::after { content: ''; position: absolute; inset: 0; transition: opacity .55s ease; }
.hero-image::before { background: url('assets/hero-dark.webp') center 63% / cover no-repeat; }
.hero-image::after { background: url('assets/hero-light.webp') center 63% / cover no-repeat; opacity: 0; }
.hero-shade::before { background: linear-gradient(180deg, rgba(6, 17, 30, .25), rgba(6, 17, 30, .05) 34%, rgba(7, 18, 32, .32) 65%, #0b1522 100%); }
.hero-shade::after { background: linear-gradient(180deg, rgba(220, 238, 250, .16), rgba(237, 246, 252, .06) 36%, rgba(230, 240, 248, .30) 65%, #ecf3f9 100%); opacity: 0; }
[data-theme="light"] .hero-image::after, [data-theme="light"] .hero-shade::after { opacity: 1; }
[data-theme="light"] .hero-image::before, [data-theme="light"] .hero-shade::before { opacity: 0; }
.hero-content { display: flex; justify-content: center; padding-top: clamp(165px, 21vh, 220px); padding-bottom: 80px; }
.hero-copy { width: min(100%, 825px); padding: clamp(28px, 4.2vw, 52px) clamp(28px, 5vw, 66px); border-radius: 30px; text-align: center; }
.eyebrow { margin: 0 0 16px; color: #a8d0ff; font: 800 11px/1.6 Manrope, sans-serif; letter-spacing: .18em; text-align: center; }
[data-theme="light"] .eyebrow { color: #1768c5; }
.hero h1 { margin: 0 auto 19px; max-width: 710px; font-size: clamp(3.3rem, 6.2vw, 5.4rem); font-weight: 800; line-height: 1.12; letter-spacing: -.055em; text-wrap: balance; }
.hero-description { max-width: 620px; margin: 0 auto 29px; color: var(--ink); font-size: clamp(1.04rem, 1.6vw, 1.22rem); line-height: 1.8; text-wrap: pretty; }
.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.button { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 13px; min-height: 54px; padding: 12px 23px; border: 1px solid transparent; border-radius: 15px; overflow: hidden; font-size: 14px; font-weight: 800; line-height: 1.4; text-align: center; transition: transform .22s ease, box-shadow .25s ease, background-color .25s ease, border-color .25s ease; }
.button::before { content: ''; position: absolute; inset: 0 0 50%; border-radius: inherit; background: linear-gradient(180deg, rgba(255,255,255,.15), transparent); pointer-events: none; }
.button:hover { transform: translateY(-3px); }
.button:active { transform: translateY(0); }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--blue), var(--blue-deep)); border-color: rgba(255,255,255,.23); box-shadow: 0 10px 26px rgba(15,91,205,.28), inset 0 1px rgba(255,255,255,.18); }
.button-primary:hover { box-shadow: 0 15px 34px rgba(15,91,205,.37), inset 0 1px rgba(255,255,255,.23); }
.button-secondary { color: var(--ink); background: var(--glass-strong); border-color: var(--stroke); box-shadow: inset 0 1px rgba(255,255,255,.12); }
.button-secondary:hover { background: var(--glass); border-color: var(--blue); }
.button svg { width: 18px; height: 18px; flex: none; }
[dir="rtl"] .button svg { transform: scaleX(-1); }

/* Services: the full image is always visible, with copy centered below. */
.content-backdrop { background: var(--bg); transition: background-color .45s ease; }
.service-section { display: flex; flex-direction: column; align-items: center; gap: 0; padding-top: 98px; }
.service-cars { padding-top: 122px; }
.service-image-frame { width: min(100%, 1060px); padding: 8px; border-radius: 29px; overflow: hidden; background: var(--glass-strong); }
.service-image-frame img { width: 100%; height: auto; border-radius: 21px; object-fit: contain; }
.service-copy { position: relative; z-index: 1; width: min(100% - 80px, 800px); margin-top: -34px; padding: 34px clamp(32px, 5vw, 62px) 42px; border: 1px solid var(--stroke); border-radius: 24px; background: var(--glass-strong); box-shadow: var(--shadow); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); text-align: center; transition: background-color .45s ease, border-color .45s ease; }
.section-index { margin-bottom: 13px; color: var(--blue); }
.service-copy h2, .contact-panel h2 { margin: 0 auto 17px; max-width: 680px; font-size: clamp(2.15rem, 4vw, 3.65rem); font-weight: 800; line-height: 1.21; letter-spacing: -.045em; text-wrap: balance; }
.service-copy p:not(.eyebrow), .contact-intro p:not(.eyebrow) { margin: 0 auto 26px; color: var(--muted); font-size: 1.02rem; line-height: 1.9; }
.service-copy .button { min-width: 175px; }

/* Contact */
.contact-section { padding-block: 130px 94px; }
.contact-panel { width: min(100%, 1060px); margin-inline: auto; padding: clamp(25px, 4.6vw, 56px); border-radius: 31px; background: var(--glass-strong); text-align: center; }
.contact-intro { max-width: 730px; margin-inline: auto; }
.contact-intro p:not(.eyebrow) { max-width: 670px; margin-bottom: 30px; }
.contact-details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; margin-bottom: 25px; }
.detail { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 9px; min-height: 153px; padding: 18px; border-radius: 19px; box-shadow: none; text-align: center; }
#address { scroll-margin-top: 32px; }
.detail:hover { border-color: var(--blue); }
.detail-icon { display: grid; place-items: center; flex: none; width: 39px; height: 39px; border-radius: 12px; background: var(--blue-glow); color: var(--blue); }
.detail-icon svg { width: 19px; height: 19px; }
.detail small { display: block; margin-bottom: 4px; color: var(--muted); font-size: 12px; }
.detail strong { display: block; font-size: 15px; font-weight: 800; overflow-wrap: anywhere; text-align: center; }
.contact-links { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 7px; padding: 7px; margin-bottom: 25px; border-radius: 20px; box-shadow: none; }
.contact-link { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 9px; min-height: 89px; padding: 12px 7px; border-radius: 14px; font: 800 13px/1.35 Manrope, sans-serif; transition: background-color .22s ease, transform .22s ease; }
.contact-link:hover { transform: translateY(-2px); background: var(--blue-glow); }
.contact-link svg { width: 24px; height: 24px; }
.contact-link.whatsapp svg { color: #26bd6b; }
.contact-link.viber svg { color: #9880ec; }
.contact-link.telegram svg { color: #33a0ed; }
.contact-link.phone svg { color: var(--ink); }
.map-frame { height: 340px; padding: 7px; border-radius: 21px; overflow: hidden; box-shadow: none; }
.map-frame iframe { display: block; width: 100%; height: 100%; border: 0; border-radius: 14px; background: #d9e5ee; }
.site-footer { padding: 3px 16px 42px; background: var(--bg); color: var(--muted); text-align: center; direction: ltr; font: 500 12px/1.6 Manrope, sans-serif; transition: background-color .45s ease; }
.toast { position: fixed; z-index: 50; bottom: 25px; left: 50%; width: max-content; max-width: calc(100% - 32px); padding: 13px 20px; border-radius: 14px; opacity: 0; pointer-events: none; transform: translate(-50%, 20px); font-size: 14px; text-align: center; transition: opacity .25s ease, transform .25s ease; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 700px) {
  .container { width: min(100% - 32px, 560px); }
  .header-inner { width: calc(100% - 30px); padding-top: 15px; grid-template-columns: auto minmax(0, 1fr) auto; gap: 5px; align-items: center; }
  .language-trigger { min-width: 116px; padding: 8px 9px; }
  .language-main { gap: 8px; font-size: 17px; }
  .language-caption { font-size: 11px; }
  .menu-trigger { width: 44px; height: 44px; }
  .location-pill { grid-column: 2; grid-row: 1; justify-self: center; min-width: 0; max-width: 100%; min-height: 44px; gap: 6px; padding: 9px 10px; font-size: 10.5px; }
  .location-pill svg { flex: none; width: 15px; height: 15px; }
  .location-pill span { min-width: 0; overflow: hidden; text-overflow: ellipsis; }
  .hero { min-height: 780px; height: auto; }
  .hero-image::before, .hero-image::after { background-position: 54% center; }
  .hero-content { padding-top: 186px; padding-bottom: 130px; }
  .hero-copy { padding: 27px 23px 29px; border-radius: 25px; }
  .hero h1 { font-size: clamp(2.35rem, 9.3vw, 3.6rem); line-height: 1.2; margin-bottom: 14px; }
  .hero-description { font-size: 1rem; line-height: 1.72; margin-bottom: 23px; }
  .eyebrow { font-size: 10px; letter-spacing: .13em; margin-bottom: 12px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .button { width: 100%; }
  .button { min-height: 52px; padding: 12px 16px; }
  .service-section { padding-top: 68px; }
  .service-cars { padding-top: 92px; }
  .service-image-frame { padding: 5px; border-radius: 21px; }
  .service-image-frame img { border-radius: 16px; }
  .service-copy { width: calc(100% - 14px); margin-top: 15px; padding: 25px 19px 29px; border-radius: 20px; }
  .service-copy h2, .contact-panel h2 { font-size: clamp(2rem, 8vw, 2.8rem); line-height: 1.27; }
  .service-copy p:not(.eyebrow), .contact-intro p:not(.eyebrow) { font-size: 1rem; line-height: 1.85; margin-bottom: 21px; }
  .contact-section { padding-block: 100px 62px; }
  .contact-panel { padding: 20px; border-radius: 24px; }
  .contact-details { gap: 9px; margin-bottom: 17px; }
  .detail { min-height: 142px; padding: 12px 7px; }
  .detail strong { font-size: 12px; }
  .contact-links { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px; margin-bottom: 17px; }
  .contact-link { min-height: 71px; flex-direction: row; font-size: 12px; }
  .contact-link svg { width: 21px; height: 21px; }
  .map-frame { height: 280px; }
  .site-footer { padding-bottom: 30px; }
}
@media (max-width: 370px) {
  .header-inner { width: calc(100% - 22px); gap: 3px; }
  .language-trigger { min-width: 112px; }
  .location-pill { padding-inline: 7px; font-size: 10px; }
  .hero-content { padding-top: 172px; }
  .hero-copy { padding-inline: 17px; }
  .hero h1 { font-size: 2.25rem; }
  .contact-panel { padding: 15px; }
  .detail strong { font-size: 11px; }
}
@media (max-width: 310px) {
  .location-pill span { display: none; }
  .location-pill { width: 36px; height: 36px; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
