  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
 
  :root {
    --navy: #0a1628;
    --deep: #060e1a;
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --steel: #2a3f5f;
    --mist: #8fa8c8;
    --white: #f4f1eb;
    --text: #b8c8d8;
    --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
    --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-ui: 'Plus Jakarta Sans', system-ui, sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--deep);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  .icon {
    display: block;
    flex-shrink: 0;
    color: var(--gold);
    stroke: currentColor;
  }
 
  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 24px 60px;
    background: linear-gradient(180deg, rgba(6,14,26,.95) 0%, transparent 100%);
    backdrop-filter: blur(4px);
  }
  .nav-logo {
    font-family: var(--font-display);
    font-size: 22px; font-weight: 500; letter-spacing: 0.06em;
    color: var(--gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 50px;
  }
  .nav-logo span { color: var(--white); font-weight: 300; }
  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 1px solid rgba(201,168,76,.35);
    cursor: pointer;
  }
  .nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--gold);
    transition: transform .3s, opacity .3s;
  }
  nav.is-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  nav.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
  nav.is-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    font-family: var(--font-ui);
    font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--mist); text-decoration: none;
    transition: color .3s;
  }
  .nav-links a:hover { color: var(--gold); }
 
  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    padding: 108px 60px 72px;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      url('images/hero-company.jpg') center/cover no-repeat;
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background:
      linear-gradient(105deg, rgba(6,14,26,.92) 0%, rgba(6,14,26,.55) 45%, rgba(6,14,26,.75) 100%),
      linear-gradient(180deg, rgba(6,14,26,.5) 0%, rgba(6,14,26,.88) 85%, var(--deep) 100%);
  }
  .hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 50% at 75% 40%, rgba(201,168,76,.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-grid {
    position: absolute; inset: 0; pointer-events: none; z-index: 1;
    background-image:
      linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
    background-size: 80px 80px;
  }

  .hero-inner {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 48px;
    width: 100%;
  }

  .hero-brand {
    align-self: flex-start;
    line-height: 0;
    padding: 20px 28px;
    background: linear-gradient(160deg, rgba(10,22,40,.94), rgba(6,14,26,.98));
    border: 1px solid rgba(201,168,76,.35);
    box-shadow: 0 16px 48px rgba(0,0,0,.45);
    overflow: hidden;
    max-width: min(420px, 92vw);
    opacity: 0;
    animation: fadeUp .85s .1s forwards;
  }
  .hero-brand img {
    display: block;
    width: min(360px, 82vw);
    height: auto;
    margin: -6% auto;
    transform: scale(1.12);
    filter: drop-shadow(0 4px 20px rgba(0,0,0,.35));
  }

  .hero-bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px 80px;
    align-items: end;
  }

  .hero-content { max-width: 720px; }
  .hero-tagline {
    font-family: var(--font-ui);
    font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 18px;
    display: flex; align-items: center; gap: 14px;
    opacity: 0; animation: fadeUp .8s .25s forwards;
  }
  .hero-tagline::before {
    content: ''; display: block; width: 36px; height: 1px; background: var(--gold);
  }
  .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(48px, 6.5vw, 92px);
    font-weight: 400; line-height: 1.05;
    letter-spacing: -1px;
    opacity: 0; animation: fadeUp .9s .35s forwards;
  }
  .hero h1 em { font-style: normal; color: var(--gold); }
  .hero-sub {
    margin-top: 22px; font-size: clamp(15px, 1.6vw, 17px); line-height: 1.75;
    color: var(--text); max-width: 540px;
    opacity: 0; animation: fadeUp .9s .5s forwards;
  }
  .hero-cta {
    margin-top: 36px; display: flex; flex-wrap: wrap; gap: 20px; align-items: center;
    opacity: 0; animation: fadeUp .9s .65s forwards;
  }
  .btn-primary {
    background: var(--gold); color: var(--deep);
    font-family: var(--font-ui);
    font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
    font-weight: 700;
    padding: 16px 36px; border: none; cursor: pointer;
    text-decoration: none;
    transition: background .3s, transform .2s;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-ghost {
    font-family: var(--font-ui);
    font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--white); text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.3);
    padding-bottom: 2px;
    transition: color .3s, border-color .3s;
  }
  .btn-ghost:hover { color: var(--gold); border-color: var(--gold); }
 
  .hero-stats {
    display: flex;
    flex-direction: column;
    gap: 28px;
    text-align: right;
    padding: 28px 32px;
    background: rgba(10,22,40,.55);
    border: 1px solid rgba(201,168,76,.2);
    backdrop-filter: blur(8px);
    opacity: 0;
    animation: fadeLeft .9s .8s forwards;
  }
  .hero-stats .stat {
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .hero-stats .stat:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  .stat-num {
    font-family: var(--font-display);
    font-size: 42px; font-weight: 300; color: var(--gold);
    line-height: 1;
  }
  .stat-label {
    font-family: var(--font-ui);
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--mist); margin-top: 4px;
  }
 
  .scroll-hint {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
    z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
    opacity: 0; animation: fadeIn 1s 1.4s forwards;
  }
  .scroll-hint span {
    font-family: var(--font-ui);
    font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--mist);
  }
  .scroll-line {
    width: 1px; height: 40px; background: linear-gradient(180deg, var(--gold), transparent);
    animation: scrollPulse 2s infinite;
  }
 
  /* ── MARQUEE ── */
  .marquee-bar {
    background: var(--gold);
    padding: 14px 0; overflow: hidden;
  }
  .marquee-track {
    display: flex; gap: 0; white-space: nowrap;
    animation: marquee 30s linear infinite;
  }
  .marquee-item {
    font-family: var(--font-ui);
    font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--deep); font-weight: 600;
    padding: 0 48px;
  }
  .marquee-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 4px;
    background: rgba(10,22,40,.35);
    transform: rotate(45deg);
    vertical-align: middle;
  }
 
  /* ── ABOUT ── */
  .about {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    min-height: 80vh;
  }
  .about-image {
    position: relative; overflow: hidden;
    background: url('images/about-company.jpg') center/cover no-repeat;
    min-height: 600px;
  }
  .about-image::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent 50%, var(--navy) 100%),
                linear-gradient(180deg, transparent 60%, rgba(6,14,26,.3) 100%);
  }
  .about-image-badge {
    position: absolute; bottom: 48px; left: 48px; z-index: 2;
    background: var(--gold); padding: 20px 28px;
  }
  .badge-num {
    font-family: var(--font-display);
    font-size: 52px; font-weight: 300; color: var(--deep); line-height: 1;
  }
  .badge-txt {
    font-family: var(--font-ui);
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--deep); margin-top: 4px; font-weight: 600;
  }
 
  .about-content {
    background: var(--navy);
    padding: 80px 72px 80px 60px;
    display: flex; flex-direction: column; justify-content: center;
  }
  .section-label {
    font-family: var(--font-ui);
    font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 20px;
    display: flex; align-items: center; gap: 12px;
  }
  .section-label::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
 
  .about-content h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 3.5vw, 52px); font-weight: 300; line-height: 1.2;
  }
  .about-content p {
    font-size: 15px; line-height: 1.8; color: var(--text);
    margin-top: 24px; max-width: 460px;
  }
  .about-pillars {
    margin-top: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  }
  .pillar {
    border-left: 2px solid var(--gold);
    padding-left: 20px;
  }
  .pillar-name {
    font-family: var(--font-ui);
    font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
    color: var(--white); font-weight: 600;
  }
  .pillar-desc {
    font-size: 13px; color: var(--mist); line-height: 1.6; margin-top: 4px;
  }
 
  /* ── SERVICES (Core Expertise) ── */
  .services { padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 60px); background: var(--deep); }
  .services-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    gap: 32px;
    margin-bottom: clamp(48px, 6vw, 72px);
    border-bottom: 1px solid rgba(201,168,76,.15);
    padding-bottom: clamp(28px, 4vw, 40px);
  }
  .services-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 5.5vw, 76px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
  }
  .rtl-slide {
    display: inline-block;
    animation: slideRtl 1.2s ease forwards;
    transform: translateX(40px);
    opacity: 0;
  }
  @keyframes slideRtl {
    from {
      transform: translateX(40px);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  .services-header p {
    font-size: clamp(14px, 1.5vw, 16px);
    color: var(--text);
    max-width: 340px;
    line-height: 1.75;
    text-align: right;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(12px, 2vw, 20px);
  }
  .service-card {
    background: var(--navy);
    padding: clamp(36px, 4vw, 52px) clamp(28px, 3.5vw, 44px);
    position: relative; overflow: hidden;
    transition: background .4s;
    cursor: default;
  }
  .service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 2px; background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform .4s;
  }
  .service-card:hover::before { transform: scaleX(1); }
  .service-card:hover { background: #0f1f38; }
 
  .service-num {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 300;
    color: rgba(201,168,76,.12);
    line-height: 1;
    position: absolute;
    top: clamp(12px, 2vw, 20px);
    right: clamp(16px, 2.5vw, 28px);
  }
  .service-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201,168,76,.28);
    background: rgba(201,168,76,.07);
  }
  .service-icon .icon {
    width: 26px;
    height: 26px;
  }
  .service-card h3 {
    font-family: var(--font-ui);
    font-size: clamp(17px, 2vw, 22px);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--white);
    line-height: 1.25;
  }
  .service-card p {
    font-size: clamp(14px, 1.4vw, 15px);
    line-height: 1.75;
    color: var(--text);
  }
  .service-list {
    margin-top: 20px; list-style: none; display: flex; flex-direction: column; gap: 8px;
  }
  .service-list li {
    font-size: 13px; color: var(--mist);
    display: flex; align-items: flex-start; gap: 10px;
  }
  .service-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    margin-top: 8px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
  }
 
  /* ── PORTS (Oman's Strategic Port Gateways) ── */
  .ports {
    padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 60px);
    background: var(--navy);
    text-align: center;
  }
  .ports-header {
    max-width: 900px;
    margin: 0 auto;
  }
  .ports-header .section-label {
    justify-content: center;
  }
  .ports-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-top: clamp(12px, 2vw, 20px);
  }
  .ports-grid {
    margin-top: clamp(40px, 5vw, 64px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(12px, 2vw, 20px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }
  .port-card {
    position: relative;
    overflow: hidden;
    min-height: clamp(280px, 32vw, 380px);
    display: flex;
    align-items: flex-end;
    border-radius: 2px;
  }
  .port-card img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(.58) saturate(.75);
    transition: transform .6s, filter .6s;
  }
  .port-card:hover img {
    transform: scale(1.05);
    filter: brightness(.72) saturate(.9);
  }
  .port-overlay {
    position: relative; z-index: 2; padding: clamp(28px, 3vw, 40px) clamp(24px, 2.5vw, 32px);
    width: 100%;
    background: linear-gradient(0deg, rgba(6,14,26,.92) 0%, rgba(6,14,26,.2) 55%, transparent 100%);
  }
  .port-name {
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 400;
    line-height: 1.1;
  }
  .port-desc {
    font-family: var(--font-ui);
    font-size: clamp(11px, 1.2vw, 13px);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gold);
    margin-top: 8px;
  }
 
  /* ── WHY ── */
  .why { padding: 120px 60px; background: var(--deep); }
  .why-inner {
    display: grid; grid-template-columns: 380px 1fr; gap: 100px; align-items: start;
  }
  .why-left h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 58px); font-weight: 300; line-height: 1.15;
    position: sticky; top: 100px;
  }
  .why-left h2 em { font-style: normal; color: var(--gold); display: block; }
 
  .why-items { display: flex; flex-direction: column; gap: 0; }
  .why-item {
    padding: 44px 0; border-bottom: 1px solid rgba(255,255,255,.07);
    display: grid; grid-template-columns: 80px 1fr; gap: 32px; align-items: start;
    transition: padding-left .3s;
  }
  .why-item:hover { padding-left: 8px; }
  .why-item:first-child { border-top: 1px solid rgba(255,255,255,.07); }
  .why-n {
    font-family: var(--font-display);
    font-size: 48px; font-weight: 300; color: rgba(201,168,76,.25); line-height: 1;
  }
  .why-item h3 {
    font-family: var(--font-ui);
    font-size: 17px; letter-spacing: 1px; text-transform: uppercase;
    font-weight: 600; margin-bottom: 12px;
  }
  .why-item p { font-size: 14px; color: var(--text); line-height: 1.75; }
 
  /* ── VISION ── */
  .vision {
    position: relative; padding: 140px 60px; overflow: hidden;
    background: var(--steel);
    text-align: center;
  }
  .vision-bg {
    position: absolute; inset: 0;
    background: url('images/hero-company.jpg') center/cover no-repeat;
    filter: brightness(.18) saturate(.5);
  }
  .vision-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
  .vision-content h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 72px); font-weight: 300; line-height: 1.1;
  }
  .vision-content h2 em { font-style: normal; color: var(--gold); }
  .vision-content p {
    margin-top: 28px; font-size: 16px; color: var(--text); line-height: 1.8;
  }
  .vision-tag {
    display: inline-block; margin-top: 44px;
    border: 1px solid rgba(201,168,76,.4);
    padding: 14px 32px;
    font-family: var(--font-ui);
    font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold);
  }
 
  /* ── MISSION ── */
  .mission { padding: 100px 60px; background: var(--gold); }
  .mission-inner { max-width: 860px; margin: 0 auto; }
  .mission-inner blockquote {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 40px); font-weight: 400;
    color: var(--deep); line-height: 1.4; text-align: center;
  }
  .mission-inner cite {
    display: block; margin-top: 32px; text-align: center;
    font-family: var(--font-ui);
    font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
    color: rgba(10,22,40,.6); font-style: normal;
  }
 
  /* ── CONTACT ── */
  .contact {
    padding: 120px 60px; background: var(--navy);
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }
  .contact-left h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 58px); font-weight: 300; line-height: 1.15;
  }
  .contact-left p { font-size: 15px; color: var(--text); line-height: 1.8; margin-top: 24px; }
  .contact-details { margin-top: 48px; display: flex; flex-direction: column; gap: 24px; }
  .contact-row { display: flex; align-items: flex-start; gap: 20px; }
  .c-icon {
    width: 44px; height: 44px; border: 1px solid rgba(201,168,76,.3);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    background: rgba(201,168,76,.06);
  }
  .c-icon .icon {
    width: 20px;
    height: 20px;
  }
  .c-info {}
  .c-label {
    font-family: var(--font-ui);
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 4px;
  }
  .c-val { font-size: 15px; color: var(--white); }
  .c-val a { color: var(--white); text-decoration: none; }
  .c-val a:hover { color: var(--gold); }
 
  .contact-right {}
  .contact-form { display: flex; flex-direction: column; gap: 20px; }
  .form-field { display: flex; flex-direction: column; gap: 8px; }
  .form-field label {
    font-family: var(--font-ui);
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--mist);
  }
  .form-field input, .form-field textarea, .form-field select {
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
    color: var(--white); padding: 14px 18px;
    font-family: var(--font-body); font-size: 14px;
    outline: none; transition: border-color .3s;
    resize: none;
  }
  .form-field input:focus, .form-field textarea:focus, .form-field select:focus {
    border-color: var(--gold);
  }
  .form-field select option { background: var(--navy); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .form-submit {
    background: var(--gold); color: var(--deep); border: none;
    font-family: var(--font-ui);
    font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
    font-weight: 600; padding: 18px 40px; cursor: pointer;
    transition: background .3s, transform .2s;
    align-self: flex-start;
  }
  .form-submit:hover { background: var(--gold-light); transform: translateY(-2px); }
  .form-honey { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
  .form-status {
    font-size: 13px; color: var(--mist); margin-top: 4px; min-height: 1.25em;
  }
  .form-status.is-error { color: #e8a0a0; }
  .form-status.is-success { color: var(--gold-light); }
 
  /* ── FOOTER ── */
  footer {
    background: var(--deep); border-top: 1px solid rgba(201,168,76,.1);
    padding: 48px 60px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-logo {
    font-family: var(--font-display);
    font-size: 18px; font-weight: 600; letter-spacing: 3px;
    color: var(--gold);
  }
  .footer-logo span { color: var(--white); font-weight: 300; }
  .footer-copy {
    font-family: var(--font-ui);
    font-size: 11px; letter-spacing: 1px; color: var(--mist);
    text-align: center;
  }
  .footer-links { display: flex; gap: 28px; }
  .footer-links a {
    font-family: var(--font-ui);
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--mist); text-decoration: none; transition: color .3s;
  }
  .footer-links a:hover { color: var(--gold); }
 
  /* ── KEYFRAMES ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeLeft {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: .3; transform: scaleY(.8); }
    50% { opacity: 1; transform: scaleY(1); }
  }
 
  /* ── RESPONSIVE ── */

  /* iPad & tablet (landscape + portrait) */
  @media (max-width: 1024px) {
    nav {
      padding: 20px max(32px, env(safe-area-inset-right)) 20px max(32px, env(safe-area-inset-left));
    }
    .nav-toggle { display: flex; }
    .nav-links { display: none; gap: 0; }
    .nav-links {
      position: fixed;
      top: 0; right: 0; bottom: 0;
      width: min(320px, 85vw);
      flex-direction: column;
      padding: calc(88px + env(safe-area-inset-top)) 32px calc(32px + env(safe-area-inset-bottom));
      background: rgba(6,14,26,.98);
      border-left: 1px solid rgba(201,168,76,.15);
      z-index: 99;
    }
    nav.is-open .nav-links { display: flex; }
    .nav-links li { border-bottom: 1px solid rgba(255,255,255,.07); }
    .nav-links a {
      display: flex;
      align-items: center;
      min-height: 48px;
      padding: 16px 0;
      font-size: 14px;
      letter-spacing: 0.12em;
    }

    .hero {
      padding: 100px max(32px, env(safe-area-inset-left)) 72px max(32px, env(safe-area-inset-right));
    }
    .hero-bottom { gap: 40px; }
    .hero-content { max-width: 100%; }
    .hero h1 { font-size: clamp(42px, 5.5vw, 72px); }
    .hero-stats { padding: 24px 28px; }

    .about { grid-template-columns: 1fr; min-height: auto; }
    .about-image { min-height: 42vh; }
    .about-content { padding: 64px 40px; }
    .about-pillars { grid-template-columns: 1fr 1fr; gap: 20px; }

    .services-header {
      align-items: flex-start;
      margin-bottom: 48px;
    }
    .services-title { font-size: clamp(38px, 5vw, 56px); }
    .services-header p {
      text-align: left;
      max-width: 280px;
      font-size: 15px;
    }
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    .service-card { min-height: 100%; }

    .ports-title { font-size: clamp(38px, 5vw, 56px); }
    .ports-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }
    .ports-grid .port-card:last-child {
      grid-column: 1 / -1;
      min-height: clamp(220px, 26vw, 300px);
    }
    .port-card { min-height: clamp(240px, 30vw, 300px); }

    .why { padding: 96px 40px; }
    .why-inner {
      grid-template-columns: 1fr;
      gap: 48px;
    }
    .why-left h2 { position: static; }

    .vision { padding: 120px 40px; }
    .mission { padding: 88px 40px; }
    .contact {
      padding: 96px 40px;
      grid-template-columns: 1fr;
      gap: 56px;
    }
    footer {
      padding: 40px max(32px, env(safe-area-inset-left));
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }
  }

  /* Large phones & narrow tablets */
  @media (max-width: 768px) {
    .hero {
      padding: 92px max(24px, env(safe-area-inset-left)) 56px max(24px, env(safe-area-inset-right));
      min-height: auto;
    }
    .hero-inner { gap: 32px; }
    .hero-brand {
      max-width: 100%;
      padding: 16px 20px;
      align-self: stretch;
    }
    .hero-brand img {
      width: min(300px, 100%);
      margin: -4% auto;
      transform: scale(1.05);
    }
    .hero-bottom {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .hero-stats {
      flex-direction: row;
      justify-content: space-between;
      text-align: center;
      width: 100%;
      padding: 22px 16px;
      gap: 8px;
    }
    .hero-stats .stat {
      flex: 1;
      padding-bottom: 0;
      border-bottom: none;
      border-right: 1px solid rgba(255,255,255,.08);
    }
    .hero-stats .stat:last-child { border-right: none; }
    .stat-num { font-size: clamp(28px, 7vw, 36px); }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .btn-primary, .btn-ghost {
      text-align: center;
      justify-content: center;
    }
    .btn-primary { width: 100%; }

    .marquee-item { padding: 0 28px; font-size: 11px; }
    .about-content { padding: 56px 28px; }
    .about-pillars { grid-template-columns: 1fr; }
    .services-header {
      flex-direction: column;
      gap: 20px;
      align-items: flex-start;
      margin-bottom: 40px;
      padding-bottom: 28px;
    }
    .services-title {
      font-size: clamp(34px, 8vw, 48px);
    }
    .rtl-slide {
      transform: translateY(16px);
      animation-name: slideRtlMobile;
    }
    @keyframes slideRtlMobile {
      from { transform: translateY(16px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }
    .services-header p {
      text-align: left;
      max-width: 100%;
      font-size: 15px;
    }
    .services-grid {
      grid-template-columns: 1fr;
      gap: 14px;
    }
    .service-card h3 { font-size: 18px; }

    .ports-title {
      font-size: clamp(34px, 8vw, 48px);
    }
    .ports-grid {
      grid-template-columns: 1fr;
      gap: 14px;
      margin-top: 36px;
    }
    .port-card { min-height: clamp(220px, 42vw, 300px); }
    .port-name { font-size: clamp(24px, 6vw, 32px); }
    .why { padding: 72px 24px; }
    .why-item {
      grid-template-columns: 56px 1fr;
      gap: 20px;
      padding: 32px 0;
    }
    .why-n { font-size: 40px; }
    .vision { padding: 88px 24px; }
    .mission { padding: 72px 24px; }
    .contact { padding: 72px 24px; }
    .form-row { grid-template-columns: 1fr; }
    footer {
      flex-direction: column;
      gap: 24px;
      text-align: center;
      padding: 40px 24px;
    }
    .footer-links { flex-wrap: wrap; justify-content: center; }
  }

  /* Phone */
  @media (max-width: 480px) {
    nav {
      padding: 16px max(20px, env(safe-area-inset-left)) 16px max(20px, env(safe-area-inset-right));
    }
    .nav-logo { font-size: 18px; letter-spacing: 0.04em; height: auto; }
    .nav-toggle {
      width: 48px;
      height: 48px;
    }

    .hero {
      padding: 84px 20px 48px;
    }
    .hero-brand { padding: 14px 16px; }
    .hero-brand img { width: 100%; transform: scale(1.02); }
    .hero-tagline {
      font-size: 10px;
      letter-spacing: 0.18em;
      gap: 10px;
    }
    .hero-tagline::before { width: 24px; }
    .hero h1 { font-size: clamp(36px, 10vw, 48px); }
    .hero-sub { font-size: 15px; margin-top: 16px; }
    .hero-cta { margin-top: 28px; gap: 14px; }
    .btn-primary { padding: 16px 24px; min-height: 48px; }
    .btn-ghost { padding-bottom: 4px; min-height: 44px; display: flex; align-items: center; justify-content: center; }

    .hero-stats {
      flex-direction: column;
      gap: 0;
      padding: 0;
      background: transparent;
      border: none;
      backdrop-filter: none;
    }
    .hero-stats .stat {
      flex: none;
      width: 100%;
      padding: 16px 20px;
      border-right: none;
      border-bottom: 1px solid rgba(255,255,255,.08);
      background: rgba(10,22,40,.55);
      border: 1px solid rgba(201,168,76,.15);
      border-bottom: none;
    }
    .hero-stats .stat:first-child { border-radius: 4px 4px 0 0; }
    .hero-stats .stat:last-child {
      border-radius: 0 0 4px 4px;
      border-bottom: 1px solid rgba(201,168,76,.15);
    }
    .hero-stats .stat + .stat { border-top: none; }
    .stat-num { font-size: 36px; }
    .stat-label { font-size: 10px; }

    .scroll-hint { display: none; }

    .marquee-bar { padding: 12px 0; }
    .marquee-item { padding: 0 20px; letter-spacing: 0.14em; }

    .section-label { font-size: 10px; letter-spacing: 0.18em; }
    .about-image { min-height: 280px; }
    .about-content { padding: 48px 20px; }
    .about-content h2 { font-size: clamp(28px, 8vw, 36px); }
    .about-image-badge { left: 20px; bottom: 24px; padding: 16px 20px; }
    .badge-num { font-size: 42px; }

    .services-title { font-size: clamp(30px, 9vw, 40px); }
    .services-header { margin-bottom: 32px; }
    .services-grid { gap: 12px; }
    .service-card { padding: 28px 22px; }
    .service-num { font-size: 48px; top: 10px; right: 14px; }
    .service-icon { width: 48px; height: 48px; margin-bottom: 22px; }
    .service-icon .icon { width: 22px; height: 22px; }
    .service-card h3 { font-size: 16px; letter-spacing: 0.08em; }
    .service-list li { font-size: 13px; }

    .ports-title { font-size: clamp(30px, 9vw, 40px); }
    .ports-grid { margin-top: 28px; gap: 12px; }
    .port-card { min-height: 200px; }
    .port-overlay { padding: 24px 20px; }
    .port-name { font-size: 26px; }
    .port-desc { font-size: 10px; letter-spacing: 0.12em; }

    .why { padding: 56px 20px; }
    .why-item { grid-template-columns: 1fr; gap: 12px; }
    .why-n { font-size: 32px; }

    .vision { padding: 72px 20px; }
    .vision-tag { padding: 12px 20px; font-size: 10px; letter-spacing: 0.14em; }
    .mission { padding: 56px 20px; }
    .mission-inner blockquote { font-size: clamp(20px, 5.5vw, 28px); }

    .contact { padding: 56px 20px; gap: 40px; }
    .contact-left h2 { font-size: clamp(32px, 9vw, 42px); }
    .c-icon { width: 48px; height: 48px; }
    .form-field input,
    .form-field textarea,
    .form-field select {
      padding: 16px;
      font-size: 16px; /* prevents iOS zoom on focus */
    }
    .form-submit {
      width: 100%;
      align-self: stretch;
      min-height: 52px;
      padding: 18px 24px;
    }

    footer { padding: 32px 20px; }
    .footer-copy { font-size: 10px; line-height: 1.6; }
  }

  /* Short phone screens */
  @media (max-width: 480px) and (max-height: 700px) {
    .hero { padding-top: 76px; }
    .hero-inner { gap: 24px; }
  }