/*
 * Author: sai
 * Version: 2.0.0
 * Last Changed: 2025-07-15
 */
/* Contents are Kiro Generated GenAI code */

/* ============================================================
   CloudRex Premium Stylesheet
   ============================================================ */

/* --- Custom Properties --- */
:root {
  --brand-green: #7AC143;
  --brand-green-dark: #5a9a2f;
  --brand-green-glow: rgba(122, 193, 67, 0.3);
  --bg-primary: #0A0A0F;
  --bg-secondary: #12121A;
  --bg-card: #1A1A26;
  --bg-light: #F8F9FC;
  --text-primary: #F5F5F7;
  --text-secondary: #8B8B9E;
  --text-dark: #1A1A2E;
  --text-dark-secondary: #555566;
  --nav-bg: rgba(10, 10, 15, 0.85);
  --nav-bg-scrolled: rgba(10, 10, 15, 0.95);
  --glass-bg: rgba(18, 18, 26, 0.7);
  --glass-border: rgba(255, 255, 255, 0.08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 40px var(--brand-green-glow);
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --container-max: 1200px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.container {
  max-width: var(--container-max);
}

img {
  max-width: 100%;
  height: auto;
}

/* --- Skip Nav (Accessibility) --- */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 1rem;
  background: var(--brand-green);
  color: white;
  z-index: 9999;
  font-weight: 600;
  text-decoration: none;
}

.skip-nav:focus {
  top: 0;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand-green);
  margin-bottom: 0.75rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--brand-green);
  border-radius: var(--radius-xl);
}

.section-tag-light {
  color: var(--brand-green);
  border-color: rgba(122, 193, 67, 0.4);
}

.section-title {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.section-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-dark-secondary);
}

.section-intro {
  max-width: 680px;
  margin: 0 auto 3rem;
}

.text-light-muted {
  color: var(--text-secondary) !important;
}

.text-brand {
  color: var(--brand-green);
}

/* --- Navigation --- */
.premium-nav {
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  padding: 1rem 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.premium-nav.nav-scrolled {
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(122, 193, 67, 0.1);
  padding: 0.5rem 0;
}

.nav-logo {
  border-radius: 12px;
  transition: all var(--transition-base);
  filter: brightness(1.1);
  background: transparent;
  object-fit: contain;
  mix-blend-mode: lighten;
}

.nav-logo:hover {
  transform: scale(1.08);
  filter: brightness(1.3) drop-shadow(0 0 10px var(--brand-green-glow));
}

.premium-nav .navbar-nav .nav-item a {
  color: rgba(245, 245, 247, 0.85);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  position: relative;
  transition: all var(--transition-base);
  letter-spacing: 0.02em;
}

.premium-nav .navbar-nav .nav-item a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 1.25rem;
  right: 1.25rem;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-green), #a8e063);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.premium-nav .navbar-nav .nav-item a:hover {
  color: var(--text-primary);
  text-shadow: 0 0 20px rgba(122, 193, 67, 0.3);
}

.premium-nav .navbar-nav .nav-item a:hover::after {
  transform: scaleX(1);
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: var(--bg-primary);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 20% 50%, rgba(122, 193, 67, 0.03) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 20%, rgba(60, 100, 180, 0.04) 0%, transparent 40%);
  animation: heroAmbient 15s ease-in-out infinite alternate;
  z-index: 1;
  pointer-events: none;
}

@keyframes heroAmbient {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-2%, -1%) rotate(1deg); }
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(122, 193, 67, 0.1);
  border: 1px solid rgba(122, 193, 67, 0.3);
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--brand-green);
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(122, 193, 67, 0); }
  50% { box-shadow: 0 0 20px rgba(122, 193, 67, 0.15); }
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  margin-bottom: 0;
  line-height: 1.05;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.hero-title-accent {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #6DBE3A, var(--brand-green), #a8e063, var(--brand-green));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 4s ease-in-out infinite;
}

@keyframes shimmerText {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.8;
}

.hero-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 100, 220, 0.15) 0%, transparent 70%);
  animation: globeGlow 3s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes globeGlow {
  0% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-image {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  object-fit: cover;
  animation: globeSpin 60s linear infinite;
  box-shadow: 
    inset -25px -15px 50px rgba(0, 0, 0, 0.5),
    0 0 50px rgba(30, 100, 220, 0.25),
    0 0 100px rgba(30, 100, 220, 0.1),
    0 0 150px rgba(30, 100, 220, 0.05);
}

@keyframes globeSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Subscribe Form */
.subscribe-wrapper {
  display: flex;
  align-items: center;
  background: rgba(18, 18, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 5px;
  max-width: 420px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.subscribe-wrapper:focus-within {
  border-color: var(--brand-green);
  box-shadow: 0 0 30px rgba(122, 193, 67, 0.15), 0 0 60px rgba(122, 193, 67, 0.05);
  background: rgba(18, 18, 26, 0.8);
}

.subscribe-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.75rem 1.25rem;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
}

.subscribe-input::placeholder {
  color: rgba(139, 139, 158, 0.7);
}

.subscribe-btn {
  background: linear-gradient(135deg, var(--brand-green), #5fb832);
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.subscribe-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.subscribe-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(122, 193, 67, 0.4);
}

.subscribe-btn:hover::before {
  left: 100%;
}

.subscribe-note {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: rgba(139, 139, 158, 0.6);
  letter-spacing: 0.02em;
}

/* --- Section Padding --- */
.section-padding {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: #ffffff;
  color: var(--text-dark);
}

.section-dark {
  background: var(--bg-primary);
  color: var(--text-primary);
}

.section-dark .section-title {
  color: var(--text-primary);
}

.section-light {
  background: var(--bg-light);
  color: var(--text-dark);
}

/* --- About Section --- */
.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.about-img {
  border-radius: var(--radius-lg);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-wrapper:hover .about-img {
  transform: scale(1.05);
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--brand-green), transparent, rgba(122, 193, 67, 0.3));
  border-radius: calc(var(--radius-lg) + 2px);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.about-image-wrapper:hover::before {
  opacity: 1;
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--brand-green);
  border-radius: var(--radius-md);
  z-index: -1;
  opacity: 0.3;
  animation: pulseCorner 3s ease-in-out infinite;
}

@keyframes pulseCorner {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.05); }
}

/* --- Stats / Industries Section --- */
.stats-section {
  background: linear-gradient(135deg, var(--bg-primary) 0%, #1A1A2E 100%);
  padding: clamp(4rem, 6vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-green), transparent);
}

.stats-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-green), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.industry-item {
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  background: rgba(18, 18, 26, 0.5);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-item:hover {
  border-color: rgba(122, 193, 67, 0.3);
  background: rgba(122, 193, 67, 0.05);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(122, 193, 67, 0.08);
}

.industry-icon {
  color: var(--brand-green);
  margin-bottom: 1.25rem;
  transition: transform var(--transition-base);
}

.industry-item:hover .industry-icon {
  transform: scale(1.15);
}

.industry-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.industry-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 991px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
/* --- Mission Section --- */
.mission-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.mission-img {
  border-radius: var(--radius-lg);
  width: 100%;
  transition: transform var(--transition-slow);
}

.mission-image-wrapper:hover .mission-img {
  transform: scale(1.03);
}

/* --- Services Section --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  perspective: 1000px;
}

.service-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.service-card-bg {
  position: relative;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7)),
              var(--service-img) no-repeat center;
  background-size: cover;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: var(--radius-md);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(122, 193, 67, 0) 0%, rgba(122, 193, 67, 0) 100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateZ(50px) scale(1.06);
  z-index: 10;
}

.service-card:hover .service-card-bg {
  background-size: 120%;
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(135deg, rgba(122, 193, 67, 0.15) 0%, rgba(10, 10, 15, 0.3) 100%);
  border-color: rgba(122, 193, 67, 0.3);
  box-shadow: inset 0 0 30px rgba(122, 193, 67, 0.1);
}

.service-card:hover {
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5), 0 0 40px rgba(122, 193, 67, 0.15);
}

.service-card-title {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  padding: 1rem;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
  transition: transform var(--transition-base);
}

.service-card:hover .service-card-title {
  transform: scale(1.05);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 0 30px rgba(122, 193, 67, 0.2);
}

/* --- Solutions Section --- */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.solution-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-green), #a8e063);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(122, 193, 67, 0.1);
}

.solution-card:hover::before {
  transform: scaleX(1);
}

.solution-card-img-wrapper {
  overflow: hidden;
  height: 200px;
  position: relative;
}

.solution-card-img-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, white, transparent);
  pointer-events: none;
}

.solution-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-card:hover .solution-card-img {
  transform: scale(1.1);
}

.solution-card-body {
  padding: 1.75rem;
}

.solution-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.solution-card-text {
  font-size: 0.9rem;
  color: var(--text-dark-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.solution-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand-green);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-card-link:hover {
  gap: 0.9rem;
  color: var(--brand-green-dark);
}

.solution-card-link .arrow {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.solution-card:hover .solution-card-link .arrow {
  transform: translateX(5px);
}

/* --- Contact Section --- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--glass-border);
}

.contact-info-card {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-green), #a8e063);
  border-radius: 0 0 3px 3px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.contact-info-card:hover {
  border-color: rgba(122, 193, 67, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(122, 193, 67, 0.08);
  transform: translateY(-6px);
}

.contact-info-card:hover::before {
  opacity: 1;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(122, 193, 67, 0.15), rgba(122, 193, 67, 0.05));
  color: var(--brand-green);
  margin-bottom: 1.25rem;
  transition: all var(--transition-base);
}

.contact-info-card:hover .contact-icon {
  background: linear-gradient(135deg, var(--brand-green), #5fb832);
  color: white;
  box-shadow: 0 8px 25px rgba(122, 193, 67, 0.3);
  transform: scale(1.1);
}

.contact-info-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.contact-info-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.contact-info-text a {
  color: var(--brand-green);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.contact-info-text a:hover {
  color: #a8e063;
  text-shadow: 0 0 10px rgba(122, 193, 67, 0.3);
}

/* Clickable contact cards */
.contact-card-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.contact-card-link:hover .contact-info-title,
.contact-card-link:hover .contact-info-text {
  color: var(--text-primary);
}

/* --- Contact Form --- */
.contact-form-wrapper {
  max-width: 700px;
  margin: 3rem auto 0;
  text-align: center;
}

.contact-form-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.contact-form-subtitle {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}

.contact-form {
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  position: relative;
}

.form-group-full {
  margin-bottom: 1.5rem;
}

.form-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--glass-border);
  padding: 1rem 0 0.5rem;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition-base);
  outline: none;
}

.form-input:focus {
  border-bottom-color: var(--brand-green);
  box-shadow: 0 2px 8px rgba(122, 193, 67, 0.15);
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
  transform: translateY(-1.2rem) scale(0.8);
  color: var(--brand-green);
}

.form-label {
  position: absolute;
  top: 1rem;
  left: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  pointer-events: none;
  transition: all var(--transition-base);
  transform-origin: left;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  display: block;
  margin: 2.5rem auto 0;
  padding: 1rem 3.5rem;
  background: linear-gradient(135deg, var(--brand-green), #5fb832);
  color: white;
  border: none;
  border-radius: var(--radius-xl);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s;
}

.btn-submit::after {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, var(--brand-green), #a8e063, var(--brand-green));
  border-radius: calc(var(--radius-xl) + 3px);
  z-index: -1;
  opacity: 0;
  filter: blur(12px);
  transition: opacity var(--transition-base);
}

.btn-submit:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(122, 193, 67, 0.35);
}

.btn-submit:hover::before {
  left: 100%;
}

.btn-submit:hover::after {
  opacity: 1;
}

.btn-submit:active {
  transform: translateY(-1px) scale(0.99);
}

/* --- Footer --- */
.premium-footer {
  background: var(--bg-secondary);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  border-radius: 8px;
  mix-blend-mode: lighten;
}

.footer-brand-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.social-link .fa {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--text-secondary);
  font-size: 14px;
  transition: all var(--transition-base);
  padding: 0;
  margin: 0;
  text-decoration: none;
}

.social-link:hover .fa {
  background: var(--brand-green);
  color: white;
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition-fast);
  position: relative;
}

.footer-links a:hover {
  color: var(--brand-green);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.footer-contact strong {
  color: var(--text-primary);
}

.footer-contact a {
  color: var(--brand-green);
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* --- Particles.js Override --- */
#particles-js {
  width: 100%;
  height: 100vh;
  background-color: var(--bg-primary);
  background-image: none;
  position: relative;
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .hero-section {
    min-height: 80vh;
  }

  .hero-content .row {
    min-height: 80vh;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .solutions-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 767px) {
  .hero-title,
  .hero-title-accent {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .subscribe-wrapper {
    flex-direction: column;
    border-radius: var(--radius-md);
    gap: 0.5rem;
    padding: 0.75rem;
  }

  .subscribe-btn {
    width: 100%;
  }

  .section-padding {
    padding: 3rem 0;
  }
}

/* --- Focus Visible (Accessibility) --- */
*:focus-visible {
  outline: 2px solid var(--brand-green);
  outline-offset: 3px;
  border-radius: 2px;
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-image {
    animation: none;
  }
}

/* --- Selection --- */
::selection {
  background: rgba(122, 193, 67, 0.3);
  color: var(--text-primary);
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--bg-card), rgba(122, 193, 67, 0.3));
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brand-green);
}

/* --- Premium Section Dividers --- */
.section-padding + .section-dark,
.section-light + .section-dark {
  position: relative;
}

.section-padding + .section-dark::before,
.section-light + .section-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-green), transparent);
}

/* --- Premium Tag Animation --- */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brand-green);
  margin-bottom: 0.75rem;
  padding: 0.4rem 1.2rem;
  border: 1px solid rgba(122, 193, 67, 0.4);
  border-radius: var(--radius-xl);
  background: rgba(122, 193, 67, 0.04);
  position: relative;
  overflow: hidden;
}

.section-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(122, 193, 67, 0.1), transparent);
  animation: tagShimmer 4s ease-in-out infinite;
}

@keyframes tagShimmer {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

/* --- Smooth Link Transitions --- */
a {
  transition: color var(--transition-fast);
}

/* --- Loading State --- */
body {
  opacity: 1;
  animation: fadeInPage 0.6s ease-out;
}

@keyframes fadeInPage {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* --- Preloader --- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s, visibility 0.5s;
}

#preloader.preloader-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  mix-blend-mode: lighten;
  animation: preloaderPulse 1s ease-in-out infinite;
  margin-bottom: 1.5rem;
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.preloader-progress {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--brand-green), #a8e063);
  border-radius: 3px;
  animation: preloaderLoad 1.2s ease-in-out;
}

@keyframes preloaderLoad {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(0); }
}

/* --- Scroll to Top Button --- */
.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-green), #5fb832);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(122, 193, 67, 0.3);
  z-index: 999;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(122, 193, 67, 0.5);
}

/* --- Active Nav Link --- */
.premium-nav .navbar-nav .nav-item a.nav-active {
  color: var(--brand-green);
}

.premium-nav .navbar-nav .nav-item a.nav-active::after {
  transform: scaleX(1);
}

/* --- Partners Section --- */
.partners-section {
  background: var(--bg-secondary);
  padding: 3rem 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.partners-heading {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.partner-badge {
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-badge:hover {
  border-color: rgba(122, 193, 67, 0.4);
  background: rgba(122, 193, 67, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.partner-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  opacity: 0.7;
  transition: opacity var(--transition-base);
  white-space: nowrap;
}

.partner-badge:hover .partner-name {
  opacity: 1;
}

@media (max-width: 576px) {
  .partners-grid {
    gap: 0.75rem;
  }
  .partner-badge {
    padding: 0.5rem 1rem;
  }
  .partner-name {
    font-size: 0.8rem;
  }
}

/* --- Client Badges (elevated style) --- */
.client-badge {
  border-color: rgba(122, 193, 67, 0.15);
  background: rgba(122, 193, 67, 0.03);
}

.client-badge .partner-name {
  opacity: 0.85;
  color: var(--brand-green);
}

.client-badge:hover {
  border-color: rgba(122, 193, 67, 0.6);
  background: rgba(122, 193, 67, 0.08);
}

.client-badge:hover .partner-name {
  opacity: 1;
}

/* --- Announcement Banner (removed) --- */
