/* ===== FLYHIGHTECH SOLUTIONS - GLOBAL STYLESHEET ===== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --navy: #0a1628;
  --deep-blue: #0d2247;
  --primary: #0057b8;
  --primary-dark: #003d85;
  --cyan: #00b4d8;
  --cyan-light: #48cae4;
  --cyan-bright: #00d4ff;
  --white: #ffffff;
  --off-white: #f8fafc;
  --light-grey: #e8edf5;
  --mid-grey: #94a3b8;
  --text-dark: #1a2332;
  --text-body: #334155;
  --text-muted: #64748b;
  --accent-gold: #f59e0b;
  --success: #10b981;
  --gradient-hero: linear-gradient(135deg, #0a1628 0%, #0d2247 40%, #003d85 100%);
  --gradient-primary: linear-gradient(135deg, #0057b8 0%, #00b4d8 100%);
  --gradient-cyan: linear-gradient(135deg, #00b4d8 0%, #00d4ff 100%);
  --gradient-card: linear-gradient(135deg, rgba(0,87,184,0.08) 0%, rgba(0,180,216,0.08) 100%);
  --shadow-sm: 0 2px 8px rgba(0,87,184,0.08);
  --shadow-md: 0 8px 32px rgba(0,87,184,0.12);
  --shadow-lg: 0 24px 64px rgba(0,87,184,0.18);
  --shadow-xl: 0 40px 80px rgba(0,87,184,0.22);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1.05rem; }

p { margin-bottom: 1rem; color: var(--text-body); }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== UTILITY CLASSES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-cyan { color: var(--cyan); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-muted); }

.bg-navy { background: var(--navy); }
.bg-deep-blue { background: var(--deep-blue); }
.bg-off-white { background: var(--off-white); }
.bg-gradient { background: var(--gradient-hero); }

.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,180,216,0.12);
  color: var(--cyan);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(0,180,216,0.25);
  margin-bottom: 16px;
}

.badge.badge-white {
  background: rgba(255,255,255,0.12);
  color: var(--cyan-light);
  border-color: rgba(255,255,255,0.2);
}

.section-header { margin-bottom: 56px; }
.section-header .badge { margin-bottom: 14px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; color: var(--text-muted); max-width: 620px; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,87,184,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,87,184,0.45);
  color: var(--white);
}

.btn-cyan {
  background: var(--gradient-cyan);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(0,180,216,0.35);
  font-weight: 700;
}

.btn-cyan:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,180,216,0.5);
  color: var(--navy);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.85rem;
  font-weight: 500;
}

.announcement-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.announcement-bar a { color: var(--cyan-light); font-weight: 600; }
.announcement-bar a:hover { color: var(--white); }

.contact-strip {
  display: flex;
  align-items: center;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
}

.contact-item svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light-grey);
  transition: var(--transition);
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-img {
  /* height: 48px; */
  width: 180px;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.1;
}

.logo-text span.fly { color: var(--text-dark); }
.logo-text span.high { color: var(--primary); }
.logo-text span.tech { color: var(--cyan); }
.logo-text .solutions { display: block; font-size: 0.65rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }

/* Navigation */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: rgba(0,87,184,0.06);
}

.nav-link svg { width: 14px; height: 14px; transition: var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--light-grey);
  min-width: 240px;
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  pointer-events: none;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.88rem;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.dropdown a:hover {
  background: var(--gradient-card);
  color: var(--primary);
}

.dropdown-icon {
  width: 32px;
  height: 32px;
  background: var(--gradient-card);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.dropdown-icon svg { width: 16px; height: 16px; }

.header-cta { display: flex; align-items: center; gap: 12px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: var(--off-white);
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  overflow-y: auto;
  padding: 80px 24px 40px;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  display: block;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-md);
  border-bottom: 1px solid var(--light-grey);
}

.mobile-nav a:hover { background: var(--off-white); color: var(--primary); }
.mobile-nav-close { position: absolute; top: 20px; right: 20px; }

/* ===== HERO SECTION ===== */
.hero {
  background: var(--gradient-hero);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0,180,216,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,87,184,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { color: var(--white); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,180,216,0.15);
  border: 1px solid rgba(0,180,216,0.3);
  color: var(--cyan-light);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
}

.hero h1 .highlight {
  background: var(--gradient-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat-num span { color: var(--cyan); }

.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 32px;
  backdrop-filter: blur(16px);
}

.hero-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.metric-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.metric-card .metric-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--white);
}

.metric-card .metric-icon svg { width: 20px; height: 20px; }

.metric-value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.metric-value .up { color: var(--success); font-size: 0.75rem; }

.metric-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}

.hero-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.service-tag {
  background: rgba(0,180,216,0.15);
  border: 1px solid rgba(0,180,216,0.25);
  color: var(--cyan-light);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--off-white);
  padding: 28px 0;
  border-bottom: 1px solid var(--light-grey);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-item svg { color: var(--primary); width: 18px; height: 18px; }

/* ===== SERVICE CARDS ===== */
.service-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,87,184,0.15);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-card);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
  transition: var(--transition);
}

.service-icon svg { width: 28px; height: 28px; }

.service-card:hover .service-icon {
  background: var(--gradient-primary);
  color: var(--white);
}

.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
}

.service-link svg { width: 16px; height: 16px; transition: var(--transition); }
.service-card:hover .service-link svg { transform: translateX(4px); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

/* ===== WHY CHOOSE US ===== */
.feature-item {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-grey);
  transition: var(--transition);
}

.feature-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(0,87,184,0.15);
}

.feature-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--light-grey);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}

.feature-icon-box {
  width: 52px;
  height: 52px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.feature-icon-box svg { width: 24px; height: 24px; }

.feature-content h4 { margin-bottom: 8px; }
.feature-content p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* ===== STATS SECTION ===== */
.stats-section {
  background: var(--gradient-hero);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300b4d8' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.stat-item { text-align: center; }

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number span { color: var(--cyan); }

.stat-label {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* ===== PROCESS SECTION ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 32px;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.step-num {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 54px;
  left: calc(50% + 30px);
  right: -50%;
  height: 2px;
  background: var(--light-grey);
  z-index: 0;
}

.process-step:last-child::after { display: none; }

.process-step h4 { margin-bottom: 10px; }
.process-step p { font-size: 0.88rem; color: var(--text-muted); }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 6rem;
  line-height: 1;
  font-family: 'Outfit', sans-serif;
  color: var(--light-grey);
  font-weight: 900;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--accent-gold);
}

.stars svg { width: 18px; height: 18px; }

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-name { font-weight: 700; font-size: 0.95rem; color: var(--text-dark); }
.author-role { font-size: 0.82rem; color: var(--text-muted); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

/* ===== FAQ ===== */
.faq-item {
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 12px;
  transition: var(--transition);
}

.faq-item.open { border-color: rgba(0,87,184,0.2); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--white);
  user-select: none;
  gap: 16px;
}

.faq-question h5 { font-size: 0.98rem; color: var(--text-dark); transition: var(--transition); }
.faq-item.open .faq-question h5 { color: var(--primary); }

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-toggle svg { width: 16px; height: 16px; transition: var(--transition); }
.faq-item.open .faq-toggle { background: var(--primary); color: var(--white); }
.faq-item.open .faq-toggle svg { transform: rotate(180deg); }

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 20px;
}

.faq-answer p { font-size: 0.92rem; color: var(--text-muted); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--gradient-hero);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,180,216,0.2) 0%, transparent 70%);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,87,184,0.3) 0%, transparent 70%);
}

.cta-content { position: relative; z-index: 1; }
.cta-content h2 { color: var(--white); margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 36px; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin: 20px 0 28px;
  max-width: 320px;
  line-height: 1.8;
}

.social-links { display: flex; gap: 12px; }

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

.social-link svg { width: 18px; height: 18px; }

.footer-col h5 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(0,180,216,0.3);
  display: inline-block;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.footer-links a::before {
  content: '›';
  color: var(--cyan);
  font-size: 1rem;
}

.footer-links a:hover { color: var(--cyan-light); padding-left: 4px; }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
}

.footer-contact-item svg { color: var(--cyan); width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 0.83rem; color: rgba(255,255,255,0.4); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.6); font-size: 0.83rem; }
.footer-bottom a:hover { color: var(--cyan); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
  background: var(--off-white);
  padding: 14px 0;
  border-bottom: 1px solid var(--light-grey);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--text-muted); }

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--gradient-hero);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,180,216,0.12) 0%, transparent 70%);
}

.page-hero h1 { color: var(--white); margin-bottom: 16px; font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 640px; margin: 0 auto 28px; }

/* ===== INDUSTRY CARDS ===== */
.industry-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0,87,184,0.15);
}

.industry-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-card);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  transition: var(--transition);
}

.industry-card:hover .industry-icon { background: var(--gradient-primary); }

.industry-card h5 { font-size: 0.95rem; color: var(--text-dark); }

/* ===== PRICING CARDS ===== */
.pricing-card {
  background: var(--white);
  border: 2px solid var(--light-grey);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  position: relative;
  transition: var(--transition);
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.04);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-name { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); font-weight: 700; margin-bottom: 12px; }
.pricing-price { font-family: 'Outfit', sans-serif; font-size: 3rem; font-weight: 900; color: var(--text-dark); line-height: 1; }
.pricing-price sup { font-size: 1.5rem; vertical-align: top; margin-top: 12px; }
.pricing-price sub { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.pricing-desc { font-size: 0.88rem; color: var(--text-muted); margin: 12px 0 24px; }

.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-body);
}

.pricing-feature svg { color: var(--success); width: 16px; height: 16px; flex-shrink: 0; }
.pricing-feature.disabled { color: var(--text-muted); opacity: 0.5; }
.pricing-feature.disabled svg { color: var(--text-muted); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  align-items: start;
}

/* ===== CONTACT FORM ===== */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--white); margin-bottom: 8px; }

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--light-grey);
  border-radius: var(--radius-md);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0,87,184,0.08);
}

.form-control::placeholder { color: var(--text-muted); }

textarea.form-control { resize: vertical; min-height: 130px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ===== CASE STUDY CARDS ===== */
.case-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
}

.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.case-image {
  height: 220px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-image-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 24px;
  width: 100%;
}

.case-metric {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 14px 12px;
  text-align: center;
}

.case-metric-val { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--white); }
.case-metric-val .green { color: #4ade80; }
.case-metric-label { font-size: 0.7rem; color: rgba(255,255,255,0.6); }

.case-industry {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0,180,216,0.9);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.73rem;
  font-weight: 600;
}

.case-body { padding: 28px; }
.case-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.case-body p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 20px; }

.case-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.case-tag { background: var(--off-white); color: var(--text-muted); padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 500; }

/* ===== BLOG CARDS ===== */
.blog-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.blog-image {
  height: 200px;
  background: var(--gradient-card);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
}

.blog-cat {
  display: inline-block;
  background: rgba(0,87,184,0.08);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-body { padding: 24px; }
.blog-body h3 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.45; }
.blog-body p { font-size: 0.87rem; color: var(--text-muted); margin-bottom: 16px; }
.blog-meta { display: flex; align-items: center; gap: 16px; font-size: 0.8rem; color: var(--text-muted); }
.blog-meta svg { width: 14px; height: 14px; }

/* ===== ICON UTILITIES ===== */
.icon-16 { width: 16px; height: 16px; }
.icon-20 { width: 20px; height: 20px; }
.icon-24 { width: 24px; height: 24px; }

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 100;
  transition: var(--transition);
  animation: float 3s ease-in-out infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}

.whatsapp-btn svg { width: 28px; height: 28px; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-menu, .header-cta { display: none; }
  .hamburger { display: flex; }
  .announcement-bar .contact-strip { display: none; }
  .announcement-bar .container { justify-content: center; }
  .section-pad { padding: 60px 0; }
  .hero { padding: 64px 0 56px; }
  .hero-stats { gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-bar-inner { justify-content: center; }
  .process-step::after { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .hero-btns { flex-direction: column; }
  .btn-lg { padding: 16px 28px; }
  .cta-btns { flex-direction: column; align-items: center; }
}

/* ===== MISC ===== */
.divider { height: 1px; background: var(--light-grey); margin: 40px 0; }

.tag-grid { display: flex; flex-wrap: wrap; gap: 10px; }

.tag {
  background: var(--off-white);
  border: 1px solid var(--light-grey);
  color: var(--text-body);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}

.tag:hover {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: transparent;
}

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; }
}

.check-list { display: flex; flex-direction: column; gap: 14px; }

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-body);
}

.check-item .check-icon {
  width: 22px;
  height: 22px;
  background: rgba(16,185,129,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--success);
}

.check-item .check-icon svg { width: 12px; height: 12px; }

.pill-list { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { background: var(--gradient-card); border: 1px solid rgba(0,87,184,0.12); color: var(--primary); padding: 6px 16px; border-radius: 50px; font-size: 0.82rem; font-weight: 600; }

.info-card {
  background: var(--off-white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.info-card h4 { margin-bottom: 12px; color: var(--primary); }
.info-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

.highlight-box {
  background: var(--gradient-card);
  border: 1px solid rgba(0,87,184,0.12);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
}

.highlight-box p { font-size: 0.95rem; color: var(--text-body); margin: 0; font-style: italic; }
/* ===== HEADER FIX - OVERRIDES ===== */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Desktop nav always visible on large screens */
.desktop-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

/* Hamburger hidden on desktop, visible on mobile */
.hamburger {
  display: none !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1.5px solid var(--light-grey) !important;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
  transition: var(--transition);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile-nav drawer - override old style */
.mobile-nav {
  display: flex !important;
  position: fixed !important;
  top: 0 !important;
  left: auto !important;
  right: -100% !important;
  bottom: auto !important;
  width: min(340px, 92vw) !important;
  height: 100dvh !important;
  background: var(--white) !important;
  z-index: 1100 !important;
  flex-direction: column !important;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: -8px 0 40px rgba(0,0,0,0.15) !important;
  overflow: hidden !important;
}

.mobile-nav.open {
  right: 0 !important;
}

@media (max-width: 768px) {
  .desktop-nav { display: none !important; }
  .header-cta { display: none !important; }
  .hamburger { display: flex !important; }
}

/* ===== DROPDOWN MENU FIX ===== */
/* components.js uses .dropdown-menu and .dropdown-grid classes */

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 1px var(--light-grey);
  min-width: 580px;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 2000;
}

/* Show on hover */
.dropdown-trigger:hover .dropdown-menu,
.nav-item.dropdown-trigger:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* Keep open when hovering the menu itself */
.dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* Arrow on top of dropdown */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--white);
  border-top: 1px solid var(--light-grey);
  border-left: 1px solid var(--light-grey);
  rotate: 45deg;
  z-index: -1;
}

/* Grid layout for dropdown items */
.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

/* Each item in dropdown */
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-decoration: none;
  color: var(--text-dark);
}

.dropdown-item:hover {
  background: linear-gradient(135deg, rgba(0,87,184,0.06), rgba(0,180,216,0.06));
  color: var(--primary);
}

.dropdown-item .dropdown-icon {
  font-size: 1.4rem;
  width: 40px;
  height: 40px;
  background: var(--off-white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.dropdown-item:hover .dropdown-icon {
  background: rgba(0,87,184,0.08);
  border-color: rgba(0,87,184,0.15);
}

.dropdown-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dropdown-item strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  display: block;
  transition: var(--transition);
}

.dropdown-item:hover strong {
  color: var(--primary);
}

.dropdown-item span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Rotate arrow icon on hover */
.dropdown-trigger:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-arrow {
  transition: transform 0.25s ease;
}