/* Chispa Digital - Color Palette */
:root {
  --primary-color: #00B4D8;      /* Vibrant cyan/teal */
  --secondary-color: #1A1A2E;    /* Deep navy */
  --accent-color: #7B2CBF;       /* Rich purple */
  --text-dark: #2D2D2D;          /* Dark grey text */
  --text-light: #F0F4F8;         /* Cool off-white */
  --bg-light: #F8FAFC;           /* Cool light background */
  --bg-dark: #16213E;            /* Dark navy sections */
  --gradient-start: #00B4D8;     /* Cyan */
  --gradient-end: #7B2CBF;       /* Purple */
}

/* Base Styles */
body {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--secondary-color);
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-dark);
}

/* Accent text */
.text-accent {
  color: var(--primary-color) !important;
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  border: none;
  padding: 14px 32px;
  font-weight: 600;
  border-radius: 8px;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 180, 216, 0.4);
  background: linear-gradient(135deg, #00c9f0 0%, #8e3dd1 100%);
  color: white;
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 8px;
  background: transparent;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* CTA Button with pulse animation */
.btn-cta {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
  }
  50% {
    box-shadow: 0 4px 25px rgba(0, 180, 216, 0.5);
  }
  100% {
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
  }
}

/* Navbar */
.navbar {
  background-color: var(--bg-dark) !important;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary-color) !important;
}

.navbar-brand i {
  margin-right: 8px;
}

.navbar-brand .brand-prefix {
  color: #ffffff;
}

.navbar .nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.navbar .nav-link:hover {
  color: var(--primary-color) !important;
}

.navbar-toggler {
  border-color: var(--primary-color);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 180, 216, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
  background: var(--bg-dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.1) 0%, transparent 70%);
  z-index: 0;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(123, 44, 191, 0.08) 0%, transparent 70%);
  z-index: 0;
}

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

.hero-section h1 {
  color: var(--text-light);
  font-size: 3.5rem;
  font-weight: 800;
}

.hero-section .lead {
  color: rgba(240, 244, 248, 0.85);
  font-size: 1.35rem;
  max-width: 600px;
}

/* Section Styling */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

.section-header p {
  color: #666;
  max-width: 700px;
  margin: 20px auto 0;
}

/* Background variations */
.bg-light-warm {
  background-color: var(--bg-light);
}

.bg-dark-section {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.bg-dark-section h2,
.bg-dark-section h3,
.bg-dark-section h4 {
  color: var(--text-light);
}

.bg-dark-section p {
  color: rgba(240, 244, 248, 0.85);
}

/* Value Proposition Cards */
.value-card {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 180, 216, 0.15);
}

.value-card .icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.15) 0%, rgba(123, 44, 191, 0.15) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-card .icon-wrapper i {
  font-size: 2rem;
  color: var(--primary-color);
}

.value-card h4 {
  margin-bottom: 15px;
  font-weight: 700;
}

.value-card p {
  color: #666;
  margin-bottom: 0;
}

/* Services List */
.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-list li {
  display: flex;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.services-list li:last-child {
  border-bottom: none;
}

.services-list .service-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.services-list .service-icon i {
  color: white;
  font-size: 1.25rem;
}

.services-list .service-content h5 {
  color: var(--text-light);
  margin-bottom: 5px;
  font-weight: 600;
}

.services-list .service-content p {
  color: rgba(240, 244, 248, 0.7);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Industry Cards */
.industry-card {
  background: white;
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 180, 216, 0.15);
}

.industry-card .icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.15) 0%, rgba(123, 44, 191, 0.15) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.industry-card .icon-wrapper i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.industry-card h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.industry-card p {
  color: #666;
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* How It Works Steps */
.step-card {
  text-align: center;
  padding: 30px;
}

.step-number {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
  box-shadow: 0 4px 20px rgba(0, 180, 216, 0.3);
}

.step-card h4 {
  margin-bottom: 15px;
}

.step-card p {
  color: #666;
  margin-bottom: 0;
}

/* Connector line between steps */
.steps-container {
  position: relative;
}

.steps-container::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  z-index: 0;
}

@media (max-width: 768px) {
  .steps-container::before {
    display: none;
  }
}

/* Pricing Section */
.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  max-width: 500px;
  margin: 0 auto;
}

.pricing-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.pricing-card .price {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.pricing-card .price-range {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  text-align: left;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  color: var(--primary-color);
  margin-right: 12px;
  font-size: 1.1rem;
}

/* Contact Section */
.contact-section {
  background: var(--bg-light);
}

.form-control {
  padding: 14px 20px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.15);
}

textarea.form-control {
  border-radius: 10px;
}


/* Footer */
footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 60px 0 30px;
}

footer h5 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 20px;
}

footer p {
  color: rgba(240, 244, 248, 0.7);
}

footer a {
  color: rgba(240, 244, 248, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

footer hr {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 40px 0 20px;
}

footer .copyright {
  color: rgba(240, 244, 248, 0.5);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-section h1 {
    font-size: 2.75rem;
  }

  section {
    padding: 70px 0;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-section {
    padding-top: 100px;
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero-section h1 {
    font-size: 2.25rem;
  }

  .hero-section .lead {
    font-size: 1.1rem;
  }

  section {
    padding: 50px 0;
  }

  .value-card,
  .industry-card {
    margin-bottom: 20px;
  }

  .pricing-card {
    padding: 40px 25px;
  }

  .calendly-inline-widget {
    height: 550px;
  }
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Utility classes */
.mb-6 {
  margin-bottom: 4rem !important;
}

.pt-6 {
  padding-top: 4rem !important;
}
