/* NexusSync Design System - styles.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --bg-darker: #060709;
  --bg-main: #0b0d11;
  --bg-card: rgba(15, 19, 26, 0.7);
  --bg-card-hover: rgba(22, 28, 38, 0.85);
  
  --primary: #00e676;
  --primary-glow: rgba(0, 230, 118, 0.3);
  --secondary: #00e5ff;
  --secondary-glow: rgba(0, 229, 255, 0.25);
  
  --gradient-accent: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --gradient-card: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
  
  --text-main: #ffffff;
  --text-muted: #8d98a7;
  --text-dark: #4b5563;
  
  --border-thin: rgba(255, 255, 255, 0.07);
  --border-thin-hover: rgba(0, 230, 118, 0.3);
  
  --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --shadow-glow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* Base Reset & Layout */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-darker);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  background-color: var(--bg-main);
  min-height: 100vh;
  position: relative;
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary-glow);
}

/* Layout Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Background Ambient Glow Blobs */
.glow-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-glow) 0%, rgba(0, 230, 118, 0) 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.glow-blob-secondary {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--secondary-glow) 0%, rgba(0, 229, 255, 0) 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* Reusable Components */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  gap: 0.5rem;
  border: none;
}

.btn-primary {
  background: var(--gradient-accent);
  color: #000000;
  box-shadow: 0 4px 15px rgba(0, 230, 118, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: 0.75s;
  pointer-events: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 230, 118, 0.6);
}

.btn-primary:hover::after {
  left: 125%;
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(0, 230, 118, 0.2);
}

/* Badges / Pill Tags */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.2);
  color: var(--primary);
  margin-bottom: 1.5rem;
}

/* Navbar */
header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(6, 7, 9, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-thin);
  z-index: 1000;
  transition: var(--transition-fast);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  gap: 0.6rem;
  color: var(--text-main);
}

.logo-square {
  width: 32px;
  height: 32px;
  background: var(--gradient-accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #000000;
  font-size: 1.1rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-item:hover > .nav-link {
  color: var(--text-main);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

/* Dropdown Menu */
.dropdown {
  position: absolute;
  top: 100%;
  left: -20px;
  width: 200px;
  background: #0f131a;
  border: 1px solid var(--border-thin);
  border-radius: 8px;
  padding: 0.75rem 0;
  box-shadow: var(--shadow-glow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item a {
  display: block;
  padding: 0.6rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.dropdown-item a:hover {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.02);
}

.nav-btn {
  display: flex;
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.8rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 8rem 0 6rem 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-content h1 span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 550px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  border-top: 1px solid var(--border-thin);
  padding-top: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  bottom: 20px;
  left: 20px;
  border: 1px solid rgba(0, 230, 118, 0.2);
  border-radius: 20px;
  z-index: -1;
  transition: var(--transition-smooth);
}

.hero-image-wrapper:hover::before {
  transform: translate(-10px, 10px);
  border-color: var(--primary);
}

.hero-image {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border-thin);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: var(--transition-smooth);
}

.hero-image-wrapper:hover .hero-image {
  transform: scale(1.02);
}

/* Why Choose Us Section */
.why-us {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 4rem auto;
  position: relative;
  z-index: 1;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-thin);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-card);
  z-index: -1;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-thin-hover);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-glow);
}

.icon-box {
  width: 48px;
  height: 48px;
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
  transition: var(--transition-fast);
}

.why-card:hover .icon-box {
  background: var(--gradient-accent);
  color: #000;
  box-shadow: 0 0 15px rgba(0, 230, 118, 0.4);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Trusted Section */
.trusted {
  padding: 5rem 0;
  border-top: 1px solid var(--border-thin);
  border-bottom: 1px solid var(--border-thin);
  background: rgba(255,255,255,0.01);
}

.trusted-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.trusted-text h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.trusted-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.logo-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-thin);
  border-radius: 8px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0.7;
  transition: var(--transition-fast);
}

.logo-item:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255,255,255,0.15);
}

/* Team Section */
.team {
  padding: 6rem 0;
  position: relative;
}

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

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-thin);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 230, 118, 0.25);
  box-shadow: var(--shadow-glow);
}

.profile-wrapper {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0 auto 1.5rem auto;
}

.profile-glow {
  position: absolute;
  top: -5px;
  left: -5px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--gradient-accent);
  z-index: 0;
  opacity: 0.4;
  filter: blur(4px);
  transition: var(--transition-smooth);
}

.team-card:hover .profile-glow {
  filter: blur(8px);
  opacity: 0.85;
}

.profile-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--bg-main);
  position: relative;
  z-index: 1;
}

.team-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.team-role {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

/* Partner Network Section */
.partner-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 230, 118, 0.015) 100%);
  position: relative;
}

.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.partner-content .badge {
  margin-bottom: 1rem;
}

.partner-content h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.partner-content h2 span {
  color: var(--primary);
}

.partner-desc {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.feature-item {
  display: flex;
  background: var(--bg-card);
  border: 1px solid var(--border-thin);
  border-radius: 10px;
  padding: 1.2rem;
  gap: 1rem;
  align-items: flex-start;
  transition: var(--transition-smooth);
}

.feature-item:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateX(5px);
}

.feature-icon {
  color: var(--primary);
  background: rgba(0, 230, 118, 0.05);
  width: 36px;
  height: 36px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.feature-text h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.feature-text p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.partner-image-wrapper {
  position: relative;
}

.partner-image-wrapper::before {
  content: '';
  position: absolute;
  top: 20px;
  right: -20px;
  bottom: -20px;
  left: -20px;
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 20px;
  z-index: -1;
  transition: var(--transition-smooth);
}

.partner-image-wrapper:hover::before {
  transform: translate(10px, -10px);
  border-color: var(--secondary);
}

.partner-img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border-thin);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: var(--transition-smooth);
}

.partner-image-wrapper:hover .partner-img {
  transform: scale(1.02);
}

/* Decorative Divider Icons Section */
.decorator-row {
  display: flex;
  justify-content: space-around;
  padding: 3rem 0;
  border-top: 1px solid var(--border-thin);
  border-bottom: 1px solid var(--border-thin);
  background: rgba(0, 0, 0, 0.15);
  color: var(--text-dark);
  font-size: 1.5rem;
  font-weight: 800;
}

.dec-group {
  letter-spacing: 0.5rem;
}

/* Contact / Get In Touch Section */
.contact-section {
  padding: 6rem 0;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: flex-start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.info-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.2);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-details h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.info-details p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Contact Form Card */
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-thin);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: var(--shadow-glow);
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-input, .form-textarea {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-thin);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(0, 230, 118, 0.25);
  background: rgba(0, 0, 0, 0.3);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-card .btn {
  width: 100%;
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #0f131a;
  border: 1px solid var(--primary);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  color: var(--text-main);
  box-shadow: var(--shadow-glow);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 2000;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.toast-icon {
  color: var(--primary);
}

/* Call to Action (CTA) Banner */
.cta-banner {
  padding: 6rem 0;
  background: linear-gradient(135deg, #072a1a 0%, #06110f 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 230, 118, 0.15);
  border-bottom: 1px solid rgba(0, 230, 118, 0.15);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.cta-image-wrapper {
  position: relative;
}

.cta-img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 45px rgba(0,0,0,0.6);
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

/* Footer styling */
footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-thin);
  padding: 5rem 0 2rem 0;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 1.2rem 0 1.5rem 0;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 0.8rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-thin);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-icon:hover {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
  box-shadow: 0 0 12px var(--primary-glow);
  transform: translateY(-2px);
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-main);
  letter-spacing: 0.02em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-newsletter p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.2rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-thin);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.9rem;
  width: 100%;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary);
}

.newsletter-btn {
  background: var(--gradient-accent);
  color: #000;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.newsletter-btn:hover {
  box-shadow: 0 0 12px var(--primary-glow);
  transform: translateY(-1px);
}

.footer-bottom {
  border-top: 1px solid var(--border-thin);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* Secondary Pages Styles (Services & About & Detail & Contact) */

/* Inner Page Banner */
.inner-hero {
  padding: 6rem 0 4rem 0;
  background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-main) 100%);
  border-bottom: 1px solid var(--border-thin);
  position: relative;
  overflow: hidden;
}

.inner-hero-content {
  position: relative;
  z-index: 1;
}

.inner-hero h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.inner-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
}

/* Pricing Grid */
.pricing-section {
  padding: 6rem 0;
}

.pricing-toggle-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.pricing-toggle-label {
  font-weight: 600;
  font-size: 0.95rem;
}

.pricing-toggle-label.active {
  color: var(--primary);
}

.pricing-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.pricing-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.pricing-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255,255,255,0.1);
  transition: .4s;
  border-radius: 34px;
}

.pricing-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: var(--text-main);
  transition: .4s;
  border-radius: 50%;
}

input:checked + .pricing-slider {
  background-color: var(--primary);
}

input:checked + .pricing-slider:before {
  transform: translateX(24px);
  background-color: #000;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-thin);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.pricing-card.popular {
  border-color: var(--primary);
  background: rgba(0, 230, 118, 0.02);
  box-shadow: var(--shadow-glow);
}

.pricing-card.popular .popular-badge {
  position: absolute;
  top: -15px;
  right: 25px;
  background: var(--gradient-accent);
  color: #000;
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.15);
}

.pricing-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.pricing-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-grow: 1;
}

.pricing-features li {
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-features i {
  color: var(--primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.pricing-features li.disabled {
  color: var(--text-dark);
  text-decoration: line-through;
}

.pricing-features li.disabled i {
  color: var(--text-dark);
}

.pricing-card .btn {
  width: 100%;
}

/* Service details page styling */
.detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  padding: 6rem 0;
}

.detail-body h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.detail-body p {
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  font-size: 1.02rem;
  line-height: 1.7;
}

.detail-img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border-thin);
  margin-bottom: 2.5rem;
}

.detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border-thin);
  border-radius: 12px;
  padding: 2rem;
}

.sidebar-widget h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid var(--border-thin);
  padding-bottom: 0.75rem;
}

.widget-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.widget-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
  border-radius: 6px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-thin);
  font-size: 0.95rem;
}

.widget-menu li.active a, .widget-menu a:hover {
  background: var(--gradient-accent);
  color: #000;
  border-color: transparent;
  font-weight: 600;
}

/* Timeline/History (About Page) */
.timeline-section {
  padding: 6rem 0;
  position: relative;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background: var(--border-thin);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  right: -8px;
  background-color: var(--bg-main);
  border: 4px solid var(--primary);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.left {
  left: 0;
}

.right {
  left: 50%;
}

.right::after {
  left: -8px;
}

.timeline-content {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-thin);
  position: relative;
  border-radius: 8px;
}

.timeline-content h3 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.timeline-content h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* Scroll Animation classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Responsive CSS */
@media (max-width: 1024px) {
  .hero-grid, .why-grid, .team-grid, .partner-grid, .contact-grid, .cta-grid, .pricing-grid, .detail-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-desc {
    margin: 0 auto 2.5rem auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .trusted-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .timeline::after {
    left: 31px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  
  .timeline-item::after {
    left: 23px;
  }
  
  .right {
    left: 0%;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    gap: 0;
    flex-direction: column;
    background-color: var(--bg-darker);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 15px rgba(0,0,0,0.5);
    border-bottom: 1px solid var(--border-thin);
    z-index: 999;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-item {
    margin: 1.5rem 0;
  }
  
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    width: 100%;
    margin-top: 0.5rem;
    padding: 0;
  }
  
  .dropdown-item a {
    padding: 0.4rem 0;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .nav-btn {
    display: none;
  }
  
  .hero-content h1 {
    font-size: 2.6rem;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .logo-wall {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
