/* ============================================
   INTELGROUP — Shared Styles
   Professional, Trust-driven Design
   ============================================ */

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

/* --- CSS Custom Properties --- */
:root {
  --primary-green: #73ed00;
  --primary-blue: #102668;
  --green-soft: #5cc800;

  --bg-primary: #f8f9fc;
  --bg-secondary: #ffffff;
  --bg-tertiary: #f0f2f7;
  --bg-card: #ffffff;
  --bg-dark: #102668;
  --bg-dark-soft: #0e2050;
  --border-light: #e2e6ef;
  --border-subtle: #eceef4;

  --text-heading: #0d1b3e;
  --text-body: #3d4663;
  --text-muted: #7c849e;
  --text-on-dark: #e8edf5;
  --text-on-dark-muted: #a0aac4;

  --accent-green: #73ed00;
  --accent-blue: #102668;

  --gradient-main: linear-gradient(135deg, #102668 0%, #1a3a8a 100%);
  --gradient-green: linear-gradient(135deg, #73ed00 0%, #5cc800 100%);
  --gradient-hero: linear-gradient(160deg, #102668 0%, #1a3580 40%, #0e2050 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(16,38,104,0.03) 0%, rgba(115,237,0,0.02) 100%);

  --shadow-sm: 0 1px 3px rgba(13, 27, 62, 0.06);
  --shadow-md: 0 4px 16px rgba(13, 27, 62, 0.08);
  --shadow-lg: 0 8px 30px rgba(13, 27, 62, 0.1);
  --shadow-card: 0 2px 12px rgba(13, 27, 62, 0.05);
  --shadow-card-hover: 0 8px 30px rgba(13, 27, 62, 0.12);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s 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: var(--font-main);
  background: var(--bg-primary);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* --- Particle Canvas (hidden) --- */
#particles-canvas {
  display: none;
}

/* --- Grid Background Overlay (disabled) --- */
.grid-overlay {
  display: none;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 2rem;
  transition: var(--transition-smooth);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
}

.logo-icon::before {
  display: none;
}

.logo-text {
  color: #fff;
}

.logo-text-seg {
  color: #fff;
}

.logo-text-con {
  color: #fff;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
  position: relative;
  padding: 4px 0;
}

.navbar.scrolled .nav-links a {
  color: var(--text-muted);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
  color: var(--text-heading);
}

.navbar.scrolled .logo-text,
.navbar.scrolled .logo-text-seg,
.navbar.scrolled .logo-text-con {
  color: var(--accent-blue);
}

.navbar.scrolled .menu-toggle span {
  background: var(--text-heading);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-green);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 12px 56px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--accent-green);
  color: var(--accent-blue) !important;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(115, 237, 0, 0.2);
}

.navbar.scrolled .nav-cta {
  background: var(--accent-blue);
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(16, 38, 104, 0.2);
}

.nav-cta::after {
  display: none !important;
}

button.nav-cta {
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(115, 237, 0, 0.3);
  background: #66d400;
}

.navbar.scrolled .nav-cta:hover {
  box-shadow: 0 6px 20px rgba(16, 38, 104, 0.3);
  background: #0e2050;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 2rem 80px;
  z-index: 1;
  overflow: hidden;
  background: var(--gradient-hero);
  color: var(--text-on-dark);
}

.hero::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(115, 237, 0, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s ease-out;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
  color: #fff;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero h1 .gradient-text,
.hero h1 .gradient-text-seg,
.hero h1 .gradient-text-con {
  color: var(--accent-green);
  -webkit-text-fill-color: var(--accent-green);
  background: none;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-on-dark-muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
  font-family: var(--font-main);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent-green);
  color: var(--accent-blue);
  box-shadow: 0 4px 16px rgba(115, 237, 0, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(115, 237, 0, 0.35);
  background: #66d400;
}

.btn-primary-seg {
  background: var(--accent-green);
  color: var(--accent-blue);
  box-shadow: 0 4px 16px rgba(115, 237, 0, 0.25);
}

.btn-primary-seg:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(115, 237, 0, 0.35);
  background: #66d400;
}

.btn-primary-con {
  background: var(--accent-green);
  color: var(--accent-blue);
  box-shadow: 0 4px 16px rgba(115, 237, 0, 0.25);
}

.btn-primary-con:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(115, 237, 0, 0.35);
  background: #66d400;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  border-color: var(--accent-green);
  background: rgba(115, 237, 0, 0.08);
  transform: translateY(-3px);
  color: #fff;
}

/* Button variants for light sections */
.section .btn-outline {
  color: var(--text-heading);
  border-color: var(--border-light);
}

.section .btn-outline:hover {
  border-color: var(--accent-blue);
  background: rgba(16, 38, 104, 0.04);
  color: var(--text-heading);
}

.cta-section .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.cta-section .btn-outline:hover {
  border-color: var(--accent-green);
  background: rgba(115, 237, 0, 0.1);
  color: #fff;
}

/* --- Sections General --- */
.section {
  position: relative;
  z-index: 1;
  padding: 100px 2rem;
  background: var(--bg-primary);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent-blue);
  margin-bottom: 1rem;
}

.section-label-con {
  color: var(--accent-blue);
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-heading);
}

.section-header p {
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Cards --- */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.glass-card:hover::before {
  background: var(--accent-green);
}

.glass-card-con:hover::before {
  background: var(--accent-green);
}

/* --- Feature Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  padding: 2.5rem 2rem;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  background: rgba(16, 38, 104, 0.06);
  position: relative;
}

.feature-icon-con {
  background: rgba(16, 38, 104, 0.06);
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.3px;
  color: var(--text-heading);
}

.feature-card p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Stats Bar --- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 3rem 2rem;
  background: var(--accent-blue);
  border-radius: var(--radius-xl);
  margin-top: 4rem;
}

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

.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent-green);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: none;
  -webkit-text-fill-color: var(--accent-green);
}

.stat-number-seg {
  color: var(--accent-green);
  -webkit-text-fill-color: var(--accent-green);
  background: none;
}

.stat-number-con {
  color: var(--accent-green);
  -webkit-text-fill-color: var(--accent-green);
  background: none;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
  font-weight: 500;
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
  text-align: center;
  cursor: default;
}

.service-card .service-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-heading);
}

.service-card p {
  color: var(--text-body);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* --- Highlight Section (alternating content blocks) --- */
.highlight-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.highlight-section.reverse {
  direction: rtl;
}

.highlight-section.reverse > * {
  direction: ltr;
}

.highlight-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-visual .visual-icon {
  font-size: 5rem;
  opacity: 0.4;
}

.highlight-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-subtle);
  pointer-events: none;
}

.highlight-content h3 {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: var(--text-heading);
}

.highlight-content p {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.highlight-content ul {
  list-style: none;
  margin-bottom: 2rem;
}

.highlight-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0.75rem;
  color: var(--text-body);
  font-size: 0.95rem;
}

.highlight-content ul li .check {
  color: var(--accent-green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-con {
  color: var(--accent-green) !important;
}

/* --- About / Team Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  background: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.about-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(115, 237, 0, 0.1) 0%, transparent 60%);
}

.about-content h3 {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  color: var(--text-heading);
}

.about-content p {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-content .credentials {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-body);
}

.credential-item .icon {
  color: var(--accent-green);
  flex-shrink: 0;
}

/* --- Company Cards (Home Page) --- */
.companies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.company-card {
  padding: 3rem;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.company-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.company-card.seg::after {
  background: var(--accent-blue);
}

.company-card.con::after {
  background: var(--accent-green);
}

.company-card .card-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 1rem;
}

.company-card.seg .card-label {
  color: var(--accent-blue);
}

.company-card.con .card-label {
  color: var(--green-soft);
}

.company-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  color: var(--text-heading);
}

.company-card p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.company-card .btn {
  padding: 12px 28px;
  font-size: 0.88rem;
}

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  padding: 100px 2rem;
  position: relative;
  z-index: 1;
  background: var(--bg-primary);
}

.cta-section::before {
  display: none;
}

.cta-box {
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem 3rem;
  border-radius: var(--radius-xl);
  background: var(--accent-blue);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(16, 38, 104, 0.25);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(115, 237, 0, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-box h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: #fff;
}

.cta-box p {
  color: var(--text-on-dark-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* --- Code-style decoration --- */
.code-tag {
  font-size: 0.78rem;
  color: var(--accent-green);
  opacity: 0.6;
  font-weight: 600;
  letter-spacing: 1px;
}

/* --- Footer --- */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-light);
  padding: 3rem 2rem;
  background: var(--bg-secondary);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  color: var(--text-heading);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--accent-blue);
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.8rem;
}

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

.footer-bottom .social-links a {
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer-bottom .social-links a:hover {
  color: var(--accent-blue);
}

/* --- Horizontal Scrolling Ticker --- */
.ticker-wrapper {
  overflow: hidden;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border-light);
  background: var(--accent-blue);
  position: relative;
  z-index: 1;
}

.ticker {
  display: flex;
  gap: 3rem;
  animation: tickerScroll 30s linear infinite;
  width: max-content;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-on-dark-muted);
}

.ticker-item .sep {
  color: var(--accent-green);
  font-size: 0.5rem;
}

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

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.08s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.16s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.24s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.32s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(7) { transition-delay: 0.48s; }
.stagger-children .reveal:nth-child(8) { transition-delay: 0.56s; }
.stagger-children .reveal:nth-child(9) { transition-delay: 0.64s; }
.stagger-children .reveal:nth-child(10) { transition-delay: 0.72s; }
.stagger-children .reveal:nth-child(11) { transition-delay: 0.8s; }
.stagger-children .reveal:nth-child(12) { transition-delay: 0.88s; }

/* --- Keyframe Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* --- Glowing Line Divider --- */
.glow-divider {
  height: 1px;
  background: var(--border-light);
  margin: 0;
  opacity: 1;
}

/* --- Schedule / Info Cards --- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.info-card {
  padding: 2rem;
}

.info-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-heading);
}

.info-card p,
.info-card li {
  color: var(--text-body);
  font-size: 0.92rem;
  line-height: 1.7;
}

.info-card ul {
  list-style: none;
}

.info-card ul li {
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* --- Visual Accent Lines --- */
.accent-line {
  width: 60px;
  height: 3px;
  border-radius: 3px;
  background: var(--accent-green);
  margin-bottom: 1.5rem;
}

.accent-line-seg {
  background: var(--accent-blue);
}

.accent-line-con {
  background: var(--accent-green);
}

/* --- WhatsApp Float Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: var(--transition-smooth);
  cursor: pointer;
  text-decoration: none;
  font-size: 1.6rem;
  color: #fff;
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

/* --- Typing Effect --- */
.typed-cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: var(--accent-green);
  margin-left: 4px;
  animation: blink 1s step-end infinite;
  vertical-align: text-bottom;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .highlight-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .highlight-section.reverse {
    direction: ltr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .companies-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 1.25rem;
  }

  .navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: var(--bg-secondary);
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    border-left: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    color: var(--text-body);
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--text-heading);
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 1.25rem 60px;
  }

  .hero h1 {
    letter-spacing: -1px;
  }

  .section {
    padding: 60px 1.25rem;
  }

  .features-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .cta-box {
    padding: 2.5rem 1.5rem;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .stats-bar {
    grid-template-columns: 1fr;
  }
}

/* ===== Contact Form ===== */
.cta-box-wide {
  max-width: 1020px;
}

.cta-box-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  text-align: left;
}

.cta-box-wide h2,
.cta-box-wide p {
  text-align: left;
  margin-bottom: 1rem;
}

.cta-box-wide p {
  margin-bottom: 1.5rem;
}

.contact-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.form-control {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.9rem;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.form-control:focus {
  border-color: var(--primary-green);
  background: rgba(255,255,255,0.12);
}

.form-control option,
.form-control optgroup {
  background: #102668;
  color: #fff;
}

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

.form-feedback {
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
}

.form-feedback.success {
  background: rgba(115, 237, 0, 0.15);
  border: 1px solid rgba(115, 237, 0, 0.35);
  color: #73ed00;
}

.form-feedback.error {
  background: rgba(255, 100, 100, 0.15);
  border: 1px solid rgba(255, 100, 100, 0.35);
  color: #ff9090;
}

.btn-form {
  width: 100%;
  justify-content: center;
  margin-top: 0.25rem;
}

@media (max-width: 860px) {
  .cta-box-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-box-wide h2,
  .cta-box-wide p {
    text-align: center;
  }

  .cta-text {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.5rem;
  }
}
