/* ===== OCEAN GROUP - STYLE.CSS ===== */
/* Colors: Primary #00a8ff, Gold #ffd700/#f0a500, Green #00e676 */
/* Dark BG: #060608, Light BG: #f5f7fa */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #060608;
  color: #e0e0e0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background 0.4s, color 0.4s;
}

a {
  text-decoration: none;
  color: inherit;
}

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

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

/* ===== LIGHT MODE ===== */
body.light {
  background: #f5f7fa;
  color: #1a1a2e;
}

body.light .nav {
  background: rgba(255,255,255,0.85);
  border-bottom-color: rgba(0,0,0,0.08);
}

body.light .nav .nav-link {
  color: #1a1a2e;
}

body.light .hero {
  background: linear-gradient(135deg, #e8f4fd 0%, #f5f7fa 50%, #e0f0ff 100%);
}

body.light .hero-title,
body.light .hero-sub {
  color: #1a1a2e;
}

body.light .hero-desc {
  color: #555;
}

body.light .stat-number {
  color: #00a8ff;
}

body.light .stat-label {
  color: #666;
}

body.light .section-title {
  color: #1a1a2e;
}

body.light .pillar-card {
  background: #fff;
  border-color: rgba(0,0,0,0.08);
}

body.light .pillar-card:hover {
  border-color: #00a8ff;
}

body.light .pillar-title {
  color: #1a1a2e;
}

body.light .pillar-desc {
  color: #555;
}

body.light .pillar-feature {
  color: #444;
}

body.light .service-card {
  background: #fff;
  border-color: rgba(0,0,0,0.08);
}

body.light .service-card:hover {
  border-color: #00a8ff;
}

body.light .service-title {
  color: #1a1a2e;
}

body.light .service-desc {
  color: #555;
}

body.light .cinematic {
  background: #1a1a2e;
}

body.light .presence-section {
  background: #fff;
}

body.light .country-chip {
  background: #f0f4f8;
  border-color: rgba(0,0,0,0.08);
  color: #1a1a2e;
}

body.light .stats-block {
  background: #fff;
}

body.light .contact-section {
  background: #f0f4f8;
}

body.light .contact-title {
  color: #1a1a2e;
}

body.light .contact-info {
  color: #444;
}

body.light .footer {
  background: #1a1a2e;
  color: #aaa;
}

body.light .logo-ticker {
  background: #fff;
}

body.light .ticker-item {
  color: #888;
}

body.light .badge {
  background: rgba(0,168,255,0.1);
  color: #0070d4;
}

body.light .chip {
  background: #f0f4f8;
  color: #1a1a2e;
  border-color: rgba(0,0,0,0.06);
}

body.light .hero-cta-outline {
  border-color: #0070d4;
  color: #0070d4;
}

body.light .hero-cta-outline:hover {
  background: #0070d4;
  color: #fff;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(6,6,8,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  background: rgba(6,6,8,0.95);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

body.light .nav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
}

body.light .nav-logo {
  color: #1a1a2e;
}

.nav-logo span {
  color: #00a8ff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #bbb;
  transition: color 0.2s;
  cursor: pointer;
}

.nav-link:hover {
  color: #00a8ff;
}

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

.lang-toggle {
  font-size: 0.8rem;
  font-weight: 600;
  color: #999;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

body.light .lang-toggle {
  border-color: rgba(0,0,0,0.1);
  color: #666;
}

.lang-toggle:hover {
  border-color: #00a8ff;
  color: #00a8ff;
}

.lang-active {
  color: #00a8ff;
}

.theme-toggle {
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  color: #999;
  font-size: 1.1rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

body.light .theme-toggle {
  border-color: rgba(0,0,0,0.1);
  color: #666;
}

.theme-toggle:hover {
  border-color: #00a8ff;
  color: #00a8ff;
}

.nav-cta {
  background: linear-gradient(135deg, #00a8ff, #0070d4);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,168,255,0.3);
}

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

body.light .mobile-menu-btn {
  color: #1a1a2e;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,168,255,0.08) 0%, #060608 60%);
  position: relative;
}

.hero::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='%2300a8ff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,168,255,0.1);
  border: 1px solid rgba(0,168,255,0.2);
  color: #00a8ff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #00e676;
  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-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #fff 30%, #00a8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.light .hero-title {
  background: linear-gradient(135deg, #1a1a2e 30%, #0070d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #00a8ff;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.1rem;
  font-weight: 400;
  color: #999;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-cta-filled {
  background: linear-gradient(135deg, #00a8ff, #0070d4);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}

.hero-cta-filled:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,168,255,0.3);
}

.hero-cta-outline {
  background: transparent;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}

.hero-cta-outline:hover {
  border-color: #00a8ff;
  color: #00a8ff;
  background: rgba(0,168,255,0.05);
}

.hero-chips {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #ccc;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 700px;
  margin: 0 auto;
}

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

.stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

body.light .stat-number {
  color: #00a8ff;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== LOGO TICKER ===== */
.logo-ticker {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  animation: ticker 40s linear infinite;
  width: max-content;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  flex-shrink: 0;
  padding: 0 32px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #555;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo-ticker::before,
.logo-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.logo-ticker::before {
  left: 0;
  background: linear-gradient(90deg, #060608, transparent);
}

.logo-ticker::after {
  right: 0;
  background: linear-gradient(-90deg, #060608, transparent);
}

body.light .logo-ticker::before {
  background: linear-gradient(90deg, #f5f7fa, transparent);
}

body.light .logo-ticker::after {
  background: linear-gradient(-90deg, #f5f7fa, transparent);
}

/* ===== SECTIONS COMMON ===== */
.section {
  padding: 100px 24px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #00a8ff;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-desc {
  font-size: 1rem;
  color: #888;
  max-width: 600px;
  line-height: 1.7;
}

/* ===== THREE PILLARS ===== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pillar-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 36px 28px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.pillar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,168,255,0.3);
  box-shadow: 0 12px 40px rgba(0,168,255,0.08);
}

.pillar-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.pillar-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.pillar-desc {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 20px;
  line-height: 1.6;
}

.pillar-features {
  list-style: none;
}

.pillar-feature {
  font-size: 0.85rem;
  color: #bbb;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pillar-feature::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #00e676;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px 24px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,168,255,0.3);
  box-shadow: 0 12px 40px rgba(0,168,255,0.08);
}

.service-icon {
  font-size: 1.75rem;
  margin-bottom: 14px;
}

.service-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.service-desc {
  font-size: 0.85rem;
  color: #999;
  line-height: 1.6;
}

/* ===== CINEMATIC ===== */
.cinematic {
  padding: 120px 24px;
  text-align: center;
  background: linear-gradient(135deg, #060608 0%, #0a1628 50%, #060608 100%);
  position: relative;
}

.cinematic-text {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.4;
  background: linear-gradient(135deg, #fff 20%, #00a8ff 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== GLOBAL PRESENCE ===== */
.presence-section {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.countries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
  justify-content: center;
}

.country-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #ddd;
  transition: transform 0.2s, border-color 0.2s;
}

.country-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(0,168,255,0.3);
}

.country-flag {
  font-size: 1.3rem;
}

.country-status {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 2px 8px;
  border-radius: 6px;
}

.status-hq {
  background: rgba(255,215,0,0.15);
  color: #ffd700;
}

.status-ops {
  background: rgba(0,168,255,0.15);
  color: #00a8ff;
}

.status-protected {
  background: rgba(0,230,118,0.15);
  color: #00e676;
}

.status-active {
  background: rgba(240,165,0,0.15);
  color: #f0a500;
}

.status-new {
  background: rgba(168,0,255,0.15);
  color: #c060ff;
}

/* ===== STATS BLOCK ===== */
.stats-block {
  padding: 80px 24px;
  background: rgba(255,255,255,0.02);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.stats-grid .stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, #00a8ff, #00e5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-grid .stat-label {
  font-size: 0.8rem;
  color: #888;
  margin-top: 4px;
}

/* ===== CONTACT ===== */
.contact-section {
  padding: 100px 24px;
  text-align: center;
  background: rgba(0,168,255,0.03);
}

.contact-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 32px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 600px;
  margin: 0 auto 32px;
  text-align: left;
}

.contact-item-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #00a8ff;
  margin-bottom: 4px;
}

.contact-info {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.5;
}

.contact-info a {
  color: #00a8ff;
  transition: opacity 0.2s;
}

.contact-info a:hover {
  opacity: 0.8;
}

.contact-response {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.9rem;
  color: #00e676;
  font-weight: 600;
}

.contact-response .badge-dot {
  background: #00e676;
}

/* ===== FOOTER ===== */
.footer {
  padding: 32px 24px;
  text-align: center;
  background: #060608;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-text {
  font-size: 0.8rem;
  color: #555;
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 0.8rem;
  color: #666;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #00a8ff;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .nav-cta-desktop {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(6,6,8,0.98);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  body.light .nav-links.open {
    background: rgba(255,255,255,0.98);
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .nav {
    padding: 0 16px;
  }
  .hero {
    padding: 100px 16px 60px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-sub {
    font-size: 1.5rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero-cta-filled,
  .hero-cta-outline {
    width: 100%;
    text-align: center;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .stat-number {
    font-size: 1.35rem;
  }
  .section {
    padding: 60px 16px;
  }
  .country-chip {
    width: 100%;
    justify-content: center;
  }
  .lang-toggle {
    display: none;
  }
}
