:root {
  --primary-color: #37517e;
  --secondary-color: #47b2e4;
  --accent-color: #5777ba;
  --text-color: #444444;
  --bg-light: #f3f5fa;
  --white: #ffffff;
  --font-heading: "Poppins", sans-serif;
  --font-body: "Open Sans", sans-serif;
}

/* General */
body {
  font-family: var(--font-body);
  color: var(--text-color);
  background-color: #fff;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

/* Coming Soon Banner */
.coming-soon-banner {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: #fff;
  padding: 12px 0;
  text-align: center;
  font-size: 14px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.5s ease-out;
}

.coming-soon-banner i {
  font-size: 18px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Header */
#header {
  margin-top: 45px;
}
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  background: rgba(55, 81, 126, 0.95); /* Darker transparent background */
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#header .logo h1 a {
  color: #fff;
  text-decoration: none;
}

/* Navbar */
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: var(--secondary-color);
}

.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

/* Hero Section */
#hero {
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, var(--primary-color) 0%, #2a3d61 100%);
  padding-top: 125px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: #fff;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  font-size: 22px;
  font-weight: 400;
}

#hero .btn-get-started {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  transition: 0.5s;
  margin-top: 20px;
  color: #fff;
  background: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

#hero .btn-get-started:hover {
  background: transparent;
  color: var(--secondary-color);
}

#hero .hero-img img {
  width: 100%;
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

/* Sections General */
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-bg {
  background-color: var(--bg-light);
}

.section-title {
  text-align: center;
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 15px;
  position: relative;
  color: var(--primary-color);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--secondary-color);
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
  color: #666;
}

/* About */
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
  color: var(--primary-color);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 10px;
  color: var(--secondary-color);
}

/* Services */
.services .icon-box {
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  border-radius: 15px;
  z-index: 1;
  height: 100%;
  border-bottom: 3px solid transparent;
}

.services .icon-box:hover {
  transform: translateY(-10px);
  border-bottom: 3px solid var(--secondary-color);
}

.services .icon {
  margin-bottom: 20px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 42px;
  line-height: 1;
  color: var(--secondary-color);
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
  color: var(--primary-color);
}

.services .title a {
  color: var(--primary-color);
  transition: 0.3s;
}

.services .title a:hover {
  color: var(--secondary-color);
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
  color: #666;
}

/* Platforms */
.platform-box {
    padding: 40px;
    background: #fff;
    border-radius: 15px;
    transition: 0.4s;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.platform-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transition: 0.4s;
    transform-origin: left;
}

.platform-box:hover::before {
    transform: scaleX(1);
}

.platform-box:hover {
    transform: translateY(-10px);
    box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.1);
}

.platform-box i {
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: inline-block;
}

.platform-box h3 {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Contact */
.contact .info {
  border-top: 3px solid var(--secondary-color);
  border-bottom: 3px solid var(--secondary-color);
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.contact .info i {
  font-size: 20px;
  color: var(--secondary-color);
  float: left;
  width: 44px;
  height: 44px;
  background: #e7f5fb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info i:hover {
  background: var(--secondary-color);
  color: #fff;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #6182ba;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid var(--secondary-color);
  border-bottom: 3px solid var(--secondary-color);
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.contact .php-email-form button[type="submit"] {
  background: var(--secondary-color);
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #209dd8;
}

/* Footer */
#footer {
  background: var(--primary-color);
  padding: 30px 0;
  color: #fff;
  font-size: 14px;
  text-align: center;
}

#footer .copyright {
    color: #fff;
}

#footer .copyright strong span {
    color: var(--secondary-color);
}

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--secondary-color);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #209dd8;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 80px;
  right: 15px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 995;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  color: #fff;
  transform: scale(1.1);
}

.whatsapp-float i {
  line-height: 0;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* WhatsApp in Contact Section */
.contact .whatsapp {
  margin-top: 20px;
}

.contact .whatsapp i {
  background-color: #25d366;
}

.contact .whatsapp i:hover {
  background-color: #128c7e;
}

.contact .whatsapp p a {
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

/* Stats Section */
.stats {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2a3d61 100%);
  margin-top: -80px;
  padding-top: 100px !important;
}

.stats-item {
  padding: 20px;
}

.stats-item h3 {
  font-size: 48px;
  margin-bottom: 10px;
}

/* Features Section */
.feature-item {
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  transition: 0.3s;
}

.feature-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 30px;
  color: white;
}

/* Testimonials */
.testimonials .card {
  transition: 0.3s;
  border-radius: 15px;
}

.testimonials .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2a3d61 100%);
  padding: 80px 0;
}

/* Social Icons */
.social-icon {
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: white;
  border-radius: 50%;
  font-size: 20px;
  transition: 0.3s;
}

.social-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(71, 178, 228, 0.4);
  color: white;
}

/* Modern Service Cards */
.service-card {
  transition: all 0.3s ease;
  border-radius: 15px;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.icon-box-modern {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: white;
  transition: all 0.3s ease;
}

.service-card:hover .icon-box-modern {
  transform: rotateY(360deg);
}

/* Platform Cards */
.platform-card {
  transition: all 0.4s ease;
  border-radius: 20px;
  position: relative;
}

.platform-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15) !important;
}

.platform-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: white;
  transition: all 0.4s ease;
}

.platform-card:hover .platform-icon {
  transform: scale(1.1) rotate(5deg);
}

.featured-platform {
  border: 2px solid var(--secondary-color);
}

/* Modern Form Styling */
.form-floating > .form-control {
  border-radius: 10px;
}

.form-floating > .form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.25rem rgba(71, 178, 228, 0.25);
}

.contact-message-textarea {
  height: 150px;
}

.hero-badge {
  width: fit-content;
}

/* Signup Section */
.signup-form .form-floating > .form-control,
.signup-form .form-floating > .form-select {
  border-radius: 10px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.signup-form .form-floating > .form-control:focus,
.signup-form .form-floating > .form-select:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.25rem rgba(71, 178, 228, 0.25);
}

.signup-form .form-floating label i {
  color: var(--secondary-color);
}

.business-details-textarea {
  height: 120px;
}

.business-address-textarea {
  height: 100px;
}

.signup-btn {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  border: none;
  transition: all 0.3s ease;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.signup-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(71, 178, 228, 0.4);
  background: linear-gradient(135deg, #209dd8, #2a3d61);
}

.signup .card {
  border-radius: 20px;
  overflow: hidden;
}

.form-check-input:checked {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* Pricing Section */
.pricing-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  overflow: hidden;
  border: 2px solid transparent;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--secondary-color);
}

.pricing-card.featured {
  border: 2px solid var(--secondary-color);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-15px);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  transform: rotate(45deg);
  padding: 8px 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  z-index: 10;
}

.pricing-card .card-header {
  padding: 40px 30px 30px;
  background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
  border-bottom: 2px solid var(--bg-light);
}

.pricing-card .card-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.pricing-card .price {
  margin: 20px 0;
}

.pricing-card .price .currency {
  font-size: 24px;
  color: var(--secondary-color);
  font-weight: 600;
  vertical-align: top;
  margin-top: 10px;
  display: inline-block;
}

.pricing-card .price .amount {
  font-size: 64px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.pricing-card .price .period {
  font-size: 18px;
  color: #666;
  font-weight: 500;
}

.pricing-card .card-body {
  padding: 40px 30px;
}

.pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-card .features-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--bg-light);
  font-size: 15px;
  color: var(--text-color);
  display: flex;
  align-items: center;
}

.pricing-card .features-list li:last-child {
  border-bottom: none;
}

.pricing-card .features-list li i {
  font-size: 20px;
  margin-right: 12px;
  color: var(--secondary-color);
  flex-shrink: 0;
}

.pricing-card .features-list li.disabled {
  opacity: 0.5;
}

.pricing-card .features-list li.disabled i {
  color: #ccc;
}

.pricing-card .btn {
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.pricing-card .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(71, 178, 228, 0.3);
}

.pricing-card.featured .btn-primary {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  border: none;
}
