:root {
  --navy-950: #050b14;
  --navy-900: #07111f;
  --navy-850: #0a1728;
  --navy-800: #0c1d32;
  --sky-500: #00aeea;
  --sky-400: #2bc4f3;
  --sky-300: #78dcf9;
  --white: #ffffff;
  --ink: #102037;
  --muted: #637086;
  --surface: #f5f8fb;
  --line: #dfe8f0;
  --success: #25d366;
  --shadow: 0 24px 70px rgba(4, 20, 38, 0.15);
  --radius-lg: 30px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Cairo", system-ui, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
html[lang="en"] body { font-family: "Inter", system-ui, sans-serif; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; inset-block-start: 10px; inset-inline-start: 10px; z-index: 1000; padding: 10px 16px; background: white; color: var(--navy-900); border-radius: 8px; transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: rgba(5, 11, 20, .92);
  backdrop-filter: blur(18px);
}
.header-inner { min-height: 88px; display: grid; grid-template-columns: 118px 1fr auto; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; justify-content: center; width: 102px; height: 78px; overflow: hidden; }
.brand img { width: 100%; height: 100%; object-fit: contain; }
.primary-nav { display: flex; justify-content: center; align-items: center; gap: 8px; }
.nav-link { position: relative; color: #aebed0; font-weight: 600; padding: 10px 18px; border-radius: 999px; transition: color .25s, background .25s; }
.nav-link:hover, .nav-link.active { color: white; background: rgba(43, 196, 243, .12); }
.nav-link.active::after { content: ""; position: absolute; inset-inline: 25%; bottom: 4px; height: 2px; border-radius: 2px; background: var(--sky-400); }
.language-toggle, .menu-toggle { border: 0; cursor: pointer; color: white; background: transparent; }
.language-toggle { display: inline-flex; align-items: center; gap: 8px; min-height: 42px; padding: 8px 13px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; font-weight: 700; }
.language-toggle:hover { border-color: var(--sky-400); color: var(--sky-300); }
.language-toggle svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; border-radius: 2px; background: white; }

.page-view { min-height: 60vh; animation: viewIn .45s ease both; }
@keyframes viewIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.hero { position: relative; overflow: hidden; color: white; background: radial-gradient(circle at 72% 25%, rgba(0,174,234,.18), transparent 26%), linear-gradient(135deg, var(--navy-950), var(--navy-800)); }
.hero::before { content: ""; position: absolute; width: 620px; height: 620px; inset-inline-end: -300px; top: -360px; border: 1px solid rgba(43,196,243,.2); border-radius: 50%; box-shadow: 0 0 0 70px rgba(43,196,243,.035), 0 0 0 140px rgba(43,196,243,.025); }
.hero-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 68px; min-height: 680px; padding-block: 72px; }
.status-badge { display: inline-flex; align-items: center; gap: 10px; padding: 7px 13px; color: #cfe5ef; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 999px; font-size: .86rem; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 5px rgba(37,211,102,.15); }
.eyebrow, .section-kicker { color: var(--sky-400); font-weight: 800; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; }
.hero-copy .eyebrow { margin: 26px 0 4px; }
.hero-copy h1 { max-width: 620px; margin: 0; font-size: clamp(2.5rem, 5.2vw, 5.25rem); line-height: 1.12; letter-spacing: -.04em; }
html[dir="rtl"] .hero-copy h1 { letter-spacing: -.025em; }
.hero-lead { max-width: 620px; margin: 26px 0 0; color: #b7c7d9; font-size: 1.05rem; line-height: 1.95; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 10px; padding: 12px 23px; border-radius: 12px; font-weight: 700; transition: transform .25s, box-shadow .25s, background .25s; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 21px; fill: currentColor; }
.button-primary { color: #03131a; background: var(--sky-400); box-shadow: 0 14px 30px rgba(0,174,234,.22); }
.button-primary:hover { background: var(--sky-300); box-shadow: 0 18px 34px rgba(0,174,234,.3); }
.button-secondary { color: white; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06); }
.quick-info { display: flex; flex-wrap: wrap; gap: 20px 28px; margin-top: 35px; color: #c1d0df; font-size: .87rem; }
.quick-info div { display: flex; align-items: center; gap: 8px; }
.quick-info svg { width: 19px; fill: none; stroke: var(--sky-400); stroke-width: 1.7; }

.carousel { position: relative; max-width: 590px; margin-inline: auto; isolation: isolate; }
.carousel::before { content: ""; position: absolute; inset: 7% -5% -7% 8%; z-index: -2; border: 1px solid rgba(43,196,243,.26); border-radius: var(--radius-lg); transform: rotate(3deg); }
.carousel-frame { position: relative; aspect-ratio: 1/1; min-height: 280px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); background: white; box-shadow: 0 35px 80px rgba(0,0,0,.35); }
.slide { position: absolute; z-index: 0; inset: 0; opacity: 0; visibility: hidden; transform: scale(1.035); transition: opacity .75s ease, transform 1.1s ease, visibility 0s linear .75s; pointer-events: none; }
.slide:first-child { opacity: 1; visibility: visible; }
.slide.is-active { z-index: 1; opacity: 1; visibility: visible; transform: scale(1); transition-delay: 0s; pointer-events: auto; }
.slide img { display: block; width: 100%; height: 100%; object-fit: cover; }
.carousel-control { position: absolute; z-index: 3; top: 50%; width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: white; background: rgba(5,11,20,.7); backdrop-filter: blur(10px); cursor: pointer; transform: translateY(-50%); transition: background .2s, transform .2s; }
.carousel-control:hover { background: var(--sky-500); transform: translateY(-50%) scale(1.05); }
.carousel-control svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 2; }
.carousel-control.previous { left: -22px; }
.carousel-control.next { right: -22px; }
html[dir="rtl"] .carousel-control.previous { right: -22px; left: auto; }
html[dir="rtl"] .carousel-control.next { left: -22px; right: auto; }
html[dir="rtl"] .carousel-control svg { transform: scaleX(-1); }
.carousel-dots { position: absolute; z-index: 3; display: flex; gap: 7px; inset-inline-start: 50%; bottom: -34px; transform: translateX(-50%); }
html[dir="rtl"] .carousel-dots { transform: translateX(50%); }
.carousel-dot { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 99px; background: #58697e; cursor: pointer; transition: width .25s, background .25s; }
.carousel-dot.active { width: 28px; background: var(--sky-400); }
.carousel-accent { position: absolute; z-index: -1; inset-inline-end: -38px; top: 30px; color: rgba(255,255,255,.035); font-size: 5rem; font-weight: 800; writing-mode: vertical-rl; letter-spacing: .15em; }

.opening-strip { padding: 66px 0; background: white; border-bottom: 1px solid var(--line); }
.opening-grid { display: grid; grid-template-columns: 1fr 360px; gap: 70px; align-items: center; }
.opening-copy h2 { margin: 6px 0 10px; font-size: clamp(1.8rem, 3vw, 2.55rem); line-height: 1.3; }
.opening-copy p { max-width: 720px; margin: 0; color: var(--muted); }
.opening-card { position: relative; overflow: hidden; padding: 28px; color: white; border-radius: var(--radius-md); background: linear-gradient(135deg, var(--navy-900), #123c5c); box-shadow: var(--shadow); }
.opening-card::after { content: ""; position: absolute; width: 140px; height: 140px; inset-inline-end: -60px; top: -65px; border: 20px solid rgba(43,196,243,.15); border-radius: 50%; }
.opening-card span, .opening-card small, .opening-card strong { position: relative; z-index: 1; display: block; }
.opening-card span { color: var(--sky-300); font-size: .8rem; font-weight: 800; letter-spacing: .09em; }
.opening-card strong { margin-top: 7px; font-size: 1.45rem; }
.opening-card small { margin-top: 4px; color: #b7c8d8; }

.page-hero { padding: 88px 0 52px; text-align: center; }
.page-hero h1, .about-copy h1 { margin: 5px 0 12px; color: var(--navy-900); font-size: clamp(2.4rem, 5vw, 4.6rem); line-height: 1.2; letter-spacing: -.035em; }
.page-hero p { max-width: 700px; margin: 0 auto; color: var(--muted); font-size: 1.05rem; }
.product-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; padding-bottom: 90px; }
.product-card { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: white; box-shadow: 0 12px 35px rgba(11,32,52,.06); transition: transform .3s, box-shadow .3s; }
.product-card:hover { transform: translateY(-7px); box-shadow: 0 20px 50px rgba(11,32,52,.13); }
.product-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; background: #f4f6f8; }
.product-card div { padding: 17px 20px 20px; border-top: 1px solid var(--line); }
.product-card span { color: var(--sky-500); font-size: .78rem; font-weight: 800; }
.product-card h2 { margin: 3px 0 0; color: var(--navy-900); font-family: "Inter", system-ui, sans-serif; font-size: 1.05rem; }

.about-layout { display: grid; grid-template-columns: 1fr .85fr; gap: 80px; align-items: center; padding-block: 90px; }
.about-copy > p { max-width: 650px; color: var(--muted); font-size: 1.06rem; line-height: 2; }
.service-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.service-tags span { padding: 8px 14px; border: 1px solid #cfe2ed; border-radius: 999px; color: #254259; background: #edf7fb; font-size: .88rem; font-weight: 600; }
.contact-panel { overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); color: white; background: linear-gradient(145deg, var(--navy-950), var(--navy-800)); box-shadow: var(--shadow); }
.contact-panel > img { width: 210px; height: 190px; margin: 8px auto 0; object-fit: contain; }
.contact-list { border-top: 1px solid rgba(255,255,255,.08); }
.contact-list > a, .contact-list > div { display: flex; align-items: flex-start; gap: 16px; padding: 20px 28px; border-bottom: 1px solid rgba(255,255,255,.08); transition: background .2s; }
.contact-list > a:hover { background: rgba(43,196,243,.08); }
.contact-list svg { flex: 0 0 auto; width: 22px; margin-top: 3px; fill: none; stroke: var(--sky-400); stroke-width: 1.7; }
.contact-list span { min-width: 0; }
.contact-list small, .contact-list strong, .contact-list em { display: block; }
.contact-list small { color: #91a4b9; font-size: .72rem; font-style: normal; }
.contact-list strong { overflow-wrap: anywhere; font-size: .92rem; font-weight: 600; }
.contact-list em { margin-top: 3px; color: #ff9a9a; font-size: .8rem; font-style: normal; }

.site-footer { color: #b6c5d4; background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr 1fr; gap: 70px; padding-block: 58px; }
.footer-brand img { width: 170px; height: 150px; object-fit: contain; }
.footer-brand p { margin: 3px 0 0; color: #8498ab; font-size: .9rem; }
.footer-links, .footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-grid strong { margin-bottom: 7px; color: white; }
.footer-grid a:hover { color: var(--sky-400); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-block: 20px; border-top: 1px solid rgba(255,255,255,.08); color: #71869a; font-size: .78rem; }
.whatsapp-float { position: fixed; z-index: 90; inset-inline-end: 22px; bottom: 22px; display: inline-flex; align-items: center; gap: 9px; min-height: 52px; padding: 11px 16px; border-radius: 999px; color: white; background: #16b957; box-shadow: 0 16px 35px rgba(22,185,87,.32); font-weight: 700; transition: transform .2s, background .2s; }
.whatsapp-float:hover { transform: translateY(-3px); background: #0fa54a; }
.whatsapp-float svg { width: 24px; fill: currentColor; }

@media (max-width: 960px) {
  .header-inner { grid-template-columns: 110px 1fr auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 65px; padding-block: 65px 95px; }
  .hero-copy { max-width: 740px; text-align: center; margin-inline: auto; }
  .hero-copy h1, .hero-lead { margin-inline: auto; }
  .status-badge { justify-content: center; }
  .hero-actions, .quick-info { justify-content: center; }
  .carousel { width: min(86vw, 560px); }
  .opening-grid, .about-layout { grid-template-columns: 1fr; gap: 38px; }
  .opening-card { max-width: 460px; }
  .product-gallery { grid-template-columns: repeat(2, 1fr); }
  .about-layout { padding-block: 70px; }
  .contact-panel { max-width: 650px; width: 100%; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header { overflow: visible; }
  .header-inner { min-height: 72px; grid-template-columns: 1fr auto auto; gap: 8px; }
  .brand { width: 76px; height: 64px; }
  .menu-toggle { display: block; order: 3; }
  .language-toggle { min-height: 40px; padding: 7px 11px; }
  .primary-nav { position: absolute; top: calc(100% + 1px); inset-inline: 14px; display: none; flex-direction: column; align-items: stretch; gap: 5px; padding: 10px; border: 1px solid rgba(255,255,255,.1); border-radius: 0 0 16px 16px; background: rgba(5,11,20,.98); box-shadow: 0 20px 40px rgba(0,0,0,.28); }
  .primary-nav.open { display: flex; }
  .nav-link { text-align: center; }
  .nav-link.active::after { display: none; }
  .hero-grid { gap: 54px; min-height: 0; padding-block: 48px 78px; }
  .hero-copy h1 { font-size: clamp(2.25rem, 12vw, 3.5rem); }
  .hero-lead { font-size: .96rem; line-height: 1.85; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .quick-info { align-items: center; flex-direction: column; gap: 10px; }
  .carousel { width: calc(100% - 22px); }
  .carousel-control { width: 40px; height: 40px; }
  .carousel-control.previous { left: -14px; }
  .carousel-control.next { right: -14px; }
  html[dir="rtl"] .carousel-control.previous { right: -14px; }
  html[dir="rtl"] .carousel-control.next { left: -14px; }
  .opening-strip { padding: 50px 0; }
  .opening-copy h2 { font-size: 1.65rem; }
  .page-hero { padding: 58px 0 35px; }
  .page-hero h1, .about-copy h1 { font-size: 2.35rem; }
  .product-gallery { grid-template-columns: 1fr; gap: 16px; padding-bottom: 60px; }
  .about-layout { padding-block: 58px; gap: 34px; }
  .contact-list > a, .contact-list > div { padding: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-block: 45px; }
  .footer-bottom { align-items: center; flex-direction: column; text-align: center; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { width: 54px; height: 54px; justify-content: center; padding: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
