:root {
  /* Color Palette */
  --primary-dark: #1f3641;
  --primary-blue: #3a8ebf;
  --secondary-blue: #0c5c86;
  --accent-green: #66af33;
  --hover-green: #76b748;
  --accent-red: #cb4661;
  --light-gray: #eeeeee;
  --dark-text: #373737;
  --white: #ffffff;
  
  /* Typography */
  --font-family: 'Roboto', 'Calibri', 'Ubuntu', sans-serif;
  --heading-weight: 700;
  --body-weight: 400;
  
  /* Spacing */
  --section-padding: 5rem 2rem;
  --content-max-width: 1200px;
}

/* Base Styles */
html, body {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark-text);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: var(--heading-weight);
  margin-top: 0;
  color: var(--primary-dark);
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary-blue);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.container {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.navbar {
  background-color: var(--primary-dark);
  transition: all 0.3s ease;
}

.navbar-brand img {
  height: 70px;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.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(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

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

.nav-link:hover {
  color: var(--accent-green) !important;
}

.btn-login {
  background-color: var(--secondary-blue);
  color: var(--white) !important;
  border-radius: 4px;
  padding: 0.5rem 1.25rem !important;
}

.btn-login:hover {
  background-color: var(--primary-blue);
}

/* Hero Section */
.hero {
  padding-top: 160px; /* Increased from 120px to prevent header overlap */
  padding-bottom: 5rem;
  background: linear-gradient(to right, rgba(31, 54, 65, 0.95), rgba(12, 92, 134, 0.95)), no-repeat center center;
  background-size: cover;
  color: var(--white);
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.btn-hero {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  margin-right: 1rem;
  margin-bottom: 1rem;
}

/* Section Styles */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

/* Removed blue underline as requested */
.section-title:after {
  display: none;
}

.section-about {
  background-color: var(--white);
}

.section-features {
  background-color: var(--light-gray);
}

.section-app {
  background-color: var(--white);
}

.section-pricing {
  background-color: var(--light-gray);
}

.section-contact {
  background-color: var(--white);
}

.section-about-us {
  background-color: var(--light-gray);
}

/* Feature Cards */
.feature-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  margin-left: auto;
  margin-right: auto;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}


/* App Section */
.app-badges img {
  height: 50px;
  margin-right: 1rem;
  margin-bottom: 1rem;
}

/* Pricing Cards */
.price-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 100%;
  text-align: center;
}

.price-card:hover {
  transform: translateY(-5px);
}

.price-title {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-red);
  margin-bottom: 1.5rem;
}

.price-feature {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  text-align: left;
}

.price-icon {
  width: 48px;
  height: 48px;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}
.price-icon-small {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  color: var(--accent-green);
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.75rem;
  margin-bottom: 1.5rem;
  border-radius: 4px;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(58, 142, 191, 0.25);
}

.btn-submit {
  background-color: var(--accent-green);
  color: var(--white);
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  width: 100%;
}

.btn-submit:hover {
  background-color: var(--hover-green);
}

.required-field::after {
  content: "*";
  color: var(--accent-red);
  margin-left: 0.25rem;
}
#recaptcha-wrapper {
  display: none;
}

.btn-submit {
  position: relative;
  padding-right: 2.5em; /* vieta loaderim */
}

.btn-loader {
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  border: 2px solid #fff;
  border-top: 2px solid #3498db;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% { transform: translateY(-50%) rotate(0deg); }
  100% { transform: translateY(-50%) rotate(360deg); }
}

/* WhatsApp Button Styles */
.whatsapp-button {
  position: fixed;
  bottom: 28px;
  right: 35px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  z-index: 9999;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  background-color: #20ba5a;
}

.whatsapp-button svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.whatsapp-button.pulse-subtle {
  animation: pulseSubtle 3s ease-in-out infinite;
}

@keyframes pulseSubtle {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
  }
}

/* Footer */
.footer {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: var(--white);
  margin-right: 1.5rem;
}

.footer-links a:hover {
  color: var(--accent-green);
}

.social-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
  color: var(--white);
}

.social-icon:hover {
  color: var(--accent-green);
}

/* Bullet Style */
.bullet-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  background-color: var(--primary-blue);
  border-radius: 50%;
}

/* Animations */
.fade-in {
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.slide-up {
  animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
  from { 
    transform: translateY(50px);
    opacity: 0;
  }
  to { 
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero {
    padding-top: 140px; /* Increased padding for tablet view */
    padding-bottom: 3rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .section {
    padding: 4rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .feature-card, .price-card {
    padding: 1.5rem;
  }

  .whatsapp-button {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-button svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 576px) {
  .nav-hide { display: none; }
  .navbar .container { padding: 0 1rem 0 0; }

  
  .hero {
    padding-top: 120px; /* Increased padding for mobile view to prevent header overlap */
    padding-bottom: 2rem;
  }
  
  .hero h1 {
    font-size: 1.5rem;
    margin-top: 1rem; /* Added margin to help with spacing */
  }
  
  .section {
    padding: 3rem 1rem;
  }
  
  .btn-hero {
    width: 100%;
    margin-right: 0;
  }
}

/* Flash Messages */
.alert {
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.alert-success {
  background-color: rgba(102, 175, 51, 0.1);
  border-color: var(--accent-green);
  color: var(--accent-green);
}

.alert-danger {
  background-color: rgba(203, 70, 97, 0.1);
  border-color: var(--accent-red);
  color: var(--accent-red);
}
