/* Bismillahi ar-Rahmani ar-Rahim Audhu billahi min ash-shayatin wa an yahdurun Bismillah ar-Rahman ar-Rahim Allah la ilaha illa huwa al-hayy al-qayyum. Tamsa Allahu ala ayunihim */
/* TFAMX Static Site Stylesheet */
/* Gusgraph LLC */
/* Author: Gus Kazem */

:root {
  --navy: #0b1f33;
  --navy-2: #163a63;
  --blue: #1f6fb2;
  --blue-light: #d9ebfb;
  --white: #ffffff;
  --offwhite: #f5f7fa;
  --gray-100: #eef2f6;
  --gray-200: #d6dee7;
  --gray-400: #8794a3;
  --gray-700: #3f4b57;
  --dark: #0a1622;
  --success: #1f8f5f;
  --shadow: 0 14px 32px rgba(10, 22, 34, 0.12);
  --shadow-soft: 0 8px 20px rgba(10, 22, 34, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --max: 1200px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  opacity: 0.9;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.section-sm {
  padding: 56px 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--blue-light);
  color: var(--navy-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--navy);
}

.section-text {
  max-width: 760px;
  color: var(--gray-700);
  font-size: 1.05rem;
}

.text-center {
  text-align: center;
}

.bg-light {
  background: var(--offwhite);
}

.topbar {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 10px 0;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar a {
  color: rgba(255, 255, 255, 0.92);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 31, 51, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  min-width: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  background: transparent;
}

.brand-text {
  min-width: 0;
}

.brand-title {
  margin: 0;
  color: var(--white);
  font-size: 1.3rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-subtitle {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  color: var(--white);
  font-weight: 600;
  font-size: 0.98rem;
}

.nav a.active,
.nav a:hover {
  color: #c7e2ff;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height) - 42px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(6, 16, 28, 0.68), rgba(6, 16, 28, 0.58)),
    url("images/hero-aircraft.jpg") center center / cover no-repeat;
  color: var(--white);
}

.hero-contact {
  min-height: 420px;
  background:
    linear-gradient(rgba(6, 16, 28, 0.7), rgba(6, 16, 28, 0.6)),
    url("images/hero-contact.jpg") center center / cover no-repeat;
}

.hero-inner {
  width: 100%;
  padding: 96px 0;
}

.hero-content {
  max-width: 760px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.02;
  margin-bottom: 20px;
  color: var(--white);
}

.hero p {
  max-width: 660px;
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}

.hero-note {
  margin-top: 18px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: -48px;
  position: relative;
  z-index: 2;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 24px;
  border: 1px solid var(--gray-100);
}

.stat-number {
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.stat-label {
  color: var(--gray-700);
  font-weight: 600;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.card-body {
  padding: 24px;
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  color: var(--navy);
}

.card p {
  margin-bottom: 0;
  color: var(--gray-700);
}

.service-card {
  padding: 30px 26px;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-light), #edf6ff);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--navy-2);
  font-size: 1.35rem;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.split-reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.media-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.media-stack img,
.single-image img,
.gallery-card img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.media-stack img {
  height: 440px;
}

.single-image img {
  height: 580px;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--gray-700);
  font-weight: 500;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(31, 143, 95, 0.12);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 360px;
  box-shadow: var(--shadow-soft);
}

.gallery-card img {
  height: 100%;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 18, 30, 0.4), rgba(8, 18, 30, 0.05));
}

.cta {
  background:
    linear-gradient(135deg, rgba(11, 31, 51, 0.96), rgba(22, 58, 99, 0.95));
  color: var(--white);
  border-radius: 28px;
  padding: 42px 36px;
  box-shadow: var(--shadow);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta h2 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  max-width: 720px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-card {
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-soft);
}

.contact-card h3 {
  color: var(--navy);
  margin-bottom: 14px;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}

.contact-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 12px;
  background: var(--blue-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-2);
  font-weight: 800;
}

.contact-item strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-item span,
.contact-item a,
.contact-card p {
  color: var(--gray-700);
}

.hours-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.info-box {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.info-box h4 {
  margin-bottom: 8px;
  color: var(--navy);
}

.info-box p {
  margin: 0;
  color: var(--gray-700);
}

.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.82);
  padding: 28px 0;
  margin-top: 80px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-brand {
  color: var(--white);
  font-weight: 700;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.82);
}

.badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--gray-100);
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
}

.spacer-0 {
  margin: 0;
}

@media (max-width: 1100px) {
  .cards-3,
  .gallery-grid,
  .info-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .split-reverse,
  .contact-grid,
  .cards-2 {
    grid-template-columns: 1fr;
  }

  .single-image img {
    height: 480px;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 800px) {
  :root {
    --header-height: auto;
  }

  .header-inner,
  .nav,
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-inner {
    padding: 16px 0;
  }

  .nav {
    gap: 14px;
    width: 100%;
  }

  .hero,
  .hero-contact {
    min-height: auto;
  }

  .hero-inner {
    padding: 80px 0;
  }

  .stats-grid,
  .cards-3,
  .gallery-grid,
  .info-strip {
    grid-template-columns: 1fr;
  }

  .media-stack {
    grid-template-columns: 1fr;
  }

  .media-stack img,
  .single-image img,
  .gallery-card {
    height: auto;
    min-height: 0;
  }

  .gallery-card img {
    height: 380px;
  }

  .section {
    padding: 64px 0;
  }

  .cta {
    padding: 34px 24px;
  }

  .brand-title {
    font-size: 1.15rem;
  }

  .brand-subtitle {
    font-size: 0.88rem;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 22px), var(--max));
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .contact-item {
    align-items: center;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-left,
  .topbar-right {
    gap: 10px;
  }
}


.site-logo {
  width: 170px;
  height: auto;
  max-height: 70px;
  object-fit: contain;
}

.topbar-right {
  display: none !important;
}

.topbar-left {
  gap: 20px;
  font-weight: 600;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

.hero {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 800px) {
  .site-logo {
    width: 135px;
    max-height: 58px;
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
  }


  .topbar-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}


.site-logo {
  width: 240px;
  height: auto;
  max-height: 95px;
  object-fit: contain;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.nav-desktop {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  list-style: none;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 12px;
  cursor: pointer;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 180px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(10, 22, 34, 0.16);
  padding: 10px;
  z-index: 1001;
}

.mobile-menu-panel a {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.mobile-menu-panel a:hover,
.mobile-menu-panel a.active {
  background: var(--gray-100);
}

@media (max-width: 800px) {
  .site-logo {
    width: 210px;
    max-height: 88px;
  }

  .nav-desktop {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (max-width: 520px) {
  .site-logo {
    width: 185px;
    max-height: 80px;
  }
}




.brand {
  display: flex;
  align-items: center;
}

.site-logo {
  width: 320px !important;
  max-width: none !important;
  max-height: none !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
}

.brand img {
  width: 320px !important;
  max-width: none !important;
  max-height: none !important;
  height: auto !important;
}

@media (max-width: 800px) {
  .site-logo,
  .brand img {
    width: 260px !important;
  }
}

@media (max-width: 520px) {
  .site-logo,
  .brand img {
    width: 220px !important;
  }
}






.hero-contact {
  background-image:
    linear-gradient(rgba(6, 16, 28, 0.70), rgba(6, 16, 28, 0.60)),
    url("images/hero-radio.jpg") !important;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.reveal-card {
  border-radius: var(--radius);
  overflow: hidden;
}

.reveal-card summary {
  list-style: none;
}

.reveal-card summary::-webkit-details-marker {
  display: none;
}

.reveal-summary {
  padding: 26px 24px;
  cursor: pointer;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reveal-label {
  display: inline-block;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--blue-light);
  color: var(--navy-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reveal-title {
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
}

.reveal-body {
  padding: 0 24px 24px;
  color: var(--gray-700);
}

.reveal-body p {
  margin-bottom: 16px;
}

.contact-reveal-value {
  display: inline-block;
  padding: 12px 16px;
  background: var(--gray-100);
  border-radius: 12px;
  color: var(--navy);
  font-weight: 700;
  word-break: break-word;
}










.site-credit {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.site-credit a {
  color: #b8bec6;
  font-size: 0.9rem;
  text-decoration: none;
}

.site-credit a:hover {
  color: #d3d7dc;
}