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

:root {
  --primary-blue: #0d3282;
  --secondary-blue: #0a6ed5;
  --primary-green: #00a585;
  --secondary-green: #0db14b;
  --bg-light: #f8faff;
  --text-dark: #1e293b;
  --text-muted: #64748b;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .navbar-brand, .font-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

/* Gradient Text */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue), var(--primary-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
}

/* Navbar */
.navbar {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.navbar-brand img {
  height: 40px;
}
.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.3s ease;
}
.nav-link:hover {
  color: var(--primary-blue);
}
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: white;
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(13, 50, 130, 0.2);
  color: white;
}
.btn-outline-custom {
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
  border-radius: 50px;
  padding: 8px 22px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-outline-custom:hover {
  background-color: var(--primary-green);
  color: white;
}

/* Hero Section */
.hero-section {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.5;
}
.hero-bg-shapes .shape-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,177,75,0.15) 0%, rgba(255,255,255,0) 70%);
}
.hero-bg-shapes .shape-2 {
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,50,130,0.1) 0%, rgba(255,255,255,0) 70%);
}
.hero-title {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}
.hero-img-wrapper {
  position: relative;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  border: 8px solid white;
}

/* Section Styling */
.section-padding {
  padding: 80px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
}
.section-title p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Feature Cards */
.feature-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.05);
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: rgba(13, 50, 130, 0.1);
}
.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}
.icon-blue {
  background: rgba(13, 50, 130, 0.1);
  color: var(--primary-blue);
}
.icon-green {
  background: rgba(0, 165, 133, 0.1);
  color: var(--primary-green);
}
.icon-purple {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

/* Portals Grid */
.portal-item {
  background: white;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  transition: all 0.3s;
  border-left: 4px solid transparent;
}
.portal-item:hover {
  border-left-color: var(--primary-blue);
  box-shadow: 0 10px 15px rgba(0,0,0,0.05);
}
.portal-icon {
  font-size: 2rem;
}
.portal-content h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.portal-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Advantages */
.advantage-list {
  list-style: none;
  padding: 0;
}
.advantage-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.advantage-list li i {
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--primary-green);
  font-size: 1.2rem;
}

/* Pricing Table */
.pricing-wrapper {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.pricing-header {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: white;
  padding: 30px;
  text-align: center;
}
.pricing-header h3 {
  margin: 0;
  font-size: 1.8rem;
}
.table-custom {
  margin: 0;
}
.table-custom th, .table-custom td {
  padding: 15px 20px;
  vertical-align: middle;
}
.table-custom tbody tr:hover {
  background-color: var(--bg-light);
}

/* WhatsApp CTA Form */
.cta-section {
  background: linear-gradient(135deg, #f0fdf4, #e0f2fe);
  border-radius: 30px;
  padding: 60px;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
}
.cta-form-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.25rem rgba(13, 50, 130, 0.25);
}

/* Footer */
footer {
  background-color: var(--primary-blue);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 20px;
}
footer h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: white;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .cta-section {
    padding: 30px 15px;
  }
  .cta-form-card {
    padding: 20px;
  }
}
