/* ========================================================================
   AMK MARINE — STYLES
   Author: Tawrid A.M.K.
   File: styles.css
   ======================================================================== */


/* ================ RESET & ROOT VARIABLES ================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Colors */
  --navy: #122132;
  --navy-deep: #0E1D2D;
  --navy-darker: #07111D;
  --red: #C0392B;
  --red-hover: #a8311f;
  --white: #FFFFFF;
  --light-bg: #F5F7FA;
  --grey-text: #B3B3B3;
  --grey-darker: #929AA2;
  --grey-divider: #373737;
  --grey-label: #686868;
  --body-dark: #1F1F1F;

  /* Layout */
  --container-max: unset;
  --section-pad-x: 64px;

  /* Typography */
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--navy);
  color: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }


/* ================ UTILITIES ================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
}

@media (max-width: 768px) {
  :root { --section-pad-x: 24px; }
}


/* ================ NAVBAR ================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  padding: 16px var(--section-pad-x);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

/* .logo {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(192,57,43,0.35);
} */

.nav-links {
  display: flex;
  align-items: center;
  gap: 48px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: #ffd7d2; }
.nav-links a:hover::after { width: 100%; }


/* ================ BUTTONS ================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 2px;
  font-size: 14px;
}
.btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(192,57,43,0.3);
}

.btn-cta {
  padding: 14px 24px;
  border-radius: 6px;
  font-size: 16px;
}
.btn-cta-primary {
  background: var(--red);
  color: var(--white);
}
.btn-cta-primary:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(192,57,43,0.35);
}

.btn-cta-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}
.btn-cta-outline:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}


/* ================ MOBILE MENU TOGGLE ================ */
.menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 960px) {
  .menu-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-deep);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 var(--section-pad-x);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links.open {
    max-height: 500px;
    padding: 16px var(--section-pad-x) 24px;
  }
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-links a {
    display: block;
    padding: 14px 0;
    width: 100%;
  }
  .nav-cta-btn { display: none; }
}


/* ================ HERO SECTION ================ */
.hero {
  padding: 80px var(--section-pad-x);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(192,57,43,0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.eyebrow {
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 400;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--white);
}
.hero-title .red { color: var(--red); display: block; }

.hero-desc {
  font-size: 16px;
  line-height: 1.625;
  color: var(--grey-text);
  font-weight: 500;
  text-transform: capitalize;
  max-width: 580px;
}
.hero-desc .accent { color: var(--red); font-weight: 700; }

.hero-buttons {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.hero-buttons .btn-cta { flex: 1; min-width: 200px; }

.hero-image {
  width: 100%;
  aspect-ratio: 632 / 474;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #1e3656, #122132);
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .hero { padding: 56px var(--section-pad-x); }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-image { order: -1; }
  .hero-buttons .btn-cta { min-width: unset; width: 100%; }
}


/* ================ STATS BAR ================ */
.stats-bar {
  background: var(--navy-deep);
  padding: 32px var(--section-pad-x);
}
.stats-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1;
  color: var(--red);
  letter-spacing: 0.05em;
}
.stat-label {
  font-size: 14px;
  line-height: 1.3;
  color: var(--grey-text);
  letter-spacing: 0.05em;
  text-transform: capitalize;
  max-width: 140px;
}

@media (max-width: 640px) {
  .stats-inner { justify-content: center; gap: 28px 36px; }
}


/* ================ SERVICE TAGS BAR ================ */
.services-tags {
  background: var(--red);
  padding: 21px var(--section-pad-x);
  overflow: hidden;
}
.services-tags-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.service-tag {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.05em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 32px;
}
.service-tag::after {
  content: '';
  width: 39px;
  height: 1px;
  background: rgba(255,255,255,0.5);
  display: inline-block;
}
.service-tag:last-child::after { display: none; }

@media (max-width: 768px) {
  .services-tags-inner { gap: 16px; justify-content: center; }
  .service-tag { gap: 16px; }
  .service-tag::after { display: none; }
}


/* ================ INTRO BAND ================ */
.intro-band {
  background: var(--light-bg);
  padding: 80px var(--section-pad-x);
}
.intro-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.intro-text {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.42;
  color: var(--red);
}
.intro-text .dark { color: var(--navy); }
.intro-text .highlight { color: var(--red); font-weight: 600; }

.intro-stats {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
}
.intro-stat {
  background: var(--white);
  border: 1px solid rgba(192, 57, 43, 0.2);
  border-radius: 2px;
  padding: 18px 24px;
  min-width: 96px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.intro-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(192,57,43,0.12);
}
.intro-stat-num {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1;
  color: var(--red);
  letter-spacing: 0.05em;
}
.intro-stat-label {
  font-size: 14px;
  color: var(--navy);
  letter-spacing: 0.05em;
  margin-top: 8px;
  text-transform: capitalize;
}

@media (max-width: 900px) {
  .intro-inner { grid-template-columns: 1fr; gap: 36px; }
  .intro-stats { justify-content: flex-start; }
}
@media (max-width: 500px) {
  .intro-stats { gap: 12px; }
  .intro-stat { padding: 16px 12px; min-width: 0; flex: 1; }
  .intro-stat-num { font-size: 30px; }
}


/* ================ CORE SERVICES ================ */
.services-section {
  background: var(--white);
  padding: 120px var(--section-pad-x);
  color: var(--body-dark);
}
.services-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.section-header { margin-bottom: 48px; }
.section-eyebrow {
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--red);
  /* margin-bottom: 24px; */
}
.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  color: var(--navy-deep);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.service-card {
  position: relative;
  aspect-ratio: 650 / 400;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
}
.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(.2,.7,.3,1);
  z-index: 0;
}
.service-card:hover .service-card-bg { transform: scale(1.08); }
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 31.79%, rgba(0,0,0,0.95) 100%);
  z-index: 1;
  transition: opacity 0.4s ease;
}
.service-card:hover::before { opacity: 0.85; }

.service-card-content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 32px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.service-card-tag {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--red);
  text-transform: uppercase;
}
.service-card-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.05;
  color: var(--white);
}

@media (max-width: 768px) {
  .services-section { padding: 80px var(--section-pad-x); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-content { padding: 24px; }
}


/* ================ WHY CHOOSE ================ */
.why-section {
  background: var(--light-bg);
  padding: 120px var(--section-pad-x);
  color: var(--body-dark);
}
.why-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-image {
  width: 100%;
  aspect-ratio: 624 / 786;
  border-radius: 4px;
  background: linear-gradient(135deg, #2d4a6d, #122132);
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(14,29,45,0.15);
}
.why-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.why-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.why-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.06;
  color: var(--navy-deep);
}
.why-desc {
  font-size: 18px;
  line-height: 1.55;
  color: var(--body-dark);
  font-weight: 300;
  text-transform: capitalize;
}
.features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 8px;
}
.feature {
  display: flex;
  gap: 18px;
  padding: 12px 0;
  align-items: flex-start;
}
.feature-icon {
  width: 45px; height: 45px;
  border: 0.5px solid var(--red);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,102,86,0.04);
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}
.feature:hover .feature-icon {
  background: rgba(192,57,43,0.12);
  transform: scale(1.08);
}
.feature-icon svg {
  width: 24px; height: 24px;
  stroke: var(--red);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-content { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.feature-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.17;
  letter-spacing: 0.05em;
  color: #000;
  text-transform: capitalize;
}
.feature-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--body-dark);
  font-weight: 300;
  text-transform: capitalize;
}
.btn-partnership {
  align-self: flex-start;
  margin-top: 12px;
  padding: 14px 48px;
  background: var(--red);
  color: var(--white);
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn-partnership:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(192,57,43,0.35);
}

@media (max-width: 900px) {
  .why-section { padding: 80px var(--section-pad-x); }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-image { aspect-ratio: 4/3; max-height: 480px; }
}


/* ================ CTA BAND ================ */
.cta-band {
  background: #0D1B2A;
  padding: 120px var(--section-pad-x);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(192,57,43,0.07), transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  position: relative;
}
.cta-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.06;
  color: var(--light-bg);
}
.cta-title .red { color: var(--red); }
.cta-desc {
  font-size: 18px;
  line-height: 1.55;
  color: var(--white);
  font-weight: 300;
  text-transform: capitalize;
  max-width: 680px;
}

@media (max-width: 768px) {
  .cta-band { padding: 80px var(--section-pad-x); }
}


/* ================ FOOTER ================ */
.footer {
  background: var(--navy-darker);
  border-top: 4px solid var(--red);
  padding: 120px var(--section-pad-x) 40px;
}
.footer-inner { max-width: var(--container-max); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 350px repeat(3, 1fr);
  gap: 64px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--grey-divider);
}
.footer-brand { display: flex; flex-direction: column; gap: 24px; }
.footer-desc {
  font-size: 14px;
  line-height: 1.43;
  color: var(--grey-darker);
  font-weight: 200;
}
.socials { display: flex; gap: 24px; }
.social-link {
  width: 20px; height: 20px;
  display: grid;
  place-items: center;
  color: var(--grey-darker);
  transition: color 0.2s ease, transform 0.2s ease;
}
.social-link:hover { color: var(--red); transform: translateY(-2px); }
.social-link svg { width: 20px; height: 20px; fill: currentColor; }

.footer-col-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
}
.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-list a {
  font-size: 14px;
  color: var(--grey-darker);
  letter-spacing: 0.05em;
  text-transform: capitalize;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}
.footer-list a:hover { color: var(--white); transform: translateX(4px); }

.footer-contact-block { margin-bottom: 16px; }
.footer-contact-label {
  font-size: 14px;
  color: var(--grey-label);
  letter-spacing: 0.05em;
  text-transform: capitalize;
  font-weight: 300;
  margin-bottom: 8px;
}
.footer-contact-value {
  font-size: 14px;
  color: var(--grey-darker);
  line-height: 1.43;
  letter-spacing: 0.05em;
}

.copyright {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  font-weight: 200;
  color: var(--grey-darker);
}

@media (max-width: 960px) {
  .footer { padding: 80px var(--section-pad-x) 40px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}


/* ================ ANIMATIONS ================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(.2,.7,.3,1), transform 0.8s cubic-bezier(.2,.7,.3,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Hero entrance animation */
.hero-content > * {
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(.2,.7,.3,1) forwards;
}
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.35s; }
.hero-content > *:nth-child(4) { animation-delay: 0.5s; }

.hero-image {
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(.2,.7,.3,1) 0.3s forwards;
}


/* ========================================================================
   ABOUT PAGE — STYLES
   Sections: Page Header, Who We Are, Leadership, Split Band
   ======================================================================== */


/* ================ ACTIVE NAV LINK ================ */
.nav-active {
  color: var(--red) !important;
}
.nav-active::after {
  width: 100% !important;
  background: var(--red);
}


/* ================ PAGE HEADER ================ */
.page-header {
  background: var(--navy);
  padding: 80px var(--section-pad-x) 40px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.page-header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.breadcrumb a {
  color: var(--grey-darker);
  transition: color 0.2s ease;
}
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: var(--grey-darker); }
.breadcrumb-current { color: var(--red); }

.page-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 8vw, 80px);
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0;
}
.page-title .red { color: var(--red); }

.page-subtitle {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.625;
  color: var(--grey-text);
  font-weight: 500;
  text-transform: capitalize;
}

@media (max-width: 768px) {
  .page-header { padding: 56px var(--section-pad-x) 32px; }
}


/* ================ WHO WE ARE ================ */
.who-section {
  background: var(--white);
  padding: 120px var(--section-pad-x) 80px;
  color: var(--body-dark);
}
.who-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.who-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.who-title {
  /* Inherit from .section-title; override font size  */
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
}
.who-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.who-para {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.78;
  color: #373737;
  font-weight: 400;
  max-width: 100%;
}

@media (max-width: 768px) {
  .who-section { padding: 80px var(--section-pad-x) 60px; }
  .who-para { font-size: 17px; }
}


/* ================ LEADERSHIP & LEGACY ================ */
.leadership-section {
  background: var(--white);
  padding: 0 var(--section-pad-x) 120px;
  color: var(--body-dark);
}
.leadership-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.leadership-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 60px;
  border-top: 1px solid rgba(14,29,45,0.08);
}
.leadership-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.05;
  color: var(--navy-deep);
}

/* 3-column grid */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/* Individual card */
.leader-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  cursor: default;
}

/* Image wrapper — portrait ratio ~429:547 */
.leader-img-wrap {
  width: 100%;
  aspect-ratio: 429 / 547;
  overflow: hidden;
  background: #d4d8dc;
  position: relative;
}
.leader-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.7s cubic-bezier(.2,.7,.3,1);
}
.leader-card:hover .leader-img { transform: scale(1.05); }

/* Name + role */
.leader-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.leader-name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.18;
  color: var(--navy-deep);
}
.leader-role {
  font-family: 'Inter', var(--font-sans);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.22;
  color: #373737;
}
.leader-role em { font-style: italic; }

@media (max-width: 900px) {
  .leadership-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 560px) {
  .leadership-section { padding: 0 var(--section-pad-x) 80px; }
  .leadership-grid { grid-template-columns: 1fr; gap: 40px; }
  .leader-img-wrap { aspect-ratio: 4 / 3; }
}


/* ================ SPLIT BAND ================ */
.split-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
  align-items: stretch;
}

/* Left — image */
.split-image {
  overflow: hidden;
  position: relative;
  min-height: 400px;
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.9s cubic-bezier(.2,.7,.3,1);
}
.split-band:hover .split-image img { transform: scale(1.04); }

/* Right — red panel */
.split-content {
  background: var(--red);
  padding: 54px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 48px;
}

/* Pull-quote heading */
.split-quote {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 38px);
  line-height: 1.1;
  color: var(--white);
  margin: 0;
}

/* Two-column text under quote */
.split-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.split-col-title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.29;
  color: var(--white);
  margin-bottom: 18px;
}
.split-col-body {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.33;
  color: var(--white);
  font-weight: 400;
  text-transform: capitalize;
  opacity: 0.92;
}

@media (max-width: 960px) {
  .split-band { grid-template-columns: 1fr; }
  .split-image { min-height: 340px; max-height: 440px; }
  .split-content { padding: 54px var(--section-pad-x); }
}
@media (max-width: 600px) {
  .split-columns { grid-template-columns: 1fr; gap: 32px; }
  .split-col-title { font-size: 22px; }
  .split-content { padding: 48px var(--section-pad-x); gap: 32px; }
}


/* ========================================================================
   SERVICES PAGE — STYLES
   Sections: Service Detail Section, Alternating Service Rows
   ======================================================================== */


/* ================ SERVICES DETAIL SECTION ================ */
.svc-detail-section {
  background: #F5F7FA;
  padding: 120px var(--section-pad-x);
}
.svc-detail-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* Section heading block */
.svc-section-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.svc-main-title {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  color: var(--navy-deep);
}

@media (max-width: 768px) {
  .svc-detail-section { padding: 80px var(--section-pad-x); }
  .svc-detail-inner { gap: 48px; }
}


/* ================ SERVICE ROWS ================ */
.svc-rows {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Single row — default: image LEFT, content RIGHT */
.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: 0 4px 4px 0;
  overflow: hidden;
  min-height: 447px;
  box-shadow: 0 2px 16px rgba(14,29,45,0.06);
  transition: box-shadow 0.3s ease;
}
.svc-row:hover {
  box-shadow: 0 8px 32px rgba(14,29,45,0.12);
}

/* Reversed row: content LEFT, image RIGHT */
.svc-row-reverse {
  grid-template-columns: 1fr 1fr;
  border-radius: 4px 0 0 4px;
}
.svc-row-reverse .svc-content { order: 1; }
.svc-row-reverse .svc-img    { order: 2; }


/* ── Image panel ── */
.svc-img {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s cubic-bezier(.2,.7,.3,1);
}
.svc-row:hover .svc-img img { transform: scale(1.05); }


/* ── Content panel ── */
.svc-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 48px 40px;
  background: var(--white);
}

/* Service number tag */
.svc-tag {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}

/* Service heading */
.svc-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.05;
  color: var(--navy-deep);
}

/* Service description */
.svc-desc {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.78;
  color: #373737;
  font-weight: 400;
  max-width: 570px;
}


/* ── Clickable service tags in red bar ── */
.services-tags a.service-tag {
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.services-tags a.service-tag:hover { opacity: 0.75; }


/* ── Responsive ── */
@media (max-width: 900px) {
  .svc-row,
  .svc-row-reverse {
    grid-template-columns: 1fr;
    border-radius: 4px;
  }
  /* Always put image on top for both row types on mobile */
  .svc-img     { order: 1 !important; min-height: 260px; }
  .svc-content { order: 2 !important; }

  .svc-content { padding: 36px 28px; }
  .svc-desc { max-width: 100%; }
}

@media (max-width: 560px) {
  .svc-rows { gap: 28px; }
  .svc-content { padding: 28px 20px; gap: 16px; }
  .svc-tag  { font-size: 15px; }
  .svc-desc { font-size: 16px; line-height: 1.7; }
}


/* ========================================================================
   SERVICE DETAIL PAGE — STYLES
   Reusable template for: food-provision, mechanical-parts, electrical,
   cabin-stores, catering, housekeeping
   ======================================================================== */


/* ================ SERVICE HERO ================ */
.svc-hero {
  width: 100%;
  height: 392px;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  border-bottom: 6px solid var(--red);
  display: flex;
  align-items: flex-end;
  position: relative;
}
.svc-hero-inner {
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--section-pad-x) 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Breadcrumb inside hero */
.svc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  flex-wrap: wrap;
}
.svc-breadcrumb a {
  color: var(--white);
  transition: opacity 0.2s;
}
.svc-breadcrumb a:hover { opacity: 0.7; }
.svc-breadcrumb span { color: var(--white); opacity: 0.6; }
.svc-breadcrumb-current { color: var(--white); opacity: 1; }

/* Hero title */
.svc-hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0;
}
.svc-hero-title .red { color: var(--red); }

@media (max-width: 768px) {
  .svc-hero { height: 300px; }
  .svc-hero-inner { padding-bottom: 32px; }
}
@media (max-width: 480px) {
  .svc-hero { height: 260px; }
}


/* ================ SERVICE PAGE BODY ================ */
.svc-page-body {
  background: var(--white);
  padding: 120px var(--section-pad-x);
}
.svc-page-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Intro heading + paragraphs */
.svc-intro { display: flex; flex-direction: column; gap: 24px; }

.svc-page-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  color: var(--navy-deep);
}

.svc-paras { display: flex; flex-direction: column; gap: 24px; }
.svc-paras p {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.78;
  color: #373737;
  font-weight: 400;
}

@media (max-width: 768px) {
  .svc-page-body { padding: 80px var(--section-pad-x); }
  .svc-paras p { font-size: 16px; }
}


/* ================ FEATURE LIST ================ */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  border: 1px solid #EBEBEB;
  border-bottom: none;        /* all except last share no-bottom border */
  background: var(--white);
  transition: background 0.2s ease;
}
.feature-item:hover { background: #fdf8f7; }

/* Last item gets full border */
.feature-item-last {
  border-bottom: 1px solid #EBEBEB;
}

/* Red dot */
.feature-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--red);
}

/* Feature text — entire line in red */
.feature-text {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.78;
  color: var(--red);
  font-weight: 400;
}
.feature-text strong {
  font-weight: 600;
}

@media (max-width: 640px) {
  .feature-item { padding: 16px 18px; gap: 14px; }
  .feature-text { font-size: 15px; }
}


/* ================ SERVICE GALLERY ================ */
.svc-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 8px;
}
.svc-gallery-item {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 429 / 350;
  background: #e9e9e9;
}
.svc-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(.2,.7,.3,1);
}
.svc-gallery-item:hover img { transform: scale(1.06); }

@media (max-width: 768px) {
  .svc-gallery { grid-template-columns: 1fr 1fr; }
  .svc-gallery-item:last-child { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .svc-gallery { grid-template-columns: 1fr; }
  .svc-gallery-item:last-child { grid-column: auto; }
}


/* ================ OTHER SERVICES SECTION ================ */
.other-svc-section {
  background: #F5F7FA;
  padding: 60px var(--section-pad-x);
}
.other-svc-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Header */
.other-svc-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.other-svc-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.05;
  color: var(--navy-deep);
}

/* 5-column card grid */
.other-svc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

/* Individual card */
.other-svc-card {
  position: relative;
  aspect-ratio: 252 / 400;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  text-decoration: none;
  isolation: isolate;
}

/* Background image layer */
.other-svc-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(.2,.7,.3,1);
  z-index: 0;
}
.other-svc-card:hover .other-svc-bg { transform: scale(1.08); }

/* Text overlay */
.other-svc-info {
  position: relative;
  z-index: 1;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.other-svc-tag {
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}
.other-svc-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  color: var(--white);
}

/* Responsive grid */
@media (max-width: 1024px) {
  .other-svc-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .other-svc-section { padding: 60px var(--section-pad-x); }
  .other-svc-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .other-svc-card { aspect-ratio: 4 / 3; }
}
@media (max-width: 480px) {
  .other-svc-grid { grid-template-columns: 1fr; }
}


/* ========================================================================
   CLIENTS PAGE — STYLES
   Sections: Clients Intro, Stats, Logo Grid
   ======================================================================== */


/* ================ CLIENTS INTRO SECTION ================ */
.clients-intro-section {
  background: #F5F7FA;
  padding: 80px var(--section-pad-x);
}
.clients-intro-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.clients-intro-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.clients-intro-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.16;
  color: var(--navy-deep);
  max-width: 920px;
}
.clients-intro-desc {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.78;
  color: #373737;
  font-weight: 400;
  max-width: 100%;
  margin-top: 12px;
}

/* Stat cards row */
.clients-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.clients-stat {
  background: var(--white);
  border: 1px solid rgba(192, 57, 43, 0.2);
  border-radius: 2px;
  padding: 18px 24px;
  min-width: 114px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.clients-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(192,57,43,0.12);
}
.clients-stat-num {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1;
  color: var(--red);
  letter-spacing: 0.05em;
}
.clients-stat-label {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--navy);
  letter-spacing: 0.05em;
  margin-top: 8px;
  text-transform: capitalize;
  font-weight: 400;
}

@media (max-width: 768px) {
  .clients-intro-section { padding: 60px var(--section-pad-x); }
  .clients-intro-desc { font-size: 16px; }
}


/* ================ CLIENT LOGOS SECTION ================ */
.clients-logos-section {
  background: var(--white);
  padding: 64px var(--section-pad-x);
}
.clients-logos-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

/* 3-column, 4-row grid */
.clients-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Individual logo cell */
.clients-logo-cell {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 130px;
  padding: 12px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 2px;
}
.clients-logo-cell:hover {
  box-shadow: 0 6px 20px rgba(14,29,45,0.08);
  transform: translateY(-3px);
}

/* Placeholder for actual logo images */
.clients-logo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  width: 100%;
}
.logo-mark {
  font-size: 32px;
  line-height: 1;
}
.logo-name {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.5px;
  line-height: 1.3;
}
.logo-sub {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  color: #888;
  letter-spacing: 0.3px;
  text-align: center;
  line-height: 1.4;
}

/* When user replaces placeholders with real logo <img> tags */
.clients-logo-cell img {
  max-width: 100%;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}
.clients-logo-cell:hover img { filter: grayscale(0%); }

@media (max-width: 900px) {
  .clients-logo-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .clients-logos-section { padding: 48px var(--section-pad-x); }
}
@media (max-width: 560px) {
  .clients-logo-grid { grid-template-columns: 1fr; }
  .clients-logo-cell { min-height: 100px; }
}


/* ========================================================================
   CONTACT PAGE — STYLES
   Sections: Contact Strip, Map + Info Grid
   ======================================================================== */


/* ================ CONTACT INFO STRIP ================ */
.contact-strip {
  background: #F5F7FA;
  padding: 60px 40px;
}
.contact-strip-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

/* Individual contact card */
.contact-card {
  background: var(--white);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(192, 57, 43, 0.2);
  border-right: none;
  transition: background 0.2s ease;
}
.contact-card:last-child { border-right: 1px solid rgba(192,57,43,0.2); }
.contact-card:hover { background: #fdf8f7; }

/* Icon circle */
.contact-card-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border: 0.5px solid var(--red);
  border-radius: 50%;
  background: rgba(255,102,86,0.04);
  display: grid;
  place-items: center;
  color: var(--red);
}
.contact-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--red);
}

/* Card text */
.contact-card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-card-label {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--red);
  line-height: 1.28;
}
.contact-card-main {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #000;
  line-height: 1.55;
  display: block;
  text-decoration: none;
  transition: color 0.2s ease;
}
a.contact-card-main:hover { color: var(--red); }
.contact-card-sub {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 200;
  line-height: 1.85;
  color: var(--body-dark);
  text-transform: capitalize;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .contact-strip { padding: 48px var(--section-pad-x); }
  .contact-strip-inner { grid-template-columns: 1fr; }
  .contact-card { border-right: 1px solid rgba(192,57,43,0.2); border-bottom: none; }
  .contact-card:last-child { border-bottom: 1px solid rgba(192,57,43,0.2); }
}
@media (max-width: 560px) {
  .contact-strip { padding: 36px var(--section-pad-x); }
}


/* ================ MAP + INFO SECTION ================ */
.contact-map-section {
  background: var(--white);
  padding: 64px;
}
.contact-map-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: stretch;
  min-height: 465px;
}

/* Map embed */
.contact-map-embed {
  border-radius: 2px;
  overflow: hidden;
  min-height: 420px;
}
.contact-map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  border: 0;
}

/* 2x2 Info grid */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  width: 463px;
  flex-shrink: 0;
}

/* Individual info cell */
.contact-info-cell {
  background: var(--white);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 1px solid rgba(192, 57, 43, 0.12);
  transition: background 0.2s ease;
}
.contact-info-cell:hover { background: #fdf8f7; }

.contact-info-label {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--red);
  line-height: 1.28;
  margin-bottom: 4px;
}
.contact-info-value {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #000;
  line-height: 1.55;
}
.contact-info-sub {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 200;
  line-height: 1.85;
  color: var(--body-dark);
  text-transform: capitalize;
}

@media (max-width: 1100px) {
  .contact-map-section { padding: 48px var(--section-pad-x); }
  .contact-map-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: unset;
  }
  .contact-info-grid { width: 100%; }
  .contact-map-embed { min-height: 360px; }
  .contact-map-embed iframe { min-height: 360px; }
}
@media (max-width: 560px) {
  .contact-map-section { padding: 36px var(--section-pad-x); }
  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-map-embed { min-height: 280px; }
  .contact-map-embed iframe { min-height: 280px; }
}


/* ========================================================================
   TAWRID AMK PAGE — STYLES
   Sections: Hero, Tags Bar, Intro+Stats, Services, Industries, Why Choose, Contact
   ======================================================================== */


/* ================ TAWRID HERO ================ */
.tawrid-hero {
  position: relative;
  padding: 240px var(--section-pad-x) 40px;
  min-height: 430px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
}
.tawrid-hero-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tawrid-hero-eyebrow {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--red);
}
.tawrid-hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 80px);
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
}
.tawrid-hero-tagline {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: var(--grey-text);
  text-transform: capitalize;
  max-width: 100%;
}
@media (max-width: 768px) {
  .tawrid-hero { padding: 180px var(--section-pad-x) 32px; min-height: 360px; }
}


/* ================ RED TAGS BAR ================ */
.tawrid-tags-bar {
  background: var(--red);
  padding: 21px 36px;
}
.tawrid-tags-inner {
  max-width: 1368px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.tawrid-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0.05em;
  color: var(--white);
  white-space: nowrap;
}
.tawrid-tag-divider {
  width: 39px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}
@media (max-width: 960px) {
  .tawrid-tags-inner { justify-content: center; gap: 16px; }
  .tawrid-tag-divider { display: none; }
}


/* ================ COMPANY INTRO + STATS ================ */
.tawrid-intro {
  background: var(--white);
  padding: 100px var(--section-pad-x);
}
.tawrid-intro-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.tawrid-intro-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.tawrid-intro-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  color: var(--navy-deep);
  margin: 0;
}
.tawrid-intro-cr {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 22px;
  line-height: 32px;
  color: var(--navy);
  margin: 0;
}
.tawrid-intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: stretch;
}
.tawrid-intro-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.tawrid-intro-subtitle {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: var(--navy);
  margin: 0;
}
.tawrid-intro-text p {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: #373737;
  text-transform: capitalize;
  margin: 0;
}

/* Stats 2x2 grid */
.tawrid-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.tawrid-stat-card {
  background: var(--white);
  border: 1px solid rgba(192, 57, 43, 0.2);
  border-radius: 2px;
  padding: 18px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 118px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tawrid-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(192,57,43,0.12);
}
.tawrid-stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--red);
}
.tawrid-stat-label {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  color: var(--navy);
}

@media (max-width: 900px) {
  .tawrid-intro { padding: 64px var(--section-pad-x); }
  .tawrid-intro-content { grid-template-columns: 1fr; gap: 32px; }
}


/* ================ SERVICES & INDUSTRIES ================ */
.tawrid-services {
  background: var(--light-bg);
  padding: 120px var(--section-pad-x);
}
.tawrid-services-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.tawrid-services-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.tawrid-services-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  color: var(--navy-deep);
  text-transform: uppercase;
  margin: 0;
}
.tawrid-services-desc {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: #373737;
  text-transform: capitalize;
  margin: 0;
}
.tawrid-svc-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Individual service row */
.tawrid-svc-row {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 395px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tawrid-svc-row:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(14,29,45,0.08);
}
.tawrid-svc-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 395px;
}
.tawrid-svc-text {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.tawrid-svc-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}
.tawrid-svc-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 38px;
  line-height: 40px;
  color: var(--navy-deep);
  margin: 0;
}
.tawrid-svc-desc {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: #373737;
  margin: 0;
}

/* Reversed layout: text on left, image on right */
.tawrid-svc-row-reverse .tawrid-svc-img { order: 2; }
.tawrid-svc-row-reverse .tawrid-svc-text { order: 1; }

@media (max-width: 900px) {
  .tawrid-services { padding: 80px var(--section-pad-x); gap: 48px; }
  .tawrid-services-inner { gap: 48px; }
  .tawrid-svc-row,
  .tawrid-svc-row-reverse {
    grid-template-columns: 1fr;
  }
  .tawrid-svc-row-reverse .tawrid-svc-img,
  .tawrid-svc-row .tawrid-svc-img {
    order: 1;
    min-height: 280px;
  }
  .tawrid-svc-row-reverse .tawrid-svc-text,
  .tawrid-svc-row .tawrid-svc-text {
    order: 2;
    padding: 32px 24px;
  }
  .tawrid-svc-name { font-size: 28px; line-height: 32px; }
}


/* ================ INDUSTRIES WE SERVE ================ */
.tawrid-industries {
  background: var(--white);
  padding: 60px var(--section-pad-x);
}
.tawrid-industries-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.tawrid-industries-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.tawrid-industries-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1;
  color: var(--navy-deep);
  margin: 0;
}
.tawrid-industries-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "wide wide" "card1 card2";
  gap: 12px;
}
.tawrid-industry-card {
  border-radius: 4px;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.tawrid-industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(14,29,45,0.16);
}
.tawrid-industry-wide {
  grid-area: wide;
  min-height: 360px;
}
.tawrid-industry-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 36px;
  line-height: 36px;
  color: var(--white);
  margin: 0;
}

@media (max-width: 900px) {
  .tawrid-industries { padding: 60px var(--section-pad-x); }
  .tawrid-industries-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "wide" "card1" "card2";
  }
  .tawrid-industry-card { min-height: 280px; }
}


/* ================ WHY CLIENTS CHOOSE ================ */
.tawrid-why {
  background: var(--light-bg);
  padding: 120px var(--section-pad-x);
}
.tawrid-why-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}
.tawrid-why-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.tawrid-why-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.06;
  color: var(--navy-deep);
  margin: 0;
}
.tawrid-why-desc {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: 18px;
  line-height: 28px;
  color: var(--body-dark);
  text-transform: capitalize;
  margin: 0;
}
.tawrid-why-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}
.tawrid-why-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tawrid-why-item h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  color: #000;
  margin: 0;
}
.tawrid-why-item p {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: 16px;
  line-height: 28px;
  color: var(--body-dark);
  text-transform: capitalize;
  margin: 0;
}

/* Right image stack */
.tawrid-why-images {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tawrid-why-img {
  flex: 1;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  min-height: 380px;
}

@media (max-width: 900px) {
  .tawrid-why { padding: 80px var(--section-pad-x); }
  .tawrid-why-inner { grid-template-columns: 1fr; gap: 48px; }
  .tawrid-why-images { flex-direction: row; }
  .tawrid-why-img { min-height: 240px; }
}
@media (max-width: 560px) {
  .tawrid-why-images { flex-direction: column; }
}


/* ================ CONTACT STRIP SECTION ================ */
.tawrid-contact {
  background: var(--white);
  padding: 120px var(--section-pad-x);
}
.tawrid-contact-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.tawrid-contact-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tawrid-contact-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.31;
  color: var(--navy-deep);
  margin: 0;
}
.tawrid-contact-desc {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: 18px;
  line-height: 28px;
  color: var(--body-dark);
  text-transform: capitalize;
  margin: 0;
}

@media (max-width: 900px) {
  .tawrid-contact { padding: 80px var(--section-pad-x); }
}
