
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

main {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

h1, h2 {
  text-align: center;
  font-weight: 600;
}

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

ul li {
  margin-bottom: 20px;
  font-size: 16px;
}

.sticky-menu {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(to right, #80001a, #e30613);
  color: white;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 12px 10px;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); /* subtle depth */
}


.sticky-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.sticky-menu a:hover {
  color: #ffd700;
}

.main-header {
  padding: 80px 20px 20px;
  background: #fff;
}

.features, .order, .reviews {
  background: #fff;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.review {
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
  margin: auto;
}

form input, form textarea {
  padding: 10px;
  font-size: 16px;
  width: 100%;
}

form button {
  background: #2b5876;
  color: white;
  border: none;
  padding: 12px;
  font-size: 16px;
  cursor: pointer;
}

form button:hover {
  background: #4e4376;
}

.standalone-image {
  margin: 30px auto;
  text-align: center;
  padding: 0 15px;
}

.standalone-image img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.main-header {
  background: #ffffff;
  color: #333;
  padding: 80px 20px 40px;
  margin-top: 60px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.main-header h1 {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  position: relative;
}

.main-header h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #2b5876;
  margin: 12px auto 0;
  border-radius: 2px;
}


@media (max-width: 480px) {
  .main-header {
    padding: 40px 10px;
  }

  .main-header h1 {
    font-size: 16px;
  }

  .main-header h1::after {
    width: 40px;
    height: 3px;
  }
}

.faq-section {
  background: #fff;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  border-radius: 8px;
}

.faq-section h2 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 30px;
  color: #2b5876;
}

.faq {
  background: #f9f9f9;
  border-left: 4px solid #2b5876;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.faq h3 {
  margin: 0 0 10px;
  font-size: 16px;
  color: #333;
}

.faq p {
  margin: 0;
  font-size: 15px;
  color: #555;
}

.faq:hover {
  background: #eef5ff;
  transform: translateY(-2px);
}


.reviews {
  background: #fff;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  border-radius: 8px;
}

.reviews h2 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 30px;
  color: #2b5876;
}

.review-card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-2px);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-bottom: 10px;
  color: #333;
}

.verified {
  background-color: #d1ecf1;
  color: #0c5460;
  padding: 2px 8px;
  font-size: 12px;
  border-radius: 12px;
}

.stars {
  font-size: 16px;
  color: #f39c12;
  margin-left: auto;
  font-family: Arial, sans-serif;
}

.review-card h4 {
  margin: 0 0 10px;
  font-size: 16px;
  color: #111;
}

.review-card p {
  margin: 0;
  font-size: 15px;
  color: #555;
}


.order {
  background: #fff;
  padding: 50px 20px;
  max-width: 700px;
  margin: 50px auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-family: 'Inter', sans-serif;
}

.order h2 {
  text-align: center;
  margin-bottom: 35px;
  color: #2b5876;
  font-size: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: all 0.2s ease-in-out;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2b5876;
  box-shadow: 0 0 0 2px rgba(43, 88, 118, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-group button {
  background: linear-gradient(to right, #2b5876, #4e4376);
  color: #fff;
  padding: 14px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form-group button:hover {
  background: linear-gradient(to right, #4e4376, #2b5876);
  transform: translateY(-1px);
}


.split {
  display: flex;
  gap: 15px;
}

.split > div {
  flex: 1;
}

@media (max-width: 600px) {
  .split {
    flex-direction: column;
  }
}

.radio-group.horizontal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.radio-option {
  flex: 0 0 calc(33.333% - 12px); /* 3 per row */
  min-width: 180px;
  max-width: 220px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  cursor: pointer;
  background: #f9f9f9;
  white-space: nowrap;
  transition: all 0.2s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  text-align: left;
}

.radio-option:hover,
.radio-option input:checked + span {
  background: #eef4ff;
  border-color: #2b5876;
}

.radio-option input {
  accent-color: #2b5876;
  transform: scale(1.2);
}


@media (max-width: 600px) {
  .radio-option {
    flex: 1 1 100%;
  }
}


.asterisk {
  color: red;
  font-weight: bold;
  margin-left: 2px;
}

.required-note {
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
  text-align: center;
}


.contact-card {
  display: flex;
  justify-content: center;
  background: #f0f4f9;
  padding: 60px 20px;
  margin: 60px auto;
}

.contact-wrapper {
  background: #ffffff;
  padding: 40px 30px;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.contact-wrapper h2 {
  color: #2b5876;
  font-size: 22px;
  margin-bottom: 10px;
}

.contact-subtext {
  font-size: 15px;
  color: #666;
  margin-bottom: 25px;
}

.contact-details p {
  font-size: 16px;
  margin: 12px 0;
}

.contact-details a {
  color: #2b5876;
  text-decoration: none;
  font-weight: 600;
}

.contact-details a:hover {
  text-decoration: underline;
}

.wa-icon {
  vertical-align: middle;
  margin-right: 6px;
  margin-bottom: 2px;
}


.trust-badges {
  text-align: center;
  padding: 50px 20px;
  background: #fff;
  margin: 0 auto 40px;
}

.trust-title {
  font-size: 20px;
  margin-bottom: 30px;
  color: #2b5876;
}

.badge-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 900px;
  margin: auto;
}

.badge {
  background: #eef4ff;
  border: 1px solid #d0e0f0;
  border-radius: 12px;
  padding: 20px;
  width: 220px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.icon-circle {
  background-color: #2b5876;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.badge-icon {
  width: 20px;
  height: 20px;
}

.badge p {
  margin: 0;
  font-weight: 600;
  font-size: 15px;
  color: #2b5876;
}

.animated-section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animated-section.show {
  opacity: 1;
  transform: translateY(0);
}


/* Themed icon circle colors */
.badge.blue .icon-circle {
  background-color: #2b5876; /* deep blue */
}

.badge.green .icon-circle {
  background-color: #28a745; /* success green */
}

.badge.orange .icon-circle {
  background-color: #f0ad4e; /* delivery orange */
}

/* Optional: matching text color (if desired) */
.badge.blue p {
  color: #2b5876;
}

.badge.green p {
  color: #28a745;
}

.badge.orange p {
  color: #d97c00;
}


.thank-you-message {
  text-align: center;
  padding: 40px;
  background: #f0f9f4;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

.thank-you-message h3 {
  color: #28a745;
  margin-bottom: 10px;
  font-size: 22px;
}

.thank-you-message p {
  font-size: 16px;
  color: #333;
}


input.valid, textarea.valid, select.valid {
  border: 2px solid #28a745;
  background-color: #f4fcf6;
}

input.invalid, textarea.invalid, select.invalid {
  border: 2px solid #dc3545;
  background-color: #fff5f5;
}


@keyframes shake {
  0% { transform: translateX(0); }
  20% { transform: translateX(-4px); }
  40% { transform: translateX(4px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(3px); }
  100% { transform: translateX(0); }
}

.shake {
  animation: shake 0.4s ease;
}


.optional-note {
  font-size: 13px;
  color: #888;
  margin-top: 6px;
  display: block;
}

.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
}

.............................

.cta-wrapper {
  text-align: center;
  margin: 50px 0;
}

.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff5a5f, #fca311);
  color: #fff;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, background 0.3s ease;
  animation: pulse 2s infinite;
}

.cta-btn:hover {
  background: linear-gradient(135deg, #fca311, #ff5a5f);
  transform: scale(1.08);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 480px) {
  .cta-btn {
    font-size: 16px;
    padding: 14px 24px;
  }
}
