/* ===================================
   MASTERS OF THE SKY v2 — BOLD THEME
   Blue + Orange / Dark + Electric
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,400;0,600;0,700;1,400;1,700&family=Barlow+Condensed:wght@400;600;700&display=swap');

:root {
  /* Blues */
  --blue-deep:    #020d1a;
  --blue-dark:    #061428;
  --blue-mid:     #0a2540;
  --blue-rich:    #0f3d6e;
  --blue-bright:  #1a6dc8;
  --blue-electric:#2196f3;
  --blue-sky:     #64b5f6;
  --blue-light:   #bbdefb;

  /* Orange accent */
  --orange:       #ff6b1a;
  --orange-hot:   #ff8c42;
  --orange-glow:  #ffb347;
  --orange-dim:   #cc4d00;

  /* Neutrals */
  --white:        #ffffff;
  --off-white:    #f0f4f8;
  --text-dim:     #8faabf;
  --text-mid:     #b8d0e8;

  /* Fonts */
  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --font-condensed:'Barlow Condensed', sans-serif;

  --transition: 0.2s ease;
  --transition-slow: 0.4s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--white);
  background: var(--blue-deep);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ========================
   NAV
   ======================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 28px;
  background: rgba(2, 13, 26, 0.55);
  backdrop-filter: blur(8px);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(2, 13, 26, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(33, 150, 243, 0.2);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: var(--white);
}

.logo-sub {
  font-family: var(--font-condensed);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-light);
  padding: 8px 16px;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(33, 150, 243, 0.15);
}

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
}
.nav-cta:hover {
  background: var(--orange-hot) !important;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ========================
   BUTTONS
   ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-hot);
  border-color: var(--orange-hot);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 26, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--blue-electric);
  color: var(--blue-electric);
  background: rgba(33, 150, 243, 0.08);
}

.btn-blue {
  background: var(--blue-electric);
  color: var(--white);
  border-color: var(--blue-electric);
}
.btn-blue:hover {
  background: #42a5f5;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(33, 150, 243, 0.4);
}

/* ========================
   HERO
   ======================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--blue-deep);
  overflow: hidden;
}

/* Grid background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(33, 150, 243, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 150, 243, 0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridScroll 20s linear infinite;
}

@keyframes gridScroll {
  0%   { transform: translateY(0); }
  100% { transform: translateY(60px); }
}

/* Glow orbs */
.hero-glow-1 {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33, 150, 243, 0.18) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: pulse 6s ease-in-out infinite alternate;
}
.hero-glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 26, 0.15) 0%, transparent 70%);
  bottom: 0; left: 10%;
  animation: pulse 8s ease-in-out infinite alternate-reverse;
}

@keyframes pulse {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.2); opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 80px;
  padding-right: calc(50% + 28px);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  animation: heroIn 0.8s ease both;
}

.hero-right {
  position: absolute;
  top: 0; right: 0;
  width: 48%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--blue-deep) 0%, transparent 22%);
  z-index: 2;
  pointer-events: none;
}

.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(2, 13, 26, 0.45);
  z-index: 1;
  pointer-events: none;
}

.hero-right video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--orange);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 11vw, 9rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 12px;
}

.hero h1 .accent {
  color: var(--orange);
  display: block;
}

.hero-tagline {
  font-family: var(--font-condensed);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: var(--blue-sky);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 460px;
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(33, 150, 243, 0.2);
  flex-wrap: wrap;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
}

.hero-stat strong span {
  color: var(--orange);
}

.hero-stat p {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 4px;
}

/* ========================
   DIAGONAL SECTION DIVIDER
   ======================== */
.diagonal-top {
  position: relative;
  padding-top: 80px;
}
.diagonal-top::before {
  content: '';
  position: absolute;
  top: -48px; left: 0; right: 0;
  height: 100px;
  background: inherit;
  clip-path: polygon(0 50%, 100% 0%, 100% 100%, 0% 100%);
}

/* ========================
   SERVICES STRIP
   ======================== */
.services-strip {
  background: var(--blue-mid);
  padding: 72px 0 80px;
  position: relative;
}

.services-strip::before {
  content: '';
  position: absolute;
  top: -40px; left: 0; right: 0;
  height: 80px;
  background: var(--blue-mid);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(33, 150, 243, 0.15);
  border: 1px solid rgba(33, 150, 243, 0.15);
  border-radius: 8px;
  overflow: hidden;
}

.strip-item {
  background: var(--blue-dark);
  padding: 36px 28px;
  transition: background var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.strip-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--orange);
  transition: width 0.35s ease;
}

.strip-item:hover { background: var(--blue-mid); }
.strip-item:hover::after { width: 100%; }

.strip-icon {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--orange);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.strip-item h3 {
  font-family: var(--font-condensed);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}

.strip-item p {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ========================
   SECTION HEADERS
   ======================== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--orange);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 16px;
}

.section-title .accent { color: var(--orange); }

.section-sub {
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 520px;
  margin-bottom: 48px;
  line-height: 1.7;
}

/* ========================
   GALLERY
   ======================== */
.featured {
  background: var(--blue-deep);
  padding: 100px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(2,13,26,0.85) 100%);
  z-index: 1;
  transition: opacity var(--transition-slow);
}

.gallery-item:hover::before { opacity: 0.6; }

.gallery-item-inner {
  width: 100%; height: 100%;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-item-inner { transform: scale(1.06); }

.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 24px;
  z-index: 2;
  transform: translateY(6px);
  opacity: 0;
  transition: all var(--transition-slow);
}
.gallery-item:hover .gallery-overlay { opacity: 1; transform: translateY(0); }

.gallery-overlay span {
  display: block;
  font-family: var(--font-condensed);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}
.gallery-overlay em {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  font-style: normal;
}

/* ========================
   ORANGE BAND CTA
   ======================== */
.orange-band {
  background: var(--orange);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.orange-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.05) 20px,
    rgba(255,255,255,0.05) 40px
  );
}

.orange-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.orange-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
}

.orange-band .btn {
  background: var(--white);
  color: var(--orange-dim);
  border-color: var(--white);
  white-space: nowrap;
}
.orange-band .btn:hover {
  background: var(--blue-deep);
  color: var(--white);
  border-color: var(--blue-deep);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* ========================
   PAGE HERO (inner pages)
   ======================== */
.page-hero {
  background: var(--blue-dark);
  padding: 140px 28px 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(33, 150, 243, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 150, 243, 0.06) 1px, transparent 1px);
  background-size: 50px 50px;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--blue-deep);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero h1 .accent { color: var(--orange); }

.page-hero p {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 560px;
  line-height: 1.7;
}

/* ========================
   SERVICES CARDS
   ======================== */
.services-section {
  background: var(--blue-deep);
  padding: 80px 0 100px;
}

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

.service-card {
  background: var(--blue-dark);
  border: 1px solid rgba(33, 150, 243, 0.15);
  border-radius: 8px;
  padding: 40px 36px;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 0;
  background: var(--orange);
  transition: height 0.4s ease;
}

.service-card:hover {
  border-color: rgba(33, 150, 243, 0.35);
  transform: translateY(-4px);
}
.service-card:hover::before { height: 100%; }

.service-card-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: rgba(33, 150, 243, 0.12);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.service-card h3 {
  font-family: var(--font-condensed);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 20px;
}

.price-tag {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--orange);
  letter-spacing: 0.04em;
}

.price-tag sub {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-dim);
  vertical-align: middle;
  margin-left: 4px;
}

.feature-list {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(33, 150, 243, 0.12);
  padding-top: 16px;
}

.feature-list li {
  font-size: 0.875rem;
  color: var(--text-dim);
  padding-left: 20px;
  position: relative;
  font-family: var(--font-condensed);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.feature-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.75rem;
}

.bespoke-box {
  background: var(--blue-mid);
  border: 1px solid rgba(33, 150, 243, 0.2);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  padding: 36px 40px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.bespoke-box h3 {
  font-family: var(--font-condensed);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}

.bespoke-box p {
  font-size: 0.9rem;
  color: var(--text-dim);
}

/* ========================
   GALLERY PAGE FULL
   ======================== */
.gallery-page {
  background: var(--blue-deep);
  padding: 60px 0 100px;
}

.gallery-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 4px;
  border: 1px solid rgba(33, 150, 243, 0.3);
  background: transparent;
  color: var(--text-dim);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-full-item {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
}

.gallery-full-item:nth-child(7) {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery-full-item-inner {
  width: 100%; height: 100%;
  transition: transform 0.5s ease;
}

.gallery-full-item:hover .gallery-full-item-inner { transform: scale(1.05); }

.gallery-full-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(2,13,26,0.8) 100%);
  z-index: 1;
}

.gallery-full-item .gallery-overlay {
  opacity: 0;
  transition: all var(--transition-slow);
}
.gallery-full-item:hover .gallery-overlay { opacity: 1; }

/* ========================
   ABOUT PAGE
   ======================== */
.about-section { background: var(--blue-deep); padding: 80px 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.about-image-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background-image: url('images/gallery-6.jpg');
  background-size: cover;
  background-position: center;
}

.about-image-wrap::after {
  content: '';
  position: absolute;
  bottom: -2px; right: -2px;
  width: 80px; height: 80px;
  background: var(--orange);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 24px;
}

.about-text h2 .accent { color: var(--orange); }

.about-text p {
  color: var(--text-dim);
  margin-bottom: 18px;
  font-size: 0.95rem;
  line-height: 1.75;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

.value-card {
  background: var(--blue-dark);
  border: 1px solid rgba(33, 150, 243, 0.15);
  border-radius: 8px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
}

.value-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(255, 107, 26, 0.15);
  line-height: 1;
  margin-bottom: 10px;
}

.value-card h4 {
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.6;
}

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

.team-card {
  background: var(--blue-dark);
  border: 1px solid rgba(33, 150, 243, 0.15);
  border-radius: 8px;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.team-card:hover { transform: translateY(-4px); border-color: rgba(255, 107, 26, 0.4); }

.team-avatar {
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--blue-rich), var(--blue-bright));
}

.team-card-body {
  padding: 20px 24px;
}

.team-card h4 {
  font-family: var(--font-condensed);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.team-card .role {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
  display: block;
}

.team-card p { font-size: 0.875rem; color: var(--text-dim); line-height: 1.6; }

.team-solo {
  display: flex;
  gap: 0;
  max-width: 680px;
  background: var(--blue-dark);
  border: 1px solid rgba(33, 150, 243, 0.15);
  border-radius: 8px;
  overflow: hidden;
}

.team-solo-image {
  width: 220px;
  flex-shrink: 0;
}

.team-solo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-solo-body {
  padding: 28px;
}

.team-solo-body h4 {
  font-family: var(--font-condensed);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.team-solo-body .role {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 14px;
}

.team-solo-body p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.7; }

@media (max-width: 640px) {
  .team-solo { flex-direction: column; max-width: 100%; }
  .team-solo-image { width: 100%; height: 220px; }
}

/* ========================
   BLOG
   ======================== */
.blog-section { background: var(--blue-deep); padding: 60px 0 100px; }

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

.blog-card {
  background: var(--blue-dark);
  border: 1px solid rgba(33, 150, 243, 0.15);
  border-radius: 8px;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.blog-card:hover { transform: translateY(-4px); border-color: rgba(255, 107, 26, 0.35); }

.blog-thumb {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}

.blog-thumb-inner {
  width: 100%; height: 100%;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-thumb-inner { transform: scale(1.05); }

.blog-body { padding: 24px 24px 28px; }

.blog-tag {
  display: inline-block;
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255, 107, 26, 0.12);
  border: 1px solid rgba(255, 107, 26, 0.25);
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 12px;
}

.blog-card h3 {
  font-family: var(--font-condensed);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-card p {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-meta {
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(33, 150, 243, 0.6);
}

/* ========================
   CONTACT PAGE
   ======================== */
.contact-section { background: var(--blue-deep); padding: 80px 0 100px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 36px;
  line-height: 1.7;
}

.contact-details { display: flex; flex-direction: column; gap: 12px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--blue-dark);
  border: 1px solid rgba(33, 150, 243, 0.15);
  border-radius: 8px;
  transition: border-color var(--transition);
}
.contact-item:hover { border-color: rgba(255, 107, 26, 0.4); }

.contact-item-icon {
  width: 40px; height: 40px;
  background: rgba(255, 107, 26, 0.12);
  border: 1px solid rgba(255, 107, 26, 0.25);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  color: var(--orange);
}

.contact-item-text strong {
  display: block;
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 2px;
}

.contact-item-text span {
  font-size: 0.9rem;
  color: var(--white);
}

/* Contact Form */
.contact-form {
  background: var(--blue-dark);
  border: 1px solid rgba(33, 150, 243, 0.18);
  border-radius: 8px;
  padding: 44px 44px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.form-group label {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid rgba(33, 150, 243, 0.2);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  background: var(--blue-mid);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(143, 170, 191, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 26, 0.15);
}

.form-group select option { background: var(--blue-dark); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 12px;
  text-align: center;
  font-family: var(--font-condensed);
  letter-spacing: 0.04em;
}

/* ========================
   FOOTER
   ======================== */
.footer {
  background: var(--blue-dark);
  border-top: 1px solid rgba(33, 150, 243, 0.15);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-dim);
  margin-top: 14px;
  max-width: 280px;
  line-height: 1.6;
}

.footer h4 {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--orange); }

.footer-contact p {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.footer-contact a {
  color: var(--white);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--orange); }

.contact-info-only {
  max-width: 560px;
}

.footer-bottom {
  border-top: 1px solid rgba(33, 150, 243, 0.1);
  padding-top: 28px;
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(143, 170, 191, 0.4);
  text-align: center;
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 960px) {
  .hero-content { padding-left: 28px; padding-right: 28px; }
  .hero-right { display: none; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-full-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-full-item:nth-child(7) { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: rgba(6, 20, 40, 0.98); backdrop-filter: blur(16px); padding: 16px 24px 24px; gap: 4px; border-bottom: 1px solid rgba(33,150,243,0.2); }
  .nav-links.open { display: flex; }
  .menu-toggle { display: flex; }
  .strip-grid { grid-template-columns: 1fr; }
  .gallery-grid, .gallery-full-grid { grid-template-columns: 1fr; }
  .gallery-item.wide, .gallery-item.tall { grid-column: span 1; grid-row: span 1; }
  .gallery-full-item:nth-child(7) { grid-column: span 1; aspect-ratio: 4/3; }
  .blog-grid { grid-template-columns: 1fr; }
  .team-grid, .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 24px; }
  .orange-band-inner { flex-direction: column; text-align: center; }
  .hero-stats { gap: 24px; }
}

/* ========================
   UTILITY / MODIFIER CLASSES
   (replacing inline styles)
   ======================== */

/* index.html — homepage gallery item backgrounds */
.gitem-1 { background-image: url('images/gallery-1.jpg'); background-size: cover; background-position: center; }
.gitem-2 { background-image: url('images/gallery-2.jpg'); background-size: cover; background-position: center; }
.gitem-3 { background-image: url('images/gallery-3.jpg'); background-size: cover; background-position: center; }
.gitem-4 { background-image: url('images/gallery-4.jpg'); background-size: cover; background-position: center; }

/* index.html — centred "view more" wrapper */
.text-center-mt { text-align: center; margin-top: 40px; }

/* about.html — inline button group */
.btn-group { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

/* about.html — section spacing wrappers */
.section-mt { margin-top: 80px; }

/* about.html — section title bottom spacing */
.section-title--spaced { margin-bottom: 40px; }

/* about.html — team avatar gradient variants */
.team-avatar--blue   { background: linear-gradient(145deg,#0f3d6e,#2196f3); }
.team-avatar--orange { background: linear-gradient(145deg,#0a2540,#ff6b1a); }
.team-avatar--sky    { background: linear-gradient(145deg,#061428,#1a6dc8,#64b5f6); }

/* gallery.html — full gallery item backgrounds */
.gfull-1 { background-image: url('images/gallery-1.jpg'); background-size: cover; background-position: center; }
.gfull-2 { background-image: url('images/gallery-2.jpg'); background-size: cover; background-position: center; }
.gfull-3 { background-image: url('images/gallery-3.jpg'); background-size: cover; background-position: center; }
.gfull-4 { background-image: url('images/gallery-4.jpg'); background-size: cover; background-position: center; }
.gfull-5 { background-image: url('images/gallery-5.jpg'); background-size: cover; background-position: center; }
.gfull-6 { background-image: url('images/gallery-6.jpg'); background-size: cover; background-position: center; }
.gfull-7 { background-image: url('images/gallery-7.jpg'); background-size: cover; background-position: center; }
.gfull-8 { background-image: url('images/gallery-8.jpg'); background-size: cover; background-position: center; }
.gfull-9 { background-image: url('images/gallery-1.jpg'); background-size: cover; background-position: center; }

/* blog.html — blog thumbnail backgrounds */
.bthumb-1 { background: linear-gradient(145deg,#0a2540,#1a6dc8); }
.bthumb-2 { background: linear-gradient(155deg,#061428,#0f3d6e,#ff6b1a); }
.bthumb-3 { background: linear-gradient(140deg,#0a2540,#2196f3); }
.bthumb-4 { background: linear-gradient(145deg,#061428,#1a6dc8,#64b5f6); }
.bthumb-5 { background: linear-gradient(165deg,#020d1a,#0f3d6e,#ff8c42); }
.bthumb-6 { background: linear-gradient(145deg,#0a2540,#2196f3); }

/* contact.html — "Fully Licensed & Insured" info box */
.licensed-box {
  margin-top: 28px;
  padding: 20px 24px;
  background: rgba(255,107,26,0.08);
  border: 1px solid rgba(255,107,26,0.25);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
}
.licensed-label {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.licensed-text {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* contact.html — full-width submit button */
.btn-full { width: 100%; justify-content: center; }
