/* ===========================
   OPSHORE GLOBAL  MAIN CSS
   =========================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #33D3D4;
  --blue-dark: #24B8B9;
  --blue-light: #EAFDFD;

  --accent: #33D3D4;
  --accent-dark: #24B8B9;

  --dark: #111111;
  --dark-2: #1F2937;

  --gray: #6B7280;
  --gray-light: #F3F4F6;

  --white: #FFFFFF;
  --text: #111827;
  --border: #E5E7EB;

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);

  --radius: 12px;
  --radius-lg: 20px;
}
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-container {
  max-width: 1280px;
  margin: 20px auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 70px;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  font-size: 22px;
  color: var(--blue);
}
.logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
}
.logo-accent { color: var(--blue); }

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-links li { position: relative; }

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: var(--blue-light); color: var(--blue); }

.arrow { font-size: 10px; transition: transform 0.2s; }

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 220px;
  z-index: 100;
}
.dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  border-radius: 8px;
}
.has-dropdown:hover .dropdown { display: block; }
.has-dropdown:hover .arrow { transform: rotate(180deg); }

.nav-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }

.btn-nav-cta {
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}
.btn-nav-cta:hover { background: var(--blue-dark); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(27,79,216,0.35);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.4);
  transition: background 0.2s, border-color 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.7); }

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.2s;
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn-plan {
  display: block;
  text-align: center;
  background: var(--blue-light);
  color: var(--blue);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  padding: 14px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  margin-top: 24px;
  transition: all 0.2s;
}
.btn-plan:hover { background: var(--blue); color: var(--white); }

.btn-plan-white {
  display: block;
  text-align: center;
  background: var(--white);
  color: var(--blue);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  padding: 14px;
  border-radius: 10px;
  margin-top: 24px;
  transition: all 0.2s;
}
.btn-plan-white:hover { background: var(--blue-light); }

.btn-full { width: 100%; justify-content: center; }

/* ===== BADGES ===== */
.badge {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.badge-white {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.7;
}
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.75); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 18, 40, 0.85) 0%,
    rgba(27, 79, 216, 0.65) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-left: 8%;
  padding: 120px 24px 80px;
}
.hero-eyebrow {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 70px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-title .highlight { color: var(--accent); }

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.scroll-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: bounce 1.5s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== STATS BANNER ===== */
.stats-banner {
  background: var(--white);
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.stats-label {
  text-align: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 48px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item {
  text-align: center;
  padding: 32px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s, transform 0.3s;
}
.stat-item:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.stat-icon { font-size: 32px; margin-bottom: 12px; }
.stat-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  display: inline;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--accent);
  display: inline;
}
.stat-desc {
  font-size: 13px;
  color: var(--gray);
  margin-top: 8px;
  line-height: 1.4;
}

/* ===== SERVICES ===== */
.services-section { padding: 100px 0; background: var(--gray-light); }

.services-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.2s;
}
.tab-btn.active, .tab-btn:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.service-icon { font-size: 36px; margin-bottom: 16px; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}
.service-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }
.service-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: gap 0.2s;
}
.service-link:hover { text-decoration: underline; }

.services-cta { text-align: center; margin-top: 48px; }

/* ===== PRICING ===== */
.pricing-section { padding: 100px 0; }

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 56px;
}
.toggle-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
}
.toggle-label.active { color: var(--text); }
.save-badge {
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 6px;
}
.toggle-switch { position: relative; width: 48px; height: 26px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: 0.3s;
}
.slider::before {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  left: 3px; top: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}
input:checked + .slider { background: var(--blue); }
input:checked + .slider::before { transform: translateX(22px); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pricing-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: box-shadow 0.3s;
}
.pricing-card:hover { box-shadow: var(--shadow-md); }
.pricing-card.featured {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(27,79,216,0.3);
}

.plan-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  margin-bottom: 20px;
}
.plan-badge.popular {
  background: var(--accent);
  color: white;
  padding: 4px 12px;
  border-radius: 100px;
}
.featured .plan-badge { color: rgba(255,255,255,0.7); }

.plan-price {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 8px;
}
.currency {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-top: 8px;
  color: var(--blue);
}
.featured .currency { color: rgba(255,255,255,0.8); }
.amount {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  color: var(--dark);
}
.featured .amount { color: var(--white); }
.period {
  font-size: 13px;
  color: var(--gray);
  align-self: flex-end;
  margin-bottom: 6px;
  margin-left: 4px;
}
.featured .period { color: rgba(255,255,255,0.65); }

.plan-tagline {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 24px;
  min-height: 40px;
}
.featured .plan-tagline { color: rgba(255,255,255,0.75); }

.plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.plan-features li { font-size: 14px; color: var(--gray); }
.featured .plan-features li { color: rgba(255,255,255,0.85); }

.pricing-note {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: var(--gray);
}
.pricing-note a { color: var(--blue); font-weight: 600; }

/* ===== TRUST ===== */
.trust-section { padding: 100px 0; background: var(--gray-light); }
.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.trust-text h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}
.trust-text p { font-size: 16px; color: var(--gray); line-height: 1.7; margin-bottom: 28px; }
.trust-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.trust-list li { font-size: 15px; font-weight: 500; color: var(--text); }

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cert-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.cert-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.cert-icon { font-size: 28px; margin-bottom: 8px; display: block; }
.cert-item span { font-size: 12px; font-weight: 700; color: var(--text); }

/* ===== WHY ===== */
.why-section { padding: 100px 0; }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.why-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.why-floating-card {
  position: absolute;
  bottom: -20px;
  right: -24px;
  background: var(--blue);
  border-radius: var(--radius);
  padding: 20px 28px;
  box-shadow: var(--shadow-lg);
}
.big-num {
  display: block;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.small-label { font-size: 13px; color: rgba(255,255,255,0.75); }

.why-text h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.why-text > p { font-size: 16px; color: var(--gray); line-height: 1.7; margin-bottom: 36px; }

.why-features { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.why-feature { display: flex; gap: 16px; align-items: flex-start; }
.why-feature-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-feature h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.why-feature p { font-size: 14px; color: var(--gray); line-height: 1.5; }

/* ===== TALENT ===== */
.talent-section { padding: 100px 0; background: var(--dark); }
.talent-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.talent-text .badge { background: rgba(0,201,167,0.15); color: var(--accent); }
.talent-text h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.talent-text > p { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 36px; }

.talent-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.t-stat { display: flex; flex-direction: column; }
.t-stat strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
}
.t-stat span { font-size: 13px; color: rgba(255,255,255,0.55); }

.talent-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ===== PARTNERS ===== */
.partners-section { padding: 80px 0; border-top: 1px solid var(--border); }
.partners-section .section-header { margin-bottom: 48px; }
.partners-section .section-header h2 { font-size: clamp(20px, 2.5vw, 30px); }

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.partner-logo {
  background: var(--gray-light);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray);
  transition: all 0.2s;
}
.partner-logo:hover { background: var(--blue-light); color: var(--blue); border-color: var(--blue); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 100px 0; background: var(--gray-light); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-card.featured-testimonial {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.stars { font-size: 18px; color: #F59E0B; margin-bottom: 16px; }
.testimonial-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 24px;
  font-style: italic;
}
.featured-testimonial p { color: rgba(255,255,255,0.85); }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-author strong { display: block; font-size: 14px; font-weight: 700; color: var(--dark); }
.featured-testimonial .testimonial-author strong { color: var(--white); }
.testimonial-author span { font-size: 12px; color: var(--gray); }
.featured-testimonial .testimonial-author span { color: rgba(255,255,255,0.6); }

/* ===== OFFICES ===== */
.offices-section { padding: 100px 0; }
.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.office-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow 0.3s, transform 0.3s;
  text-align: center;
}
.office-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.office-flag { font-size: 36px; margin-bottom: 12px; }
.office-card h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.office-card p { font-size: 13px; color: var(--gray); margin-bottom: 12px; }
.office-agents {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}

/* ===== SOLUTIONS ===== */
.solutions-section { padding: 100px 0; background: var(--dark-2); }
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.solution-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: background 0.3s, border-color 0.3s;
}
.solution-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.2);
}
.solution-card.solution-featured {
  background: var(--blue);
  border-color: var(--blue);
}

.solution-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.solution-icon { font-size: 36px; margin-bottom: 16px; }
.solution-card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}
.solution-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ===== FAQ ===== */
.faq-section { padding: 100px 0; background: var(--gray-light); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  gap: 12px;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--blue-light); }
.faq-arrow {
  font-size: 20px;
  font-weight: 400;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-answer {
  display: none;
  padding: 0 24px 20px;
}
.faq-answer p { font-size: 14px; color: var(--gray); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }

/* ===== CONTACT ===== */
.contact-section { padding: 100px 0; background: var(--blue); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-text .badge { background: rgba(255,255,255,0.2); color: var(--white); }
.contact-text h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.contact-text > p { font-size: 16px; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 28px; }
.contact-features { display: flex; flex-direction: column; gap: 10px; }
.contact-features span { font-size: 15px; color: rgba(255,255,255,0.9); font-weight: 500; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27,79,216,0.1);
}
.contact-form textarea { resize: vertical; }
.form-note { font-size: 12px; color: var(--gray); text-align: center; }

/* ===== FOOTER ===== */
.footer { background: #322d2d ; padding: 80px 0 0; }
.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin: 20px 0 24px; }
.logo-white .logo-text { color: var(--white); }

.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s;
}
.social-link:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }
.contact-links{
  width: 36px; height: 36px;
background: var(--blue); border-color: var(--blue); color: var(--white);  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s;
}
.footer-links {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.footer-col a, .footer-col p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .trust-inner, .why-inner, .talent-inner, .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .offices-grid { grid-template-columns: repeat(2, 1fr); }
  .solutions-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { margin-left: 0; padding: 120px 24px 60px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .why-floating-card { right: 0; bottom: -16px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .talent-stats { flex-direction: column; gap: 16px; }
}
.partners-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.partner-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

  .partner-logo img:hover {
    transform: scale(1.05);
  }

  /* ===== MOBILE NAVBAR ===== */
@media (max-width: 992px) {

  .nav-container {
    margin: 10px auto;
    height: 60px;
    gap: 20px;
  }

  /* hide desktop menu */
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 10px;
    transition: right 0.3s ease;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }

  /* active state (JS se toggle hoga) */
  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    width: 100%;
    padding: 12px;
  }

  /* dropdown fix for mobile */
  .dropdown {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    padding-left: 10px;
  }

  .has-dropdown.open .dropdown {
    display: block;
  }

  .nav-actions .btn-nav-cta {
    display: none; /* optional: CTA hide on mobile */
  }

  .hamburger {
    display: flex;
  }
}