:root {
  --primary-color: #936219;
  --secondary-color: #f8f9fa;
  --accent-color: #894001;
  --error-color: #c41515ff;
  --success-color: #018501ff;
  --modal-primary: #936219;
  --modal-secondary: #f8d9b0;
  --modal-accent: #894001;
  --card-bg: linear-gradient(135deg, #ffffff 0%, #fefaf4 100%);
  --card-border: rgba(147, 98, 25, 0.15);
  --input-bg: #fcf6ed;
  --input-focus: rgba(137, 64, 1, 0.2);
  --header-gradient: linear-gradient(135deg, #8b4605 0%, #ca731c 100%);
  --header-gradient-2: linear-gradient(135deg, #8b4605 0%, #ca731c 100%);
}
* {
  scroll-behavior: smooth;
}
body {
  background-color: #f5f5f5;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  padding: 80px 0 100px 0;
}

/* Hero Section Styles */
.hero-section {
  background: #fff;
  margin-bottom: 25px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  position: relative;
}

.wideimage-slider {
  width: 100%;
  overflow: hidden;
}

.wideimage-slider .slide {
  position: relative;
}

.wideimage-slider img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Overlay gradient box */
.wideimage-slider .section-menu-title-box {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 220px;
  background: linear-gradient(to bottom, transparent, #000);
}

.wideimage-slider .section-menu-title-box a {
  position: absolute;
  right: 30px;
  bottom: 30px;
  color: var(--color-slate, #fff);
  background: rgba(192, 192, 192, 0.22);
  padding: 5px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .wideimage-slider img {
    height: 300px;
  }

  .wideimage-slider .section-menu-title-box {
    height: 132px;
  }

  .wideimage-slider .section-menu-title-box a {
    right: 25px;
    left: 25px;
    bottom: 11px;
    padding: 5px 20px;
    font-size: 16px;
  }
}


/* END Hero Section Styles */

.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  color: white;
  /*box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);*/
  padding: 14px 0;
}

.header-content {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* Enhanced Form Card Styling */
.form-card {
  background: var(--card-bg);
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--card-border);
}

.form-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.form-card.invalid {
  border-left: 5px solid var(--error-color);
}

/* NEW: Enhanced Card Header with Beautiful Gradient */
.form-card .card-header {
  background: var(--header-gradient);
  border-bottom: none;
  font-weight: 700;
  padding: 20px 25px;
  color: white;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  overflow: hidden;
}

.form-card .card-header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  transform: rotate(-15deg);
  pointer-events: none;
}

.form-card .card-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: 100% 100%;
  pointer-events: none;
}

.form-card .card-header i {
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.form-card .card-body {
  padding: 25px;
}

/* NEW: Enhanced Form Label */
.form-label {
  font-weight: 600;
  margin-bottom: 10px;
  color: #5a4a3a;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding-left: 12px;
}

.form-label::before {
  content: "";
  position: absolute;
  left: 0;
  height: 18px;
  width: 4px;
  background: var(--header-gradient);
  border-radius: 2px;
}

/* NEW: Completely Revamped Input Fields */
.form-control,
.form-select {
  border-radius: 12px;
  padding: 16px 20px;
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
    var(--header-gradient) border-box;
  transition: all 0.3s ease;
  font-size: 1rem;
  color: #5a4a3a;
  box-shadow: 0 4px 10px rgba(139, 90, 43, 0.1);
  position: relative;
}

.form-control:focus,
.form-select:focus {
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
    var(--header-gradient-2) border-box;
  box-shadow: 0 6px 15px rgba(139, 90, 43, 0.2);
  transform: translateY(-2px);
}

.form-control.invalid,
.form-select.invalid {
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(135deg, #dc3545, #c41515) border-box;
  box-shadow: 0 4px 10px rgba(220, 53, 69, 0.15);
}

.form-control.valid,
.form-select.valid {
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(135deg, #28a745, #018501) border-box;
  box-shadow: 0 4px 10px rgba(40, 167, 69, 0.15);
}

/* NEW: Input field icons */
.input-group {
  position: relative;
}

.input-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-size: 1.1rem;
  z-index: 5;
}

/* NEW: Completely Revamped Input Fields */
.form-control,
.form-select {
  border-radius: 12px;
  padding: 16px 20px;
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
    var(--header-gradient) border-box;
  transition: all 0.3s ease;
  font-size: 1rem;
  color: #5a4a3a;
  box-shadow: 0 4px 10px rgba(139, 90, 43, 0.1);
  position: relative;
}

.form-control:focus,
.form-select:focus {
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
    var(--header-gradient-2) border-box;
  box-shadow: 0 6px 15px rgba(139, 90, 43, 0.2);
  transform: translateY(-2px);
}

.form-control.invalid,
.form-select.invalid {
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(135deg, #dc3545, #c41515) border-box;
  box-shadow: 0 4px 10px rgba(220, 53, 69, 0.15);
}

.form-control.valid,
.form-select.valid {
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(135deg, #28a745, #018501) border-box;
  box-shadow: 0 4px 10px rgba(40, 167, 69, 0.15);
}

/* NEW: Input field icons */
.input-group {
  position: relative;
}

.input-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-size: 1.1rem;
  z-index: 5;
}

.error-message {
  color: var(--error-color);
  font-size: 0.9rem;
  margin-top: 6px;
  display: none;
  font-weight: 500;
  padding-left: 10px;
}

.btn:hover {
  border-color: inherit;
}

.btn-primary {
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--accent-color)
  );
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(147, 98, 25, 0.3);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(147, 98, 25, 0.4);
}

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

.btn-outline-primary:hover {
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--accent-color)
  );
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(147, 98, 25, 0.25);
}

.btn-secondary {
  background: linear-gradient(
    to right,
    var(--accent-color),
    var(--primary-color)
  );
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(147, 98, 25, 0.3);
  transition: all 0.3s ease;
}

.btn-srcondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(147, 98, 25, 0.4);
}

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

.btn-outline-srcondary:hover {
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--accent-color)
  );
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(147, 98, 25, 0.25);
}

/* Enhanced Item Card Styling */
.item-card {
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
  border: 1px solid #e8dfd3;
  /*transition: all 0.3s ease;*/
  background: var(--card-bg);
  overflow: hidden;
  transition: height 0.5s ease, margin 0.5s ease, padding 0.5s ease, opacity 0.5s ease,
    transform 1s ease;
  opacity: 1;
}

.item-card.removing {
  opacity: 0;
  margin: 0px 0px;
  padding: 0px 0px;
  height: 0px 0px;
}

.item-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.item-card.invalid {
  border-left: 5px solid var(--error-color);
}

.item-card .card-body {
  padding: 20px;
}

/* Custom Remove Button */
.btn-remove {
  background: linear-gradient(to right, #dc3545, #c41515);
  border: none;
  border-radius: 10px;
  padding: 10px;
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(220, 53, 69, 0.3);
}

.btn-remove:hover {
  background: linear-gradient(to right, #c41515, #a00);
  transform: scale(1.05);
  box-shadow: 0 5px 12px rgba(220, 53, 69, 0.4);
}

.footer-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 20px;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
  z-index: 100;
  display: flex;
  gap: 15px;
}

.footer-buttons .btn {
  flex: 1;
  padding: 16px;
  font-size: 1.1rem;
}

.validation-summary {
  background: linear-gradient(to right, #ffebee, #ffcdd2);
  color: var(--error-color);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 25px;
  display: none;
  border-left: 5px solid var(--error-color);
}

.validation-summary h5 {
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.validation-summary h5:before {
  content: "⚠";
  font-size: 1.5rem;
}

.validation-summary ul {
  margin-bottom: 0;
  padding-left: 20px;
}

.validation-summary li {
  margin-bottom: 8px;
  font-weight: 500;
}

/* Loading Overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  display: none;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loading-text {
  margin-top: 20px;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.2rem;
}

/* Enhanced Modal Styles */
.modal-content {
  border-radius: 16px;
  overflow: hidden;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  background: linear-gradient(
    to bottom,
    #fff 0%,
    #fff 90%,
    var(--modal-secondary) 100%
  );
}

.modal-header {
  background: linear-gradient(
    135deg,
    var(--modal-primary),
    var(--modal-accent)
  );
  color: white;
  border-bottom: none;
  padding: 20px 25px 15px 25px;
  position: relative;
}

.modal-title {
  font-weight: 700;
  font-size: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.about-company {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-size: 19px;
  font-weight: 500;
  width: 37px;
  height: 37px;
  background: #954e0a;
  border: 1px solid #aa7426;
  cursor: pointer;
}

/* Custom Close Button */
.btn-close-custom {
  position: absolute;
  top: 22px;
  right: 15px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: all 0.3s ease;
  z-index: 1050;
}

.btn-close-custom:hover {
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  transform: rotate(90deg);
}

.btn-close-custom:before,
.btn-close-custom:after {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  background-color: white;
}

.btn-close-custom:before {
  transform: rotate(45deg);
}

.btn-close-custom:after {
  transform: rotate(-45deg);
}

.modal-body {
  padding: 25px;
}

.modal-body h5 {
  color: var(--modal-primary);
  font-weight: 600;
  margin-bottom: 15px;
  border-bottom: 2px solid var(--modal-secondary);
  padding-bottom: 8px;
  position: relative;
}

.modal-body h5:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--modal-accent);
}

.modal-body p {
  color: #555;
  line-height: 1.6;
}

.modal-body ul {
  padding-left: 20px;
}

.modal-body li {
  margin-bottom: 8px;
  color: #555;
}

.modal-footer {
  background-color: #f9f9f9;
  border-top: 1px solid #eee;
  padding: 15px 25px;
  border-radius: 0 0 16px 16px;
}

.contact-info a {
  color: var(--modal-primary);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

.contact-info a:hover {
  color: var(--modal-accent);
  text-decoration: underline;
}

.benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 8px 12px;
  background: rgba(147, 98, 25, 0.05);
  border-radius: 8px;
}

.benefit-icon {
  margin-right: 12px;
  font-size: 1.3rem;
  color: var(--modal-primary);
  min-width: 24px;
  text-align: center;
}

.business-hours {
  background: linear-gradient(
    to right,
    rgba(147, 98, 25, 0.1),
    rgba(137, 64, 1, 0.1)
  );
  border-left: 3px solid var(--modal-primary);
}

.modal-logo {
  width: 60px;
  height: 60px;
  /* background: linear-gradient(135deg, var(--modal-primary), var(--modal-accent)); */
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  margin: 0 auto 15px auto;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); */
}

.btn:first-child:active {
    color: var(--bs-btn-active-color);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .form-card .card-body {
    padding: 20px;
  }

  .footer-buttons {
    padding: 15px;
    flex-direction: column;
  }

  .footer-buttons .btn {
    width: 100%;
  }
}


@media (max-width: 576px) {
  body {
    padding: 80px 0 137px 0;
  }

  .hero-section {
    height: 220px;
  }

  .banner-slide {
    font-size: 1.4rem;
    padding: 15px;
  }

  .form-card .card-header {
    padding: 15px 20px;
    font-size: 1.1rem;
  }

  .form-control,
  .form-select {
    padding: 12px 15px;
  }

  .modal-header {
    padding: 15px 20px 10px 20px;
  }

  .modal-body {
    padding: 20px;
  }

  .btn-close-custom {
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
  }
}

.report-problem-btn {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  color: white;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(147, 98, 25, 0.3);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 15px 0;
  text-decoration: none;
  width: fit-content;
}

.report-problem-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(147, 98, 25, 0.4);
  color: white;
}

.modal-body > div:first-child {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
