/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: #5c5c5c;
  background-color: #ffffff;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: #5c5c5c;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #cfcfcf;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #4433ff;
}

.accent-text {
  color: #73b441;
}

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

.nav-links a {
  text-decoration: none;
  color: #5c5c5c;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #4433ff;
}

.nav-cta {
  background: #4433ff;
  color: white !important;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  opacity: 0.25;
}

.nav-cta:hover {
  background: #73b441;
  opacity: 1;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #5c5c5c;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero .container {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 10;
}

.hero-title {
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-tagline {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  line-height: 1.8;
}

.cta-button {
  display: inline-block;
  background: #4433ff;
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(68, 51, 255, 0.3);
}

.cta-button:hover {
  background: #73b441;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(115, 180, 65, 0.4);
}

/* Secondary CTA Button with Green Accent */
.cta-button-secondary {
  display: inline-block;
  background: #73b441;
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(115, 180, 65, 0.3);
}

.cta-button-secondary:hover {
  background: #5a8f33;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(115, 180, 65, 0.4);
}

.water-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    #5a7bc8 0%,
    #4a6bba 25%,
    #3a5bac 50%,
    #2a4b9e 75%,
    #1a3b90 100%
  );
  overflow: hidden;
  z-index: 1;
}

.water-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.05) 50%,
    rgba(0, 0, 0, 0.15) 100%
  );
  z-index: 3;
  pointer-events: none;
}

.water-layer {
  position: absolute;
  width: 200%;
  height: 100%;
  left: -50%;
  background-repeat: repeat-x;
  animation: wave-flow linear infinite;
  opacity: 0.6;
  will-change: transform, background-position;
}

.water-layer-1 {
  background: radial-gradient(
      ellipse 150% 40% at 50% 0%,
      rgba(68, 51, 255, 0.35) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 150% 40% at 50% 100%,
      rgba(115, 180, 65, 0.3) 0%,
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(68, 51, 255, 0.25) 0%,
      rgba(115, 180, 65, 0.2) 100%
    );
  background-size: 200% 200%, 200% 200%, 200% 100%;
  animation-duration: 15s;
  animation-direction: normal;
  top: 0;
  clip-path: polygon(
    0 0,
    100% 0,
    100% 92%,
    95% 94%,
    90% 91%,
    85% 95%,
    80% 92%,
    75% 96%,
    70% 93%,
    65% 97%,
    60% 94%,
    55% 98%,
    50% 95%,
    45% 99%,
    40% 96%,
    35% 98%,
    30% 95%,
    25% 97%,
    20% 94%,
    15% 96%,
    10% 93%,
    5% 95%,
    0 92%
  );
  filter: blur(2px);
}

.water-layer-2 {
  background: radial-gradient(
      ellipse 180% 50% at 50% 0%,
      rgba(115, 180, 65, 0.3) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 180% 50% at 50% 100%,
      rgba(68, 51, 255, 0.35) 0%,
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(115, 180, 65, 0.25) 0%,
      rgba(68, 51, 255, 0.3) 100%
    );
  background-size: 200% 200%, 200% 200%, 200% 100%;
  animation-duration: 18s;
  animation-direction: reverse;
  top: 20%;
  clip-path: polygon(
    0 8%,
    5% 5%,
    10% 10%,
    15% 7%,
    20% 12%,
    25% 9%,
    30% 14%,
    35% 11%,
    40% 16%,
    45% 13%,
    50% 18%,
    55% 15%,
    60% 20%,
    65% 17%,
    70% 22%,
    75% 19%,
    80% 24%,
    85% 21%,
    90% 26%,
    95% 23%,
    100% 20%,
    100% 100%,
    0 100%
  );
  filter: blur(3px);
}

.water-layer-3 {
  background: radial-gradient(
      ellipse 160% 45% at 50% 0%,
      rgba(68, 51, 255, 0.4) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 160% 45% at 50% 100%,
      rgba(115, 180, 65, 0.35) 0%,
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(68, 51, 255, 0.3) 0%,
      rgba(115, 180, 65, 0.25) 100%
    );
  background-size: 200% 200%, 200% 200%, 200% 100%;
  animation-duration: 20s;
  animation-direction: normal;
  top: 40%;
  clip-path: polygon(
    0 3%,
    4% 8%,
    8% 4%,
    12% 10%,
    16% 6%,
    20% 13%,
    24% 9%,
    28% 15%,
    32% 11%,
    36% 17%,
    40% 13%,
    44% 19%,
    48% 15%,
    52% 21%,
    56% 17%,
    60% 23%,
    64% 19%,
    68% 25%,
    72% 21%,
    76% 27%,
    80% 23%,
    84% 29%,
    88% 25%,
    92% 31%,
    96% 27%,
    100% 24%,
    100% 100%,
    0 100%
  );
  filter: blur(2.5px);
}

.water-layer-4 {
  background: radial-gradient(
      ellipse 200% 55% at 50% 0%,
      rgba(115, 180, 65, 0.35) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 200% 55% at 50% 100%,
      rgba(68, 51, 255, 0.4) 0%,
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(115, 180, 65, 0.3) 0%,
      rgba(68, 51, 255, 0.35) 100%
    );
  background-size: 200% 200%, 200% 200%, 200% 100%;
  animation-duration: 16s;
  animation-direction: reverse;
  top: 60%;
  clip-path: polygon(
    0 10%,
    6% 6%,
    12% 12%,
    18% 8%,
    24% 15%,
    30% 11%,
    36% 18%,
    42% 14%,
    48% 21%,
    54% 17%,
    60% 24%,
    66% 20%,
    72% 27%,
    78% 23%,
    84% 30%,
    90% 26%,
    96% 32%,
    100% 28%,
    100% 100%,
    0 100%
  );
  filter: blur(3.5px);
}

.water-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 30%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0.15) 70%,
    transparent 100%
  );
  animation: shine 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes wave-flow {
  0% {
    transform: translateX(0) translateY(0);
    background-position: 0% 0%, 0% 0%, 0% 0%;
  }
  100% {
    transform: translateX(-50%) translateY(0);
    background-position: 100% 0%, 100% 0%, 100% 0%;
  }
}

@keyframes shine {
  0% {
    left: -100%;
  }
  50% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  color: #5c5c5c;
  margin-bottom: 1rem;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #4433ff, #73b441);
  margin: 0 auto;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #5c5c5c;
  margin-top: 1rem;
  font-weight: 400;
}

/* About Section */
.about {
  background: #ffffff;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* Channels Section */
.channels {
  background: #f2f2f2;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.channel-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #cfcfcf;
  position: relative;
  overflow: hidden;
}

.channel-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-color: #4433ff;
}

.channel-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4433ff, #73b441);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.channel-card:hover::before {
  transform: scaleX(1);
}

.channel-logo {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  border: 2px solid #cfcfcf;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.channel-card:hover .channel-logo {
  border-color: #4433ff;
  box-shadow: 0 4px 15px rgba(68, 51, 255, 0.2);
  transform: scale(1.05);
}

.channel-logo img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s ease;
}

.channel-card:hover .channel-logo img {
  transform: scale(1.1);
}

/* Specific logo sizing for better proportions */
.channel-card:nth-child(2) .channel-logo img {
  width: 85px;
  height: 85px;
}

.channel-card:nth-child(3) .channel-logo img {
  width: 85px;
  height: 85px;
}

.channel-card h3 {
  color: #73b441;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.channel-card:hover h3 {
  color: #5a8f33;
}

.channel-card p {
  color: #5c5c5c;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.channel-card:hover p {
  color: #5c5c5c;
}

/* Pilot Program Section */
.pilot-program {
  background: #ffffff;
}

.pilot-content {
  max-width: 1000px;
  margin: 0 auto;
}

.pilot-text {
  text-align: center;
  margin-bottom: 3rem;
}

.pilot-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #5c5c5c;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pilot-text p:last-child {
  margin-bottom: 0;
}

.pilot-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.benefit-item {
  background: #f2f2f2;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #cfcfcf;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #4433ff;
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  color: #4433ff;
}

.benefit-icon i {
  font-size: 3rem;
  display: block;
}

.benefit-item h3 {
  color: #5c5c5c;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

.benefit-item:hover h3 {
  color: #4433ff;
}

.benefit-item:hover .benefit-icon {
  color: #3326cc;
  transform: scale(1.1);
}

.benefit-item p {
  color: #5c5c5c;
  line-height: 1.6;
  margin: 0;
}

.pilot-cta {
  text-align: center;
  margin-top: 2rem;
}

/* Services Section */
.services {
  background: #f2f2f2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #cfcfcf;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-color: #4433ff;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4433ff, #73b441);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
  color: #4433ff;
}

.service-icon i {
  font-size: 3rem;
  display: block;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(68, 51, 255, 0.3));
}

.service-card:hover .service-icon i {
  color: #73b441;
}

.service-card h3 {
  color: #73b441;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: #5a8f33;
}

.service-card p {
  color: #5c5c5c;
  line-height: 1.7;
  transition: color 0.3s ease;
}

.service-card:hover p {
  color: #5c5c5c;
}

/* Testimonials Section */
.testimonials {
  background: #ffffff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: #f2f2f2;
  padding: 2rem;
  border-radius: 16px;
  border-left: 4px solid #4433ff;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-content p {
  font-style: italic;
  font-size: 1.1rem;
  color: #5c5c5c;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-author strong {
  color: #5c5c5c;
  font-weight: 600;
}

.testimonial-author span {
  color: #5c5c5c;
  font-size: 0.9rem;
}

/* Contact Section */
.contact {
  background: #f2f2f2;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  color: #5c5c5c;
  margin-bottom: 1rem;
}

.contact-info p {
  color: #5c5c5c;
  font-size: 1.1rem;
  line-height: 1.7;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #5c5c5c;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #cfcfcf;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4433ff;
}

.submit-button {
  width: 100%;
  background: #4433ff;
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background: #73b441;
  transform: translateY(-2px);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

.sticky-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #4433ff;
  color: white;
  padding: 1rem 1.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(68, 51, 255, 0.3);
  transition: all 0.3s ease;
  opacity: 0.25;
}

.sticky-button:hover {
  background: #73b441;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(115, 180, 65, 0.4);
  opacity: 1;
}

/* Footer */
.footer {
  background: #5c5c5c;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  color: #4433ff;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: #cfcfcf;
}

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
  align-items: center;
}

.footer-links a {
  color: #cfcfcf;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #4433ff;
}

.footer-bottom {
  border-top: 1px solid #cfcfcf;
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom p {
  color: #cfcfcf;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-tagline {
    font-size: 1.25rem;
  }

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

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

  .pilot-benefits {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .sticky-cta {
    bottom: 1rem;
    right: 1rem;
  }

  .sticky-button {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  section {
    padding: 60px 0;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-tagline {
    font-size: 1.1rem;
  }

  .service-card,
  .testimonial-card,
  .contact-form {
    padding: 1.5rem;
  }

  .sticky-button {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }
}

/* Success/Error Messages */
.message {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-weight: 500;
}

.message.success {
  background: rgba(115, 180, 65, 0.1);
  color: #73b441;
  border: 1px solid #73b441;
}

.message.error {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}
