/* ===== ROOT VARIABLES ===== */
:root {
  --blue: #1b5ea6;
  --blue-light: #2a7de1;
  --dark: #0a0f1e;
  --dark-navy: #0d1526;
  --charcoal: #1e2537;
  --white: #ffffff;
  --gray: #f4f6f9;
  --text-gray: #6b7280;
  --border: rgba(255, 255, 255, 0.1);
  --gold: #c9a84c;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Open Sans", sans-serif;
  color: var(--dark);
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

/* ===== UTILITY ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.blue-text {
  color: #5ba3f5;
}
.section-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.section-tag.light {
  color: #7eb3ff;
}
.section-title {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title.light {
  color: var(--white);
}
.section-sub {
  color: var(--text-gray);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}
.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(27, 94, 166, 0.4);
}
.btn-outline {
  display: inline-block;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}
.full-width {
  width: 100%;
  text-align: center;
}
.learn-more {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.learn-more:hover {
  color: var(--blue-light);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s;
  padding: 1.2rem 0;
}
.navbar.scrolled {
  background: var(--dark-navy);
  padding: 0.8rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo img {
  height: 50px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover {
  color: var(--blue-light);
}
.dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark-navy);
  border: 1px solid var(--border);
  border-radius: 6px;
  min-width: 220px;
  padding: 0.5rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu li a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.82rem;
  color: #cdd6e8;
}
.dropdown-menu li a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}
.nav-cta {
  background: var(--blue);
  color: var(--white);
  padding: 0.7rem 1.4rem;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.3s;
}
.nav-cta:hover {
  background: var(--blue-light);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    var(--dark-navy) 0%,
    #0f1e3d 50%,
    #0a1628 100%
  );
  display: flex;
  flex-direction: column;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("images/hero-bg.jpg") center/cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
}
.hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 2rem;
  width: 100%;
}
.hero-text {
  flex: 1;
  max-width: 580px;
}
.hero-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #7eb3ff;
  margin-bottom: 1.2rem;
}
.hero-headline {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 25px rgba(0, 0, 0, 0.6);
}
.hero-sub {
  color: #b0c4de;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-icons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}
.hero-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}
.hero-icon-item i {
  font-size: 1.3rem;
  color: var(--blue-light);
}
.hero-icon-item span {
  font-size: 0.65rem;
  color: #8aa6c8;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.hero-billboard {
  flex-shrink: 0;
  width: 340px;
}
.billboard-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border-left: 5px solid var(--blue);
}
.billboard-sub {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
}
.billboard-divider {
  height: 2px;
  background: var(--blue);
  margin: 1rem 0;
  width: 60%;
}
.billboard-tag {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}
.billboard-logo img {
  height: 50px;
  width: auto;
}
.hero-bottom-bar {
  background: rgba(27, 94, 166, 0.95);
  backdrop-filter: blur(10px);
}
.hero-bottom-bar > * {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.hero-bar-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}
.hero-bar-item i {
  font-size: 2rem;
  color: var(--white);
  opacity: 0.8;
}
.hero-bar-item strong {
  display: block;
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
}
.hero-bar-item p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  margin-bottom: 0.3rem;
}
.hero-bar-item a {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.hero-bar-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

/* ===== SERVICES ===== */
.services {
  padding: 6rem 0;
  background: var(--white);
}
.services .section-title {
  text-align: center;
}
.services .section-tag {
  text-align: center;
  display: block;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border: 1px solid #e5eaf2;
  border-radius: 10px;
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
}
.service-card:hover {
  border-color: var(--blue);
  box-shadow: 0 10px 40px rgba(27, 94, 166, 0.12);
  transform: translateY(-4px);
}
.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(27, 94, 166, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.service-icon i {
  font-size: 1.4rem;
  color: var(--blue);
}
.service-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.8rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* ===== INDUSTRIES ===== */
.industries {
  padding: 6rem 0;
  background: var(--dark-navy);
}
.industries .section-title,
.industries .section-tag {
  text-align: center;
  display: block;
}
.industries-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-top: 3rem; }
.industry-card { flex: 0 1 260px; }
.industry-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  min-height: 320px;
}
.industry-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.industry-img.corporations {
  background: url("images/corporations.jpg") center/cover no-repeat;
}
.industry-img.small-biz {
  background: url("images/smallbiz.jpg") center/cover no-repeat;
}
.industry-img.nonprofits {
  background: url("images/nonprofits.jpg") center/cover no-repeat;
}
.industry-img.cannabis {
  background: url("images/cannabis.jpg") center/cover no-repeat;
}
.industry-img.startups {
  background: url("images/startups.jpg") center/cover no-repeat;
}
.industry-img.community {
  background: url("images/community.jpg") center/cover no-repeat;
}
.industry-img.servicebased {
  background: url("images/servicebased.jpg") center/cover no-repeat;
}
.industry-info {
  background: var(--charcoal);
  padding: 1.2rem;
}
.industry-icon {
  margin-bottom: 0.5rem;
}
.industry-icon i {
  font-size: 1.2rem;
  color: var(--blue-light);
}
.industry-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.industry-card p {
  font-size: 0.78rem;
  color: #8aa6c8;
  line-height: 1.5;
}

/* ===== ABOUT ===== */
.about {
  padding: 6rem 0;
  background: var(--gray);
}
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text .section-title {
  color: var(--dark);
}
.about-text p {
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.about-text .btn-primary {
  margin-top: 1rem;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.stat-box {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-bottom: 3px solid var(--blue);
}
.stat-box h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 0.3rem;
}
.stat-box p {
  font-size: 0.82rem;
  color: var(--text-gray);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ===== PROCESS ===== */
.process {
  padding: 6rem 0;
  background: var(--white);
}
.process .section-tag,
.process .section-title,
.process .section-sub {
  text-align: center;
  display: block;
}
.process-steps-vertical {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.process-step-v {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--gray);
  border-radius: 12px;
  padding: 1.8rem;
  border-left: 4px solid var(--blue);
  transition: all 0.3s;
}
.process-step-v:hover {
  box-shadow: 0 8px 30px rgba(27, 94, 166, 0.12);
  transform: translateY(-3px);
}
.step-number-v {
  background: var(--blue);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
}
.step-content {
  flex: 1;
}
.step-content .step-icon {
  margin-bottom: 0.6rem;
}
.step-content .step-icon i {
  font-size: 1.3rem;
  color: var(--blue);
}
.process-step-v h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.process-step-v p {
  font-size: 0.82rem;
  color: var(--text-gray);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .process-steps-vertical {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .process-steps-vertical {
    grid-template-columns: 1fr;
  }
}


/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 6rem 0;
  background: var(--dark-navy);
}
.testimonials .section-tag,
.testimonials .section-title {
  text-align: center;
  display: block;
  margin-bottom: 0.5rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--charcoal);
  border-radius: 10px;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.testimonial-card:hover {
  border-color: var(--blue);
}
.stars {
  color: #f59e0b;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.testimonial-card p {
  color: #b0c4de;
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.author-avatar i {
  color: var(--white);
  font-size: 1rem;
}
.testimonial-author strong {
  display: block;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
}
.testimonial-author span {
  font-size: 0.75rem;
  color: #7eb3ff;
}

/* ===== WHY TMG ===== */
.why-tmg {
  padding: 6rem 0;
  background: var(--gray);
}
.why-tmg .section-tag,
.why-tmg .section-title,
.why-tmg .section-sub {
  text-align: center;
  display: block;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.why-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.why-card:hover {
  border-bottom: 3px solid var(--blue);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(27, 94, 166, 0.12);
}
.why-icon {
  width: 70px;
  height: 70px;
  background: rgba(27, 94, 166, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.why-icon i {
  font-size: 1.6rem;
  color: var(--blue);
}
.why-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.8rem;
}
.why-card p {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PARTNERSHIP ===== */
.partnership {
  padding: 6rem 0;
  background: var(--dark-navy);
  text-align: center;
}
.partnership .section-tag,
.partnership .section-title,
.partnership .section-sub {
  display: block;
}
.partnership .section-sub {
  color: #7eb3ff;
}
.partnership-intro {
  color: #b0c4de;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}
.partnership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.partnership-card {
  background: var(--charcoal);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.partnership-card:hover {
  border-color: var(--blue);
  transform: translateY(-5px);
}
.partnership-icon {
  width: 65px;
  height: 65px;
  background: rgba(27, 94, 166, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.partnership-icon i {
  font-size: 1.5rem;
  color: var(--blue-light);
}
.partnership-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.partnership-card p {
  font-size: 0.85rem;
  color: #8aa6c8;
  line-height: 1.7;
}
.partnership-cta {
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .partnership-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== BOOKING ===== */
.booking {
  padding: 6rem 0;
  background: var(--gray);
}
.booking .section-tag,
.booking .section-title,
.booking .section-sub {
  text-align: center;
  display: block;
}

/* ===== QR SECTION ===== */
.qr-section {
  padding: 5rem 0;
  background: var(--white);
}
.qr-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.qr-text .section-title {
  color: var(--dark);
}
.qr-text p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.qr-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-outline-dark {
  display: inline-block;
  border: 2px solid var(--blue);
  color: var(--blue);
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.btn-outline-dark:hover {
  background: var(--blue);
  color: var(--white);
}
.qr-code-box {
  text-align: center;
}
.qr-code {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  display: inline-block;
  box-shadow: 0 10px 40px rgba(27, 94, 166, 0.15);
  border: 3px solid var(--blue);
  margin-bottom: 1rem;
}
.qr-code img {
  width: 200px;
  height: 200px;
  display: block;
}
.qr-code-box p {
  font-size: 0.85rem;
  color: var(--text-gray);
  font-weight: 600;
}
@media (max-width: 768px) {
  .qr-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .qr-links {
    justify-content: center;
  }
}

/* ===== PARTNERSHIP ===== */
.partnership {
  padding: 6rem 0;
  background: var(--dark-navy);
  text-align: center;
}
.partnership .section-tag,
.partnership .section-title,
.partnership .section-sub {
  display: block;
}
.partnership .section-sub {
  color: #7eb3ff;
}
.partnership-intro {
  color: #b0c4de;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}
.partnership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.partnership-card {
  background: var(--charcoal);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.partnership-card:hover {
  border-color: var(--blue);
  transform: translateY(-5px);
}
.partnership-icon {
  width: 65px;
  height: 65px;
  background: rgba(27, 94, 166, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.partnership-icon i {
  font-size: 1.5rem;
  color: var(--blue-light);
}
.partnership-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.partnership-card p {
  font-size: 0.85rem;
  color: #8aa6c8;
  line-height: 1.7;
}
.partnership-cta {
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .partnership-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== FAQ ===== */
.faq {
  padding: 6rem 0;
  background: var(--white);
}
.faq .section-tag,
.faq .section-title,
.faq .section-sub {
  text-align: center;
  display: block;
}
.faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background: var(--gray);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e5eaf2;
  transition: all 0.3s;
}
.faq-item.active {
  border-color: var(--blue);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 1.8rem;
  cursor: pointer;
  gap: 1rem;
}
.faq-question h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
}
.faq-question i {
  color: var(--blue);
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.active .faq-question i {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
}
.faq-answer p {
  padding: 0 1.8rem 1.4rem;
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.8;
}
.faq-item.active .faq-answer {
  max-height: 200px;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--blue);
  padding: 3rem 0;
}
.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.stat-item i {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.6);
}
.stat-item h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-item p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--dark-navy), #0f1e3d);
  text-align: center;
  overflow: hidden;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: url("images/hero-bg.jpg") center/cover;
  opacity: 0.08;
}
.cta-content {
  position: relative;
  z-index: 1;
}
.cta-content h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.cta-content p {
  color: #b0c4de;
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* ===== CONTACT ===== */
.contact {
  padding: 6rem 0;
  background: var(--gray);
}
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.contact-info .section-title {
  color: var(--dark);
}
.contact-info > p {
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.contact-detail-item i {
  width: 36px;
  height: 36px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.contact-detail-item span {
  font-size: 0.9rem;
  color: var(--dark);
}
.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}
.social-links a {
  width: 38px;
  height: 38px;
  background: var(--dark-navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background 0.3s;
}
.social-links a:hover {
  background: var(--blue);
}
.contact-form {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #e5eaf2;
  border-radius: 6px;
  font-family: "Open Sans", sans-serif;
  font-size: 0.88rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s;
  margin-bottom: 1rem;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.contact-form select {
  color: var(--text-gray);
  cursor: pointer;
}
.contact-form textarea {
  resize: vertical;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-navy);
  padding: 4rem 0 0;
}
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand img {
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.82rem;
  color: #7a8ba8;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.footer-tagline {
  font-size: 0.72rem !important;
  font-weight: 700;
  color: var(--blue-light) !important;
  letter-spacing: 0.05em;
  margin-top: 1rem;
}
.footer-tagline span {
  color: #7a8ba8;
}
.footer h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.2rem;
  letter-spacing: 0.1em;
}
.footer-links ul,
.footer-services ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a,
.footer-services a {
  font-size: 0.82rem;
  color: #7a8ba8;
  transition: color 0.2s;
}
.footer-links a:hover,
.footer-services a:hover {
  color: var(--white);
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}
.footer-contact-item i {
  color: var(--blue-light);
  font-size: 0.85rem;
  width: 16px;
}
.footer-contact-item span {
  font-size: 0.82rem;
  color: #7a8ba8;
}
.footer-lets-talk {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.footer-lets-talk h4 {
  margin-bottom: 1rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: #4a5a72;
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  font-size: 0.78rem;
  color: #4a5a72;
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: var(--white);
}

/* ===== THANK YOU POPUP ===== */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.popup-overlay.active {
  display: flex;
}

.popup-box {
  background: linear-gradient(135deg, #0a0f1e, #0d1526);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  max-width: 480px;
  width: 90%;
  text-align: center;
  animation: popupIn 0.4s ease;
  border-top: 5px solid var(--blue);
  position: relative;
  z-index: 10000;
}
@keyframes popupIn {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(30px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.popup-icon {
  margin-bottom: 1.5rem;
}
.popup-icon i {
  font-size: 4rem;
  color: #16a34a;
}
.popup-box h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
}

.popup-box p {
  color: #b0c4de;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.popup-box p strong {
  color: var(--white);
}
.popup-tagline {
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.05em;
  margin: 1.5rem 0;
  padding: 1rem;
  background: rgba(27, 94, 166, 0.06);
  border-radius: 8px;
}
.popup-box .btn-primary {
  margin-top: 0.5rem;
  padding: 0.9rem 2.5rem;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
 .industry-card {
    flex: 0 1 45%;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  .hero-billboard {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--dark-navy);
    padding: 2rem;
    gap: 1.2rem;
    z-index: 999;
  }
  .hero-content {
    flex-direction: column;
    padding-top: 6rem;
  }
  .hero-btns {
    flex-direction: column;
  }
  .hero-bottom-bar > * {
    flex-direction: column;
    gap: 1.5rem;
  }
  .hero-bar-divider {
    display: none;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .industry-card {
    flex: 0 1 100%;
  }
  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .process-steps {
    flex-direction: column;
    align-items: stretch;
  }
  .process-arrow {
    transform: rotate(90deg);
    text-align: center;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .stats-container {
    grid-template-columns: 1fr 1fr;
  }
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .cta-content h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .industries-grid {
    grid-template-columns: 1fr;
  }
  .stats-container {
    grid-template-columns: 1fr;
  }
  .hero-icons {
    gap: 1rem;
  }
}

/* ===== MOBILE FIXES ===== */
@media (max-width: 768px) {
  /* Hero Icons - wrap into 3 columns */
  .hero-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 1.5rem;
  }
  .hero-icon-item {
    align-items: center;
    text-align: center;
  }

  /* Hero Bottom Bar - fix stacking */
  .hero-bottom-bar > * {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  .hero-bar-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
  }
  .hero-bar-item i {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  /* Hero Icons - 2 columns on very small screens */
  .hero-icons {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== EQUAL HEIGHT FIXES ===== */
.services-grid {
  align-items: stretch;
}
.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.service-card p {
  flex: 1;
}
.process-steps-vertical {
  align-items: stretch;
}
.process-step-v {
  height: 100%;
}
.step-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* ===== INDUSTRY CARDS EQUAL HEIGHT ===== */
.industries-grid { 
  align-items: stretch; 
}
.industry-card { 
  display: flex; 
  flex-direction: column; 
}
.industry-img { 
  height: 200px; 
  flex-shrink: 0; 
}
.industry-info { 
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 120px;
}

/* ===== HERO BOTTOM BAR FIX ===== */
.hero-bottom-bar { background: rgba(27,94,166,0.95); }
.hero-bar-inner { 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 1.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}
.hero-bar-item { 
  display: flex; 
  align-items: center; 
  gap: 1rem; 
}
.hero-bar-item i { 
  font-size: 2rem; 
  color: var(--white); 
  opacity: 0.8; 
  flex-shrink: 0;
}
.hero-bar-item strong { 
  display: block; 
  color: var(--white); 
  font-size: 0.85rem; 
  letter-spacing: 0.1em; 
  margin-bottom: 0.2rem; 
}
.hero-bar-item p { 
  color: rgba(255,255,255,0.75); 
  font-size: 0.78rem; 
  margin-bottom: 0.3rem; 
}
.hero-bar-item a { 
  color: var(--white); 
  font-size: 0.75rem; 
  font-weight: 700; 
  letter-spacing: 0.1em; 
}
.hero-bar-divider { 
  width: 1px; 
  height: 60px; 
  background: rgba(255,255,255,0.25); 
}

@media (max-width: 768px) {
  .hero-bar-inner { 
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .hero-bar-divider { 
    width: 100%; 
    height: 1px; 
  }
}
/* ===== HERO FOUNDER BADGE ===== */
.hero-founder {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.5rem 1.2rem 0.5rem 0.5rem;
  margin-bottom: 1.5rem;
  width: fit-content;
}
.hero-founder img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.hero-founder strong {
  display: block;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
}
.hero-founder span {
  display: block;
  color: #8aa6c8;
  font-size: 0.7rem;
}

@media (max-width: 1024px) {
  .hero-founder { display: none; }
}
/* ===== CASE STUDIES ===== */
.case-studies { padding: 6rem 0; background: var(--dark-navy); }
.case-studies .section-tag, .case-studies .section-title { text-align: center; display: block; }
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.case-card { background: var(--charcoal); border-radius: 12px; overflow: hidden; border: 1px solid var(--border); display: flex; flex-direction: column; transition: all 0.3s; }
.case-card:hover { border-color: var(--blue); transform: translateY(-5px); box-shadow: 0 15px 40px rgba(27,94,166,0.15); }
.case-card img { width: 100%; height: 180px; object-fit: cover; flex-shrink: 0; }
.case-content { padding: 1.8rem; flex: 1; display: flex; flex-direction: column; }
.case-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; color: var(--blue-light); text-transform: uppercase; margin-bottom: 0.5rem; }
.case-content h3 { font-family: 'Montserrat', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--white); margin-bottom: 1rem; }
.case-challenge, .case-solution { font-size: 0.82rem; color: #b0c4de; line-height: 1.6; margin-bottom: 0.8rem; }
.case-challenge strong, .case-solution strong { color: var(--white); }
.case-results { margin-top: 0.5rem; padding-left: 1.1rem; flex: 1; }
.case-results li { font-size: 0.8rem; color: #8aa6c8; line-height: 1.8; list-style: disc; }

@media (max-width: 1024px) {
  .case-grid { grid-template-columns: 1fr; }
}
/* ===== BLUEPRINT ===== */
.blueprint { padding: 6rem 0; background: var(--white); text-align: center; }
.blueprint .section-tag, .blueprint .section-title, .blueprint .section-sub { display: block; }
.blueprint-intro { color: var(--text-gray); font-size: 1rem; max-width: 750px; margin: 0 auto 3rem; line-height: 1.8; }
.blueprint-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 800px; margin: 0 auto 2.5rem; text-align: left; }
.blueprint-item { display: flex; align-items: center; gap: 0.7rem; background: var(--gray); border-radius: 8px; padding: 1rem 1.2rem; font-size: 0.88rem; font-weight: 600; color: var(--dark); }
.blueprint-item i { color: #16a34a; font-size: 1rem; flex-shrink: 0; }
.blueprint-cta { margin-top: 1rem; }

@media (max-width: 768px) {
  .blueprint-grid { grid-template-columns: 1fr; }
}

/* ===== PRICING ===== */
.pricing { padding: 6rem 0; background: var(--gray); }
.pricing .section-tag, .pricing .section-title, .pricing .section-sub { text-align: center; display: block; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; align-items: stretch; }
.pricing-card { background: var(--white); border-radius: 12px; padding: 2.2rem 1.8rem; text-align: center; border: 1px solid #e5eaf2; position: relative; display: flex; flex-direction: column; transition: all 0.3s; }
.pricing-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(27,94,166,0.1); }
.pricing-card.featured { border: 2px solid var(--blue); box-shadow: 0 10px 40px rgba(27,94,166,0.15); }
.pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--blue); color: var(--white); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.05em; padding: 0.35rem 1rem; border-radius: 20px; white-space: nowrap; }
.pricing-card h3 { font-family: 'Montserrat', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--dark); margin-top: 0.5rem; margin-bottom: 0.8rem; }
.pricing-amount { font-family: 'Montserrat', sans-serif; font-size: 2.2rem; font-weight: 900; color: var(--blue); margin-bottom: 0.8rem; }
.pricing-desc { font-size: 0.82rem; color: var(--text-gray); line-height: 1.6; margin-bottom: 1.5rem; flex: 1; }

@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ===== FOUNDER ===== */
.founder { padding: 6rem 0; background: var(--white); }
.founder-container { display: grid; grid-template-columns: 320px 1fr; gap: 4rem; align-items: center; }
.founder-image img { width: 100%; border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.founder-text .section-title { color: var(--dark); margin-bottom: 0.3rem; }
.founder-role { font-size: 0.95rem; font-weight: 700; color: var(--blue); margin-bottom: 1.5rem; }
.founder-text p:not(.founder-role) { color: var(--text-gray); line-height: 1.8; margin-bottom: 1.2rem; font-size: 0.95rem; }

@media (max-width: 768px) {
  .founder-container { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .founder-image img { max-width: 260px; margin: 0 auto; }
}