@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap");
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7);
  }
}
@keyframes slowZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #2c2c2c;
  background: #ffffff;
  overflow-x: hidden;
  animation: fadeIn 0.5s ease-out;
}

main {
  margin-top: 105px;
}
@media (max-width: 992px) {
  main {
    margin-top: 75px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 2.25rem);
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: #666666;
}

a {
  color: #d71923;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #b01419;
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }
}

.container-fluid {
  width: 100%;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) {
  .container-fluid {
    padding: 0 3rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: #d71923;
  color: #ffffff;
  box-shadow: 0 10px 40px rgba(215, 25, 35, 0.3);
}
.btn-primary:hover {
  background: #b01419;
  transform: translateY(-2px);
  color: #ffffff;
  box-shadow: 0 15px 45px rgba(215, 25, 35, 0.4);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.btn-outline:hover {
  background: #ffffff;
  color: #d71923;
}

.section {
  padding: 2rem 0;
}
.section.light-bg {
  background: #f8f9fa;
}
.section.p-4 {
  padding: 4rem 0rem;
}
.section.p-5 {
  padding: 5rem 0rem;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}
.section-title h2 {
  margin-bottom: 1rem;
}
.section-title p {
  font-size: 1.125rem;
  color: #999999;
  max-width: 600px;
  margin: 0 auto;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-5px);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  max-height: 105px;
}
.header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
  background: rgb(255, 255, 255);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .navbar {
    padding: 1.5rem 0;
  }
}

.logo {
  height: 40px;
  width: auto;
  transition: all 0.3s ease;
}
@media (min-width: 1024px) {
  .logo {
    height: 50px;
  }
}
.logo:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: none;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
  }
}

.nav-item {
  position: relative;
}
.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-link {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #2c2c2c;
  position: relative;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 1rem;
}
.nav-link i {
  font-size: 0.7rem;
  transition: transform 0.3s;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #d71923, #ff2831);
  transition: width 0.3s ease;
  border-radius: 9999px;
}
.nav-link:hover {
  color: #d71923;
}
.nav-link:hover::after {
  width: 100%;
}
.nav-link:hover i {
  transform: rotate(180deg);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .header-actions {
    display: flex;
  }
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(215, 25, 35, 0.1), rgba(255, 40, 49, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d71923;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.social-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #d71923, #ff2831);
  opacity: 0;
  transition: opacity 0.3s;
}
.social-icon i {
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}
.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(215, 25, 35, 0.3);
}
.social-icon:hover::before {
  opacity: 1;
}
.social-icon:hover i {
  color: #ffffff;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 1rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin-top: 1.5rem;
  z-index: 1000;
}
.dropdown-menu .dropdown-item {
  display: block;
  padding: 1rem 1.5rem;
  color: #2c2c2c;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}
.dropdown-menu .dropdown-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 60%;
  background: #d71923;
  transition: width 0.3s;
  border-radius: 0 4px 4px 0;
}
.dropdown-menu .dropdown-item:hover {
  background: rgba(215, 25, 35, 0.08);
  color: #d71923;
  padding-left: calc(1.5rem + 8px);
}
.dropdown-menu .dropdown-item:hover::before {
  width: 4px;
}

.mobile-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 1100;
}
@media (min-width: 1024px) {
  .mobile-toggle {
    display: none;
  }
}
.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: #1a1a1a;
  border-radius: 9999px;
  transition: all 0.3s ease;
}
.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: #ffffff;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  z-index: 1050;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
  padding-top: 72px;
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu .mobile-menu-header {
  padding: 2rem;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu .mobile-menu-header .logo {
  height: 35px;
}
.mobile-menu .mobile-nav-list {
  list-style: none;
  padding: 1.5rem 0;
}
.mobile-menu .mobile-nav-item {
  border-bottom: 1px solid #f3f4f6;
}
.mobile-menu .mobile-nav-item.has-dropdown > .mobile-nav-link::after {
  content: "\f107";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  margin-left: auto;
  transition: transform 0.3s;
}
.mobile-menu .mobile-nav-item.open > .mobile-nav-link::after {
  transform: rotate(180deg);
}
.mobile-menu .mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 1.5rem 2rem;
  color: #2c2c2c;
  font-weight: 500;
  transition: all 0.3s ease;
}
.mobile-menu .mobile-nav-link i {
  margin-right: 1rem;
  width: 20px;
  color: #d71923;
}
.mobile-menu .mobile-nav-link:hover {
  background: rgba(215, 25, 35, 0.05);
  color: #d71923;
}
.mobile-menu .mobile-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f9fafb;
}
.mobile-menu .mobile-dropdown.open {
  max-height: 500px;
}
.mobile-menu .mobile-dropdown .mobile-dropdown-item {
  display: block;
  padding: 1rem 2rem 1rem calc(2rem + 35px);
  color: #666666;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}
.mobile-menu .mobile-dropdown .mobile-dropdown-item:hover {
  color: #d71923;
  background: rgba(215, 25, 35, 0.05);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  color: #ffffff;
  padding: 60px 0 0 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d71923 0%, #ff5032 25%, #d71923 50%, #ff5032 75%, #d71923 100%);
  background-size: 200% 100%;
  animation: gradientMove 4s ease-in-out infinite;
}
.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(215, 25, 35, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255, 80, 50, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

@keyframes gradientMove {
  0%, 100% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 200% 0%;
  }
}
.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}
@media (min-width: 576px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 24px;
  }
}
@media (min-width: 992px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr 1.3fr;
    gap: 32px;
    padding: 0 32px;
  }
}
@media (min-width: 1200px) {
  .footer-content {
    padding: 0 40px;
  }
}

.footer-section {
  animation: fadeInUp 0.6s ease-out backwards;
}
.footer-section:nth-child(1) {
  animation-delay: 0.1s;
}
.footer-section:nth-child(2) {
  animation-delay: 0.2s;
}
.footer-section:nth-child(3) {
  animation-delay: 0.3s;
}
.footer-section:nth-child(4) {
  animation-delay: 0.4s;
}
.footer-section:nth-child(5) {
  animation-delay: 0.5s;
}
.footer-section h4 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
  letter-spacing: 0.5px;
}
.footer-section h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: linear-gradient(90deg, #d71923, #ff5032);
  border-radius: 999px;
  transition: width 0.3s ease;
}
.footer-section:hover h4::after {
  width: 50px;
}
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-section li {
  margin-bottom: 10px;
  transition: transform 0.2s ease;
}
.footer-section li:hover {
  transform: translateX(4px);
}
.footer-section li:last-child {
  margin-bottom: 0;
}
.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-section a:hover {
  color: #ffffff;
}
.footer-section a:hover i {
  transform: translateX(3px);
}
.footer-section a i {
  font-size: 0.65rem;
  transition: all 0.3s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer-brand .logo {
  width: 140px;
  height: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 8px rgba(215, 25, 35, 0.3));
  transition: filter 0.3s ease;
}
.footer-brand .logo:hover {
  filter: drop-shadow(0 4px 12px rgba(215, 25, 35, 0.5));
}
.footer-brand .footer-intro {
  margin-bottom: 24px;
}
.footer-brand .footer-intro p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  font-size: 0.875rem;
  margin-bottom: 12px;
}
.footer-brand .footer-intro p:last-child {
  margin-bottom: 0;
}

.footer-brand-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .footer-brand-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.footer-certs-section {
  margin-bottom: 0;
}
.footer-certs-section .certs-title {
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.3px;
}
.footer-certs-section .certs-title::before {
  content: "";
  width: 3px;
  height: 16px;
  background: linear-gradient(180deg, #d71923, #ff5032);
  border-radius: 99px;
}

.footer-certs-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 90px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.cert-item .cert-image {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.cert-item .cert-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(215, 25, 35, 0.08), rgba(255, 80, 50, 0.08));
  opacity: 0;
  transition: opacity 0.35s ease;
}
.cert-item .cert-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.88;
  filter: grayscale(0.25) brightness(0.95);
  transition: all 0.35s ease;
  position: relative;
  z-index: 1;
}
.cert-item .cert-label {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
  transition: color 0.35s ease;
  max-width: 90px;
}
.cert-item:hover {
  transform: translateY(-5px);
}
.cert-item:hover .cert-image {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(215, 25, 35, 0.35);
  box-shadow: 0 8px 24px rgba(215, 25, 35, 0.18);
}
.cert-item:hover .cert-image::after {
  opacity: 1;
}
.cert-item:hover .cert-image img {
  opacity: 1;
  filter: grayscale(0) brightness(1.08);
  transform: scale(1.05);
}
.cert-item:hover .cert-label {
  color: #ffffff;
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .footer-social {
    justify-content: flex-start;
  }
}
.footer-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 11px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  text-decoration: none;
  overflow: hidden;
}
.footer-social a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(215, 25, 35, 0.15), rgba(255, 80, 50, 0.15));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.footer-social a i {
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-social a:hover {
  background: linear-gradient(135deg, #d71923, #ff5032);
  border-color: transparent;
  color: #ffffff !important;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(215, 25, 35, 0.35);
}
.footer-social a:hover::before {
  opacity: 0;
}
.footer-social a:hover i {
  transform: scale(1.1) rotate(-3deg);
}
.footer-social a:nth-child(1):hover {
  background: linear-gradient(135deg, #1877f2, #0d65d9);
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.35);
}
.footer-social a:nth-child(2):hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  box-shadow: 0 8px 20px rgba(225, 48, 108, 0.35);
}
.footer-social a:nth-child(3):hover {
  background: linear-gradient(135deg, #1da1f2, #0d8bd9);
  box-shadow: 0 8px 20px rgba(29, 161, 242, 0.35);
}
.footer-social a:nth-child(4):hover {
  background: linear-gradient(135deg, #ff0000, #cc0000);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.35);
}
.footer-social a:nth-child(5):hover {
  background: linear-gradient(135deg, #25d366, #20ba5a);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.footer-contact-list {
  list-style: none !important;
  padding: 0;
  margin: 0;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  padding: 0;
  border-bottom: none;
  transition: all 0.3s ease;
}
.footer-contact-list li:last-child {
  margin-bottom: 0;
}
.footer-contact-list li:hover {
  padding-left: 4px;
}
.footer-contact-list li:hover i {
  color: #ff5032;
  transform: scale(1.1);
}
.footer-contact-list li i {
  color: #d71923;
  font-size: 0.875rem;
  min-width: 16px;
  margin-top: 3px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.footer-contact-list li span,
.footer-contact-list li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
  transition: color 0.3s ease;
}
.footer-contact-list li a {
  text-decoration: none;
}
.footer-contact-list li a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 40px;
  background: rgba(0, 0, 0, 0.4);
}
.footer-bottom .container {
  padding: 28px 20px;
}
@media (min-width: 576px) {
  .footer-bottom .container {
    padding: 28px 24px;
  }
}
@media (min-width: 768px) {
  .footer-bottom .container {
    padding: 28px 32px;
  }
}
@media (min-width: 992px) {
  .footer-bottom .container {
    padding: 28px 40px;
  }
}
.footer-bottom .footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .footer-bottom .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}
.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8125rem;
  line-height: 1.5;
}
.footer-bottom .footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 575px) {
  .footer-bottom .footer-bottom-links {
    justify-content: center;
    gap: 16px;
  }
}
.footer-bottom .footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8125rem;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 2px;
}
.footer-bottom .footer-bottom-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d71923, #ff5032);
  transition: width 0.3s ease;
  border-radius: 2px;
}
.footer-bottom .footer-bottom-links a:hover {
  color: #d71923;
}
.footer-bottom .footer-bottom-links a:hover::after {
  width: 100%;
}

.footer-float-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}
.footer-float-actions .whatsapp-float {
  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, #25d366 0%, #20ba5a 50%, #1fa855 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 2.2rem;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), 0 0 0 0 rgba(37, 211, 102, 0.5), 0 8px 35px rgba(37, 211, 102, 0.6), inset 0 2px 10px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  animation: whatsappFloat 3s ease-in-out infinite;
}
.footer-float-actions .whatsapp-float::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent);
  top: 0;
  left: 0;
  animation: rotate 4s linear infinite;
}
.footer-float-actions .whatsapp-float::after {
  content: "";
  position: absolute;
  width: 110%;
  height: 110%;
  border-radius: 50%;
  border: 3px solid rgba(37, 211, 102, 0.3);
  top: -5%;
  left: -5%;
  animation: ripple 2s ease-out infinite;
}
.footer-float-actions .whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(37, 211, 102, 0.9), 0 0 70px rgba(37, 211, 102, 0.6), 0 0 100px rgba(37, 211, 102, 0.4), 0 12px 50px rgba(37, 211, 102, 0.8), inset 0 2px 15px rgba(255, 255, 255, 0.5);
}
.footer-float-actions .whatsapp-float i {
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.footer-float-actions .whatsapp-float:hover i {
  transform: scale(1.2);
}

@keyframes whatsappFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes ripple {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 768px) {
  .footer-float-actions {
    bottom: 20px;
    right: 20px;
  }
  .footer-float-actions .whatsapp-float {
    width: 65px;
    height: 65px;
    font-size: 1.8rem;
  }
}
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 100px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #d71923, #ff5032);
  border: none;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.125rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(215, 25, 35, 0.3);
  z-index: 998;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 6px 28px rgba(215, 25, 35, 0.5);
}
.back-to-top i {
  transition: transform 0.3s ease;
}
.back-to-top:hover i {
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .footer {
    padding: 40px 0 0 0;
  }
  .footer-content {
    gap: 32px;
  }
  .footer-brand .logo {
    width: 120px;
  }
  .cert-item {
    width: 80px;
  }
  .cert-item .cert-image {
    width: 80px;
    height: 80px;
  }
  .cert-item .cert-label {
    font-size: 0.6875rem;
    max-width: 80px;
  }
  .footer-social a {
    width: 38px;
    height: 38px;
    font-size: 0.875rem;
  }
  .footer-float-actions {
    bottom: 20px;
    right: 20px;
  }
  .footer-float-actions .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  .back-to-top {
    bottom: 20px;
    right: 85px;
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
}
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
  }
}
@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.back-to-top {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, rgba(215, 25, 35, 0.9), rgba(255, 80, 50, 0.9));
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #ffffff;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  box-shadow: 0 4px 15px rgba(215, 25, 35, 0.3);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: linear-gradient(135deg, #ff5032, #d71923);
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(215, 25, 35, 0.5);
}
.back-to-top:hover i {
  animation: bounceUp 0.6s ease-in-out infinite;
}
.back-to-top:active {
  transform: translateY(-2px) scale(0.95);
}
@media (max-width: 575px) {
  .back-to-top {
    width: 44px;
    height: 44px;
    font-size: 0.9375rem;
  }
}

@keyframes bounceUp {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
.cta-section {
  background: linear-gradient(135deg, #d71923 0%, #b01419 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-section::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-section .cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-section .cta-content h2 {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.cta-section .cta-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section .cta-content .btn {
  background: #ffffff;
  color: #d71923;
  padding: 14px 36px;
  font-size: 1.0625rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-section .cta-content .btn:hover {
  background: #f5f5f5;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.cta-section .cta-content .btn:hover i {
  transform: translateX(4px);
}
.cta-section .cta-content .btn i {
  transition: transform 0.3s ease;
}

.testimonial-card {
  background: #ffffff;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: rgba(215, 25, 35, 0.1);
  line-height: 1;
}
.testimonial-card .rating {
  display: flex;
  gap: 4px;
  margin-bottom: 1rem;
}
.testimonial-card .rating .star {
  color: #fbbf24;
  font-size: 1.125rem;
}
.testimonial-card .testimonial-text {
  margin-bottom: 1.5rem;
  font-style: italic;
  color: #666666;
  line-height: 1.7;
}
.testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-card .testimonial-author .avatar {
  width: 50px;
  height: 50px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #d71923, #ff5032);
  flex-shrink: 0;
}
.testimonial-card .testimonial-author .author-info h5 {
  margin: 0;
  color: #1a1a1a;
  font-size: 1rem;
}
.testimonial-card .testimonial-author .author-info p {
  margin: 0;
  font-size: 0.875rem;
  color: #999999;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: #d71923;
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(215, 25, 35, 0.4);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(215, 25, 35, 0.6);
}

.blog-section {
  background: #f8f9fa;
}
.blog-section.p-0 {
  padding: 0;
}
.blog-section.p-b-5 {
  padding-bottom: 5rem;
}
.blog-section .blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .blog-section .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .blog-section .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.blog-section h2 {
  padding: 1rem 0 3rem 0;
  text-align: center;
}
@media (max-width: 992px) {
  .blog-section h2 {
    padding: 1rem 0 2rem 0;
  }
}
.blog-section .blog-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.blog-section .blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.blog-section .blog-card:hover .blog-image img {
  transform: scale(1.1);
}
.blog-section .blog-card .blog-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.blog-section .blog-card .blog-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-section .blog-card .blog-image .blog-category {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: #d71923;
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.blog-section .blog-card .blog-image .blog-category a {
  color: #ffffff;
}
.blog-section .blog-card .blog-content {
  padding: 3rem;
}
.blog-section .blog-card .blog-content .blog-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #999999;
}
.blog-section .blog-card .blog-content .blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.blog-section .blog-card .blog-content .blog-meta span i {
  color: #d71923;
}
.blog-section .blog-card .blog-content h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-section .blog-card .blog-content h3 a {
  color: #1a1a1a;
  transition: all 0.3s ease;
}
.blog-section .blog-card .blog-content h3 a:hover {
  color: #d71923;
}
.blog-section .blog-card .blog-content p {
  color: #666666;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-section .blog-card .blog-content .read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #d71923;
  font-weight: 600;
  transition: all 0.3s ease;
}
.blog-section .blog-card .blog-content .read-more i {
  transition: transform 0.3s;
}
.blog-section .blog-card .blog-content .read-more:hover {
  gap: 1rem;
}
.blog-section .blog-card .blog-content .read-more:hover i {
  transform: translateX(5px);
}
.blog-section .pagination {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  gap: 0.5rem;
}
.blog-section .pagination a,
.blog-section .pagination span {
  padding: 0.75rem 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid #e5e7eb;
  background: #ffffff;
  color: #2c2c2c;
  transition: all 0.3s ease;
}
.blog-section .pagination a:hover,
.blog-section .pagination span:hover {
  background: #d71923;
  border-color: #d71923;
  color: #ffffff;
}
.blog-section .pagination a.current,
.blog-section .pagination span.current {
  background: #d71923;
  color: #ffffff;
  border-color: #d71923;
}

.visa-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  z-index: 10000;
  overflow-y: auto;
  padding: 20px 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.visa-popup-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}
.visa-popup-overlay.active .visa-popup-container {
  transform: translateY(0) scale(1);
  opacity: 1;
}
@media (min-width: 640px) {
  .visa-popup-overlay {
    padding: 0;
    align-items: flex-start;
  }
}

.visa-popup-container {
  background: #ffffff;
  border-radius: 24px;
  max-width: 920px;
  width: 95%;
  margin: auto;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  transform: translateY(30px) scale(0.95);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (min-width: 640px) {
  .visa-popup-container {
    width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }
}

.visa-popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ffffff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 100;
  transition: all 0.3s ease;
}
.visa-popup-close i {
  font-size: 18px;
  color: #2c2c2c;
  transition: all 0.3s ease;
}
.visa-popup-close:hover {
  background: #d71923;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 6px 20px rgba(215, 25, 35, 0.4);
}
.visa-popup-close:hover i {
  color: #ffffff;
}

.visa-popup-content {
  padding: 45px 50px;
  overflow-y: auto;
  flex: 1;
}
@media (min-width: 768px) {
  .visa-popup-content {
    padding: 35px 30px;
  }
}
@media (min-width: 640px) {
  .visa-popup-content {
    padding: 30px 20px;
  }
}

.visa-popup-header {
  text-align: center;
  margin-bottom: 35px;
}
.visa-popup-header .header-icon {
  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, #d71923, #ff2831);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 12px 35px rgba(215, 25, 35, 0.35);
}
.visa-popup-header .header-icon i {
  font-size: 34px;
  color: #ffffff;
}
.visa-popup-header h2 {
  font-size: 30px;
  color: #1a1a1a;
  margin-bottom: 14px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.visa-popup-header .header-description {
  color: #666666;
  line-height: 1.65;
  margin-bottom: 10px;
  font-size: 15px;
}
.visa-popup-header .header-description strong {
  color: #d71923;
  font-weight: 700;
}
.visa-popup-header .header-note {
  color: #999999;
  font-size: 13px;
  line-height: 1.5;
}
.visa-popup-header .header-note a {
  color: #d71923;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s ease;
}
.visa-popup-header .header-note a:hover {
  color: #b01419;
}

.form-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
  padding: 22px;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: 16px;
}
@media (min-width: 640px) {
  .form-progress {
    padding: 18px;
  }
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
}
.progress-step .step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 17px;
  color: #94a3b8;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
@media (min-width: 640px) {
  .progress-step .step-number {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }
}
.progress-step .step-label {
  font-size: 13px;
  color: #94a3b8;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.3s ease;
}
@media (max-width: 992px) {
  .progress-step .step-label {
    display: none;
  }
}
@media (min-width: 640px) {
  .progress-step .step-label {
    font-size: 11px;
  }
}
.progress-step.active .step-number {
  background: #d71923;
  border-color: #d71923;
  color: #ffffff;
  box-shadow: 0 0 0 5px rgba(215, 25, 35, 0.15), 0 4px 12px rgba(215, 25, 35, 0.3);
  transform: scale(1.1);
}
.progress-step.active .step-label {
  color: #d71923;
  font-weight: 700;
}
.progress-step.completed .step-number {
  background: #22c55e;
  border-color: #22c55e;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
  font-size: 0;
}
.progress-step.completed .step-number::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
}
@media (min-width: 640px) {
  .progress-step.completed .step-number::before {
    font-size: 16px;
  }
}
.progress-step.completed .step-label {
  color: #22c55e;
}

.progress-line {
  width: 75px;
  height: 3px;
  background: #e2e8f0;
  margin: 0 12px;
  position: relative;
  top: -20px;
  border-radius: 2px;
}
@media (max-width: 992px) {
  .progress-line {
    top: 0px;
  }
}
@media (min-width: 640px) {
  .progress-line {
    width: 40px;
    margin: 0 8px;
  }
}

.form-step {
  display: none;
  animation: fadeInUp 0.4s ease;
}
.form-step.active {
  display: block;
}

.step-title {
  font-size: 24px;
  color: #1a1a1a;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 2px solid #f1f5f9;
  font-weight: 700;
}
.step-title i {
  color: #d71923;
  font-size: 22px;
}

.form-grid-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-bottom: 28px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 28px;
}
@media (max-width: 991px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
  font-size: 14px;
  letter-spacing: -0.2px;
}
.form-group label .required-star {
  color: #d71923;
  font-size: 16px;
  font-weight: 700;
  margin-right: 2px;
}
.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=tel],
.form-group input[type=date],
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  background: #ffffff;
  color: #2c2c2c;
}
.form-group input[type=text]:focus,
.form-group input[type=email]:focus,
.form-group input[type=tel]:focus,
.form-group input[type=date]:focus,
.form-group select:focus {
  outline: none;
  border-color: #d71923;
  box-shadow: 0 0 0 5px rgba(215, 25, 35, 0.08);
  background: rgba(215, 25, 35, 0.01);
}
.form-group input[type=text]::-moz-placeholder, .form-group input[type=email]::-moz-placeholder, .form-group input[type=tel]::-moz-placeholder, .form-group input[type=date]::-moz-placeholder, .form-group select::-moz-placeholder {
  color: #94a3b8;
}
.form-group input[type=text]::placeholder,
.form-group input[type=email]::placeholder,
.form-group input[type=tel]::placeholder,
.form-group input[type=date]::placeholder,
.form-group select::placeholder {
  color: #94a3b8;
}
.form-group input[type=text].input-error,
.form-group input[type=email].input-error,
.form-group input[type=tel].input-error,
.form-group input[type=date].input-error,
.form-group select.input-error {
  border-color: #ef4444;
  animation: shake 0.4s ease;
}
.form-group input[type=text]::-webkit-datetime-edit,
.form-group input[type=email]::-webkit-datetime-edit,
.form-group input[type=tel]::-webkit-datetime-edit,
.form-group input[type=date]::-webkit-datetime-edit,
.form-group select::-webkit-datetime-edit {
  color: #94a3b8;
  font-size: 0.875rem;
}
.form-group select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='%23475569' d='M11.293 4.293L7 8.586 2.707 4.293A1 1 0 001.293 5.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 45px;
}

.radio-group-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 640px) {
  .radio-group-modern {
    grid-template-columns: 1fr;
  }
}

.radio-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 14px 18px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: #ffffff;
}
.radio-option input[type=radio] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.radio-option input[type=radio]:checked ~ .radio-circle {
  border-color: #d71923;
  background: #d71923;
  box-shadow: 0 0 0 5px rgba(215, 25, 35, 0.1);
}
.radio-option input[type=radio]:checked ~ .radio-circle::after {
  transform: translate(-50%, -50%) scale(1);
}
.radio-option input[type=radio]:checked ~ .radio-text {
  color: #d71923;
  font-size: 0.75rem;
  font-weight: 700;
}
.radio-option .radio-circle {
  width: 24px;
  height: 24px;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.radio-option .radio-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-radius: 50%;
  transition: transform 0.2s ease;
}
.radio-option .radio-text {
  font-size: 0.75rem;
  font-weight: 500;
  color: #2c2c2c;
  transition: all 0.3s ease;
}
.radio-option:hover {
  border-color: #d71923;
  background: rgba(215, 25, 35, 0.02);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.checkbox-small {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.checkbox-small input[type=checkbox] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #d71923;
}
.checkbox-small label {
  font-size: 13px;
  color: #666666;
  cursor: pointer;
  margin: 0;
  font-weight: 500;
}

.feature-box-modern {
  background: linear-gradient(135deg, #ffe5e7, #ffcdd2);
  border: 2px solid #d71923;
  border-radius: 16px;
  padding: 20px;
  margin: 28px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 16px;
}
.feature-box-modern:hover {
  box-shadow: 0 12px 32px rgba(215, 25, 35, 0.3);
  transform: translateY(-3px);
}
.feature-box-modern input[type=checkbox] {
  width: 24px;
  height: 24px;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: #d71923;
}
.feature-box-modern label {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  flex: 1;
  margin: 0;
}
.feature-box-modern .feature-icon-modern {
  width: 48px;
  height: 48px;
  background: #d71923;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(215, 25, 35, 0.3);
}
.feature-box-modern .feature-icon-modern i {
  font-size: 22px;
  color: #ffffff;
}
.feature-box-modern .feature-content-modern {
  flex: 1;
}
.feature-box-modern .feature-content-modern h4 {
  font-size: 17px;
  color: #1a1a1a;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.feature-box-modern .feature-content-modern h4 .badge-price {
  background: #d71923;
  color: #ffffff;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(215, 25, 35, 0.3);
}
.feature-box-modern .feature-content-modern p {
  font-size: 13px;
  color: #5a0a0e;
  margin: 0;
  line-height: 1.4;
  font-weight: 500;
}

.feature-box-modern-health {
  background: linear-gradient(135deg, #e0f2f1, #b2dfdb);
  border: 2px solid #00897b;
  border-radius: 16px;
  padding: 20px;
  margin: 28px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 16px;
}
.feature-box-modern-health:hover {
  box-shadow: 0 12px 32px rgba(0, 137, 123, 0.3);
  transform: translateY(-3px);
}
.feature-box-modern-health input[type=checkbox] {
  width: 24px;
  height: 24px;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: #00897b;
}
.feature-box-modern-health label {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  flex: 1;
  margin: 0;
}
.feature-box-modern-health .feature-icon-modern {
  width: 48px;
  height: 48px;
  background: #00897b;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 137, 123, 0.3);
}
.feature-box-modern-health .feature-icon-modern i {
  font-size: 22px;
  color: #ffffff;
}
.feature-box-modern-health .feature-content-modern {
  flex: 1;
}
.feature-box-modern-health .feature-content-modern h4 {
  font-size: 17px;
  color: #1a1a1a;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.feature-box-modern-health .feature-content-modern h4 .badge-price {
  background: #00897b;
  color: #ffffff;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 137, 123, 0.3);
}
.feature-box-modern-health .feature-content-modern p {
  font-size: 13px;
  color: #004d40;
  margin: 0;
  line-height: 1.4;
  font-weight: 500;
}

.express-warning {
  background: linear-gradient(135deg, #fff3cd, #ffe69c);
  border: 2px solid #ffc107;
  border-radius: 12px;
  padding: 16px 20px;
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 16px;
  animation: slideDown 0.3s ease;
}
.express-warning i {
  font-size: 32px;
  color: #ff6b00;
  flex-shrink: 0;
}
.express-warning .express-warning-content {
  flex: 1;
}
.express-warning .express-warning-content strong {
  display: block;
  font-size: 16px;
  color: #1a1a1a;
  margin-bottom: 4px;
  font-weight: 700;
}
.express-warning .express-warning-content p {
  font-size: 14px;
  color: #664d03;
  margin: 0;
  line-height: 1.4;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.upload-grid-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.upload-grid-modern .upload-card:last-child {
  grid-column: 1/-1;
}

.upload-card .upload-card-inner {
  border: 3px dashed #cbd5e1;
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #ffffff;
}
.upload-card .upload-card-inner:hover {
  border-color: #d71923;
  background: rgba(215, 25, 35, 0.02);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(215, 25, 35, 0.12);
}
.upload-card .upload-card-inner .upload-icon-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all 0.3s ease;
}
.upload-card .upload-card-inner .upload-icon-circle i {
  font-size: 26px;
  color: #d71923;
}
.upload-card .upload-card-inner h4 {
  font-size: 16px;
  color: #1a1a1a;
  margin-bottom: 6px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.upload-card .upload-card-inner h4 .required-badge {
  background: #d71923;
  color: #ffffff;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.upload-card .upload-card-inner h4 .optional-badge {
  background: #94a3b8;
  color: #ffffff;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.upload-card .upload-card-inner p {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 12px;
}
.upload-card .upload-card-inner .upload-status {
  font-size: 13px;
  color: #d71923;
  font-weight: 600;
  display: inline-block;
  padding: 8px 16px;
  background: rgba(215, 25, 35, 0.1);
  border-radius: 20px;
}
.upload-card:hover .upload-card-inner .upload-icon-circle {
  transform: scale(1.15);
  background: linear-gradient(135deg, rgba(215, 25, 35, 0.15), rgba(215, 25, 35, 0.08));
}
.upload-card.optional-card .upload-card-inner {
  border-style: dotted;
  opacity: 0.9;
}

.upload-box.uploaded,
.upload-card.uploaded .upload-card-inner {
  border-color: #22c55e !important;
  background: rgba(34, 197, 94, 0.05) !important;
  border-style: solid !important;
}
.upload-box.uploaded .upload-status,
.upload-card.uploaded .upload-card-inner .upload-status {
  background: rgba(34, 197, 94, 0.15) !important;
  color: #22c55e !important;
}
.upload-box.uploaded .upload-icon-circle,
.upload-card.uploaded .upload-card-inner .upload-icon-circle {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.08)) !important;
}
.upload-box.uploaded .upload-icon-circle i,
.upload-card.uploaded .upload-card-inner .upload-icon-circle i {
  color: #22c55e !important;
}

.terms-box-modern {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: 16px;
  padding: 22px;
  margin: 28px 0;
}

.checkbox-modern {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border-radius: 12px;
  transition: all 0.3s ease;
  margin-bottom: 12px;
}
.checkbox-modern:last-child {
  margin-bottom: 0;
}
.checkbox-modern.required-check {
  background: rgba(215, 25, 35, 0.06);
  border: 2px solid rgba(215, 25, 35, 0.2);
}
.checkbox-modern:hover {
  background: rgba(215, 25, 35, 0.02);
}
.checkbox-modern input[type=checkbox] {
  width: 22px;
  height: 22px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #d71923;
}
.checkbox-modern label {
  flex: 1;
  font-size: 13px;
  color: #666666;
  cursor: pointer;
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  font-weight: 500;
}
.checkbox-modern label i {
  color: #d71923;
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 15px;
}
.checkbox-modern label a {
  color: #d71923;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s ease;
}
.checkbox-modern label a:hover {
  color: #b01419;
}

.form-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  padding-top: 28px;
  border-top: 2px solid #f1f5f9;
  margin-top: 28px;
}
.form-actions:has(.btn-prev), .form-actions:has(.btn-outline) {
  justify-content: space-between;
}
@media (min-width: 640px) {
  .form-actions {
    flex-direction: column-reverse;
  }
}
.form-actions .btn {
  padding: 15px 32px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 150px;
  justify-content: center;
  letter-spacing: -0.2px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
@media (min-width: 640px) {
  .form-actions .btn {
    width: 100%;
  }
}
.form-actions .btn i {
  transition: transform 0.3s ease;
}
.form-actions .btn.btn-primary:hover i {
  transform: translateX(5px);
}
.form-actions .btn.btn-prev i, .form-actions .btn.btn-outline i {
  order: -1;
}
.form-actions .btn.btn-prev:hover i, .form-actions .btn.btn-outline:hover i {
  transform: translateX(-5px);
}
.form-actions .btn-outline {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  color: #2c2c2c;
}
.form-actions .btn-outline:hover {
  background: #ffffff;
  border-color: #d71923;
  color: #d71923;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(215, 25, 35, 0.15);
}
.form-actions .btn-primary {
  background: linear-gradient(135deg, #d71923, #b01419);
  border: none;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(215, 25, 35, 0.3);
}
.form-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(215, 25, 35, 0.4);
}
.form-actions .btn-success {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border: none;
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(34, 197, 94, 0.35);
}
.form-actions .btn-success:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(34, 197, 94, 0.45);
}

.error-group {
  animation: shake 0.4s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-8px);
  }
  75% {
    transform: translateX(8px);
  }
}
.upload-card-inner.uploaded {
  border-color: #22c55e !important;
  background: rgba(34, 197, 94, 0.05) !important;
  border-style: solid !important;
}
.upload-card-inner.uploaded .upload-status {
  background: rgba(34, 197, 94, 0.15) !important;
  color: #22c55e !important;
}
.upload-card-inner.uploaded .upload-icon-circle {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.08)) !important;
}
.upload-card-inner.uploaded .upload-icon-circle i {
  color: #22c55e !important;
}

.form-actions {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 2px solid #f1f5f9;
  margin-top: 28px;
}
@media (min-width: 640px) {
  .form-actions {
    flex-direction: column-reverse;
  }
}
.form-actions .btn {
  padding: 15px 32px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 150px;
  justify-content: center;
  letter-spacing: -0.2px;
  transition: all 0.3s ease;
}
@media (min-width: 640px) {
  .form-actions .btn {
    width: 100%;
  }
}
.form-actions .btn i {
  transition: transform 0.3s ease;
}
.form-actions .btn:hover i {
  transform: translateX(5px);
}
.form-actions .btn.btn-prev:hover i, .form-actions .btn.btn-outline:hover i:first-child {
  transform: translateX(-5px);
}
.form-actions .btn-success {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border: none;
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(34, 197, 94, 0.35);
}
.form-actions .btn-success:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(34, 197, 94, 0.45);
}

.post-navigation-link-next,
.post-navigation-link-previous,
.wp-block-post-navigation-link {
  display: none !important;
  visibility: hidden;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
}

.wp-block-post-navigation-link__arrow-next,
.wp-block-post-navigation-link__arrow-previous {
  display: none !important;
}

.wp-block-kadence-advancedheading.has-theme-palette-9-color {
  display: none !important;
}

.header-cart-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(215, 25, 35, 0.08), rgba(255, 40, 49, 0.08));
  color: #d71923;
  transition: all 0.3s ease;
}
.header-cart-button i {
  font-size: 1.125rem;
  transition: transform 0.3s ease;
}
.header-cart-button .cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  background: #d71923;
  color: white;
  border-radius: 10px;
  font-size: 0.6875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  box-shadow: 0 2px 8px rgba(215, 25, 35, 0.4);
  animation: cartBounce 0.5s ease;
}
.header-cart-button:hover {
  background: linear-gradient(135deg, #d71923, #ff2831);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(215, 25, 35, 0.3);
}
.header-cart-button:hover i {
  transform: scale(1.1);
}
.header-cart-button:active {
  transform: translateY(0) scale(0.95);
}

.mobile-cart-button {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(215, 25, 35, 0.08), rgba(255, 40, 49, 0.08));
  border-radius: 12px;
  color: #d71923;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  transition: all 0.3s ease;
}
.mobile-cart-button i {
  font-size: 1.25rem;
}
.mobile-cart-button span:not(.cart-count) {
  flex: 1;
}
.mobile-cart-button .cart-count {
  min-width: 24px;
  height: 24px;
  background: #d71923;
  color: white;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
}
.mobile-cart-button:hover {
  background: linear-gradient(135deg, #d71923, #ff2831);
  color: white !important;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(215, 25, 35, 0.3);
}

@keyframes cartBounce {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.cart-count.pulse {
  animation: cartPulse 0.6s ease;
}

@keyframes cartPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
}
.header-actions {
  gap: 1.75rem;
}

@media (min-width: 1024px) {
  .cart-button {
    width: 46px;
    height: 46px;
  }
  .cart-button i {
    font-size: 1.25rem;
  }
}
.form-success-message {
  background: linear-gradient(135deg, #d4edda, #c3e6cb);
  border: 2px solid #28a745;
  border-radius: 16px;
  padding: 50px 30px;
  text-align: center;
  margin: 30px 0;
  animation: successFadeIn 0.5s ease;
}
.form-success-message .success-icon {
  margin-bottom: 20px;
}
.form-success-message .success-icon i {
  font-size: 80px;
  color: #28a745;
  animation: successBounce 0.6s ease;
}
.form-success-message h3 {
  font-size: 28px;
  color: #155724;
  margin-bottom: 15px;
  font-weight: 700;
}
.form-success-message p {
  font-size: 16px;
  color: #155724;
  margin-bottom: 25px;
  line-height: 1.6;
}
.form-success-message .success-info {
  background: rgba(40, 167, 69, 0.1);
  border-radius: 8px;
  padding: 15px 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.form-success-message .success-info i {
  font-size: 20px;
  color: #28a745;
}
.form-success-message .success-info span {
  font-size: 14px;
  color: #155724;
  font-weight: 600;
}

@keyframes successFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes successBounce {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}
.hero {
  position: relative;
  height: 550px;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  /*
  &::after {
     content: "";
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 200px;
     background: linear-gradient(to bottom, rgba(248, 249, 250, 0) 0%, rgba(248, 249, 250, 0.4) 25%, rgba(248, 249, 250, 0.7) 50%, rgba(248, 249, 250, 0.9) 75%, #f8f9fa 100%);
     z-index: 1;
     pointer-events: none;
     @media (max-width: 992px) {
        content: none;
     }
  }
     */
  /*
  &.hero-single {
     &::after {
        background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.8) 70%, #fff 100%);
     }
  }*/
}
.hero .swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(215, 25, 35, 0.03), rgba(255, 80, 50, 0.02));
  z-index: 1;
  pointer-events: none;
}
.hero .hero-bg {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
@media (max-width: 992px) {
  .hero .hero-bg {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.hero .hero-bg.single {
  -o-object-position: center center;
     object-position: center center;
}
@media (max-width: 992px) {
  .hero .hero-bg.single {
    height: 400px;
  }
}
.hero .hero-content {
  z-index: 10;
  color: #ffffff;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.hero .hero-content h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  opacity: 0;
  animation: fadeInCenter 0.8s ease-out 0.2s forwards;
}
.hero .hero-content h1 .highlight {
  position: relative;
  display: inline-block;
}
.hero .hero-content h1 .highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 15px;
  background: rgba(255, 255, 255, 0.3);
  z-index: -1;
  transform: skew(-12deg);
}
.hero .hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeInCenter 0.8s ease-out 0.4s forwards;
}
.hero .hero-content .hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeInCenter 0.8s ease-out 0.6s forwards;
}
.hero .hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.hero .hero-shapes .shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.hero .hero-shapes .shape.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}
.hero .hero-shapes .shape.shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 15%;
  animation: float 8s ease-in-out infinite;
}
.hero .hero-shapes .shape.shape-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  right: 30%;
  animation: float 7s ease-in-out infinite;
}
.hero .hero-button-prev,
.hero .hero-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #d71923;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.hero .hero-button-prev:hover,
.hero .hero-button-next:hover {
  background: #d71923;
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(215, 25, 35, 0.4);
}
.hero .hero-button-prev:active,
.hero .hero-button-next:active {
  transform: translateY(-50%) scale(0.95);
}
.hero .hero-button-prev svg,
.hero .hero-button-next svg {
  width: 24px;
  height: 24px;
}
@media (max-width: 768px) {
  .hero .hero-button-prev,
  .hero .hero-button-next {
    width: 40px;
    height: 40px;
  }
  .hero .hero-button-prev svg,
  .hero .hero-button-next svg {
    width: 20px;
    height: 20px;
  }
}
.hero .hero-button-prev {
  left: 30px;
}
@media (max-width: 768px) {
  .hero .hero-button-prev {
    left: 15px;
  }
}
.hero .hero-button-next {
  right: 30px;
}
@media (max-width: 768px) {
  .hero .hero-button-next {
    right: 15px;
  }
}
.hero .swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.hero .swiper-button-disabled:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #d71923;
  transform: translateY(-50%) scale(1);
}

@keyframes fadeInCenter {
  from {
    opacity: 0;
    transform: translate(0, 30px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fadeInCenter {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.news-slider-section {
  background: #ffffff;
  padding: 4rem 0;
  overflow: hidden;
}
.news-slider-section .section-title {
  margin-bottom: 3rem;
}
.news-slider-section .swiper {
  width: 100%;
  padding-bottom: 50px;
}
.news-slider-section .swiper-slide {
  height: auto;
}
.news-slider-section .news-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: all 0.3s ease;
}
.news-slider-section .news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.news-slider-section .news-card .news-image {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-slider-section .news-card .news-content {
  padding: 2rem;
}
.news-slider-section .news-card .news-content .news-date {
  display: inline-block;
  background: rgba(215, 25, 35, 0.1);
  color: #d71923;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.news-slider-section .news-card .news-content h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-slider-section .news-card .news-content p {
  color: #666666;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-slider-section .swiper-pagination-bullet {
  background: #d71923;
  width: 10px;
  height: 10px;
  opacity: 0.3;
}
.news-slider-section .swiper-pagination-bullet-active {
  opacity: 1;
  width: 30px;
  border-radius: 5px;
}

.pricing-section {
  background: #f8f9fa;
}
.pricing-section .pricing-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
.pricing-section .category-btn {
  padding: 0.5rem 2rem;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 9999px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: #2c2c2c;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pricing-section .category-btn:hover {
  border-color: #d71923;
  color: #d71923;
}
.pricing-section .category-btn.active {
  background: #d71923;
  border-color: #d71923;
  color: #ffffff;
}
.pricing-section .pricing-category-content {
  display: none;
}
.pricing-section .pricing-category-content.active {
  display: block;
}
.pricing-section .pricing-grid-scroll {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .pricing-section .pricing-grid-scroll {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .pricing-section .pricing-cols-1 {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
@media (min-width: 768px) {
  .pricing-section .pricing-cols-2 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (min-width: 768px) {
  .pricing-section .pricing-cols-3 {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (min-width: 768px) {
  .pricing-section .pricing-cols-4 {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}
@media (min-width: 768px) {
  .pricing-section .pricing-cols-5 {
    grid-template-columns: repeat(5, 1fr) !important;
  }
}
@media (min-width: 768px) {
  .pricing-section .pricing-cols-6 {
    grid-template-columns: repeat(6, 1fr) !important;
  }
}
@media (min-width: 768px) {
  .pricing-section .pricing-cols-7 {
    grid-template-columns: repeat(7, 1fr) !important;
  }
}
@media (min-width: 768px) {
  .pricing-section .pricing-cols-8 {
    grid-template-columns: repeat(8, 1fr) !important;
  }
}
@media (min-width: 768px) {
  .pricing-section .pricing-cols-9 {
    grid-template-columns: repeat(9, 1fr) !important;
  }
}
@media (min-width: 768px) {
  .pricing-section .pricing-cols-10 {
    grid-template-columns: repeat(10, 1fr) !important;
  }
}
.pricing-section .pricing-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  position: relative;
  overflow: visible;
}
.pricing-section .pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #d71923, #ff2831);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  border-radius: 16px 16px 0 0;
}
.pricing-section .pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-color: #d71923;
}
.pricing-section .pricing-card:hover::before {
  transform: scaleX(1);
}
.pricing-section .pricing-card.featured {
  border-color: #d71923;
}
.pricing-section .pricing-card.featured::before {
  transform: scaleX(1);
}
.pricing-section .pricing-card.featured .badge {
  display: inline-block;
}
.pricing-section .pricing-card .badge {
  display: none;
  position: absolute;
  top: -12px;
  right: 4rem;
  background: #d71923;
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  z-index: 10;
  animation: badgePulse 2s ease-in-out infinite;
}
.pricing-section .pricing-card .pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-top: 0.5rem;
}
.pricing-section .pricing-card .pricing-header h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}
.pricing-section .pricing-card .pricing-header .duration {
  font-size: 0.875rem;
  color: #999999;
  margin-bottom: 1.5rem;
}
.pricing-section .pricing-card .pricing-header .price {
  font-size: 2.25rem;
  font-weight: 800;
  color: #d71923;
}
.pricing-section .pricing-card .pricing-header .price span {
  font-size: 1.125rem;
  font-weight: 400;
  color: #999999;
}
.pricing-section .pricing-card .pricing-features {
  list-style: none;
  margin-bottom: 3rem;
}
.pricing-section .pricing-card .pricing-features li {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #666666;
  border-bottom: 1px solid #f3f4f6;
}
.pricing-section .pricing-card .pricing-features li:last-child {
  border-bottom: none;
}
.pricing-section .pricing-card .pricing-features li i {
  color: #22c55e;
  font-size: 0.875rem;
  flex-shrink: 0;
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.info-alert {
  background: linear-gradient(135deg, rgba(215, 25, 35, 0.05), rgba(255, 100, 50, 0.05));
  border: 2px solid rgba(215, 25, 35, 0.2);
  border-radius: 16px;
  padding: 3rem;
  margin: 4rem 0;
}
.info-alert h3 {
  color: #d71923;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.info-alert h3 i {
  font-size: 1.5rem;
}
.info-alert p {
  color: #2c2c2c;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.info-alert p:last-child {
  margin-bottom: 0;
}

.documents-section .documents-content {
  margin: 20px 0px;
}
.documents-section .documents-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #2c2c2c;
  margin: 2.5rem 0 1.5rem;
  line-height: 1.3;
}
.documents-section .documents-content h2:first-child {
  margin-top: 0;
}
.documents-section .documents-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c2c2c;
  margin: 2rem 0 1rem;
}
.documents-section .documents-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 1.5rem;
}
.documents-section .documents-content ul,
.documents-section .documents-content ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}
.documents-section .documents-content ul li,
.documents-section .documents-content ol li {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 0.75rem;
}
.documents-section .documents-content ul li::marker,
.documents-section .documents-content ol li::marker {
  color: #d71923;
}
.documents-section .documents-content blockquote {
  margin: 2.5rem 0;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, rgba(215, 25, 35, 0.05) 0%, rgba(215, 25, 35, 0.02) 100%);
  border-left: 4px solid #d71923;
  border-radius: 8px;
  font-style: italic;
  color: #374151;
}
.documents-section .documents-content blockquote p {
  margin: 0;
  font-size: 1.25rem;
}
.documents-section .documents-content img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 2rem 0;
}
.documents-section .documents-grid {
  display: grid;
  gap: 1.5rem;
  justify-items: stretch;
  align-items: stretch;
}
@media (min-width: 768px) {
  .documents-section .documents-grid.documents-cols-1 {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
@media (max-width: 992px) {
  .documents-section .documents-grid.documents-cols-1 {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 768px) {
  .documents-section .documents-grid.documents-cols-2 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 992px) {
  .documents-section .documents-grid.documents-cols-2 {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 768px) {
  .documents-section .documents-grid.documents-cols-3 {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 992px) {
  .documents-section .documents-grid.documents-cols-3 {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 768px) {
  .documents-section .documents-grid.documents-cols-4 {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}
@media (max-width: 992px) {
  .documents-section .documents-grid.documents-cols-4 {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 768px) {
  .documents-section .documents-grid.documents-cols-5 {
    grid-template-columns: repeat(5, 1fr) !important;
  }
}
@media (max-width: 992px) {
  .documents-section .documents-grid.documents-cols-5 {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 768px) {
  .documents-section .documents-grid.documents-cols-6 {
    grid-template-columns: repeat(6, 1fr) !important;
  }
}
@media (max-width: 992px) {
  .documents-section .documents-grid.documents-cols-6 {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 768px) {
  .documents-section .documents-grid.documents-cols-7 {
    grid-template-columns: repeat(7, 1fr) !important;
  }
}
@media (max-width: 992px) {
  .documents-section .documents-grid.documents-cols-7 {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 768px) {
  .documents-section .documents-grid.documents-cols-8 {
    grid-template-columns: repeat(8, 1fr) !important;
  }
}
@media (max-width: 992px) {
  .documents-section .documents-grid.documents-cols-8 {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 768px) {
  .documents-section .documents-grid.documents-cols-9 {
    grid-template-columns: repeat(9, 1fr) !important;
  }
}
@media (max-width: 992px) {
  .documents-section .documents-grid.documents-cols-9 {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 768px) {
  .documents-section .documents-grid.documents-cols-10 {
    grid-template-columns: repeat(10, 1fr) !important;
  }
}
@media (max-width: 992px) {
  .documents-section .documents-grid.documents-cols-10 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.documents-section .documents-grid.three-cols {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 992px) {
  .documents-section .documents-grid.three-cols {
    grid-template-columns: repeat(1, 1fr);
  }
}
.documents-section .document-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  text-align: center;
  padding: 2rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
@media (min-width: 768px) {
  .documents-section .document-card {
    padding: 1rem;
  }
}
.documents-section .document-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: rgba(215, 25, 35, 0.3);
}
.documents-section .document-card .document-icon {
  width: 80px;
  height: 100px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .documents-section .document-card .document-icon {
    width: 100px;
    height: 120px;
  }
}
.documents-section .document-card .document-icon::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
}
.documents-section .document-card .document-icon img {
  width: 70%;
  height: 70%;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .documents-section .document-card .document-icon img {
    width: 80%;
    height: 80%;
  }
}
.documents-section .document-card h4,
.documents-section .document-card h3 {
  font-size: 0.875rem;
  margin-top: 20px;
  margin-bottom: 0;
  font-weight: 600;
}
@media (min-width: 768px) {
  .documents-section .document-card h4,
  .documents-section .document-card h3 {
    font-size: 1rem;
  }
}
.documents-section .document-card p {
  color: #666666;
  font-size: 0.875rem;
}
.documents-section.documents-inner-page .documents-inner-layout {
  margin-top: 3rem;
}
.documents-section.documents-inner-page .documents-inner-layout.layout-side-by-side .document-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid rgba(215, 25, 35, 0.1);
}
.documents-section.documents-inner-page .documents-inner-layout.layout-side-by-side .document-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
@media (max-width: 992px) {
  .documents-section.documents-inner-page .documents-inner-layout.layout-side-by-side .document-item {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
  }
}
.documents-section.documents-inner-page .documents-inner-layout.layout-side-by-side .document-item.image-left .document-visual {
  order: 1;
}
.documents-section.documents-inner-page .documents-inner-layout.layout-side-by-side .document-item.image-left .document-text-content {
  order: 2;
}
.documents-section.documents-inner-page .documents-inner-layout.layout-side-by-side .document-item.image-right .document-visual {
  order: 2;
}
.documents-section.documents-inner-page .documents-inner-layout.layout-side-by-side .document-item.image-right .document-text-content {
  order: 1;
}
@media (max-width: 992px) {
  .documents-section.documents-inner-page .documents-inner-layout.layout-side-by-side .document-item.image-right .document-visual {
    order: 1;
  }
  .documents-section.documents-inner-page .documents-inner-layout.layout-side-by-side .document-item.image-right .document-text-content {
    order: 2;
  }
}
.documents-section.documents-inner-page .documents-inner-layout.layout-stacked {
  max-width: 900px;
  margin: 3rem auto 0;
}
.documents-section.documents-inner-page .documents-inner-layout.layout-stacked .document-item {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(215, 25, 35, 0.1);
}
.documents-section.documents-inner-page .documents-inner-layout.layout-stacked .document-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.documents-section.documents-inner-page .documents-inner-layout.layout-stacked .document-item .document-visual {
  margin-bottom: 3rem;
}
.documents-section.documents-inner-page .documents-inner-layout .document-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.documents-section.documents-inner-page .documents-inner-layout .document-visual:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.documents-section.documents-inner-page .documents-inner-layout .document-visual:hover .visual-overlay {
  opacity: 0.15;
}
.documents-section.documents-inner-page .documents-inner-layout .document-visual:hover img {
  transform: scale(1.05);
}
.documents-section.documents-inner-page .documents-inner-layout .document-visual .visual-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  overflow: hidden;
}
@media (max-width: 992px) {
  .documents-section.documents-inner-page .documents-inner-layout .document-visual .visual-wrapper {
    padding-bottom: 60%;
  }
}
.documents-section.documents-inner-page .documents-inner-layout .document-visual img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.documents-section.documents-inner-page .documents-inner-layout .document-visual .visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(215, 25, 35, 0.2), rgba(215, 25, 35, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.documents-section.documents-inner-page .documents-inner-layout .document-text-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #2c2c2c;
  margin: 0 0 1.5rem;
  line-height: 1.3;
  position: relative;
  padding-bottom: 1rem;
}
@media (max-width: 992px) {
  .documents-section.documents-inner-page .documents-inner-layout .document-text-content h3 {
    font-size: 1.5rem;
  }
}
.documents-section.documents-inner-page .documents-inner-layout .document-text-content h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #d71923, transparent);
}
.documents-section.documents-inner-page .documents-inner-layout .document-text-content .description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 2rem;
}
.documents-section.documents-inner-page .documents-inner-layout .document-text-content .description p {
  margin-bottom: 1rem;
}
.documents-section.documents-inner-page .documents-inner-layout .document-text-content .description p:last-child {
  margin-bottom: 0;
}
.documents-section.documents-inner-page .documents-inner-layout .document-text-content .description ul,
.documents-section.documents-inner-page .documents-inner-layout .document-text-content .description ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}
.documents-section.documents-inner-page .documents-inner-layout .document-text-content .description ul li,
.documents-section.documents-inner-page .documents-inner-layout .document-text-content .description ol li {
  margin-bottom: 0.5rem;
}
.documents-section.documents-inner-page .documents-inner-layout .document-text-content .description ul li::marker,
.documents-section.documents-inner-page .documents-inner-layout .document-text-content .description ol li::marker {
  color: #d71923;
}
.documents-section.documents-inner-page .documents-inner-layout .document-text-content .description strong {
  color: #2c2c2c;
  font-weight: 600;
}
.documents-section.documents-inner-page .documents-inner-layout .document-text-content .document-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, #d71923, rgb(169.3125, 19.6875, 27.5625));
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(215, 25, 35, 0.3);
}
.documents-section.documents-inner-page .documents-inner-layout .document-text-content .document-link i {
  transition: transform 0.3s ease;
}
.documents-section.documents-inner-page .documents-inner-layout .document-text-content .document-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(215, 25, 35, 0.4);
}
.documents-section.documents-inner-page .documents-inner-layout .document-text-content .document-link:hover i {
  transform: translateX(5px);
}
.documents-section.documents-inner-page .documents-inner-layout .document-text-content .document-link:active {
  transform: translateY(0);
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) rotate(45deg);
  }
}
.destinations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .destinations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.destination-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 350px;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.destination-card:hover .destination-image {
  transform: scale(1.15);
}
.destination-card:hover .destination-content {
  background: linear-gradient(to top, rgba(215, 25, 35, 0.95), transparent);
}
.destination-card .destination-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.destination-card .destination-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: #ffffff;
  transition: background 0.3s ease;
  z-index: 2;
}
.destination-card .destination-content .destination-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}
.destination-card .destination-content .destination-price {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}
.destination-card .destination-content .destination-price span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

.services-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}
.services-section .services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .services-section .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .services-section .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.services-section .service-card {
  text-align: center;
  padding: 3rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.services-section .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #d71923, #ff2831);
  transition: left 0.4s;
}
.services-section .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.services-section .service-card:hover::before {
  left: 0;
}
.services-section .service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}
.services-section .service-card .service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(215, 25, 35, 0.1), rgba(255, 100, 50, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: transform 0.3s;
}
.services-section .service-card .service-icon img {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
}
.services-section .service-card h4 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.services-section .service-card p {
  color: #666666;
  font-size: 0.875rem;
}

.activities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .activities-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.activity-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 400px;
  cursor: pointer;
}
.activity-card .activity-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s;
}
.activity-card:hover .activity-image {
  transform: scale(1.1);
}
.activity-card .activity-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 60%, transparent 100%);
  color: #ffffff;
  transform: translateY(30%);
  transition: transform 0.4s;
  z-index: 2;
}
.activity-card:hover .activity-overlay {
  transform: translateY(0);
}
.activity-card .activity-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}
.activity-card .activity-desc {
  opacity: 0;
  transition: opacity 0.4s 0.1s;
  color: rgba(255, 255, 255, 0.95);
}
.activity-card:hover .activity-desc {
  opacity: 1;
}

.testimonials-section {
  background: linear-gradient(135deg, rgba(215, 25, 35, 0.05), rgba(255, 100, 50, 0.05));
}
.testimonials-section .testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .testimonials-section .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .testimonials-section .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.partners-section {
  padding: 4rem 0;
  background: #f8f9fa;
}
.partners-section .partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 640px) {
  .partners-section .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .partners-section .partners-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .partners-section .partners-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
.partners-section .partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  height: 100px;
  transition: all 0.3s ease;
}
.partners-section .partner-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.partners-section .partner-logo img {
  max-width: 100px;
  height: auto;
  opacity: 0.7;
  transition: opacity 0.3s;
  filter: grayscale(100%);
}
@media (min-width: 768px) {
  .partners-section .partner-logo img {
    max-width: 120px;
  }
}
.partners-section .partner-logo:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

.faq-section .faq-container {
  max-width: 900px;
  margin: 0 auto;
}
.faq-section .faq-item {
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-section .faq-item:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.faq-section .faq-item.active .faq-question {
  color: #d71923;
  background: rgba(215, 25, 35, 0.05);
}
.faq-section .faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: #d71923;
}
.faq-section .faq-item.active .faq-answer {
  max-height: 5000px;
  padding: 2rem;
  opacity: 1;
}
.faq-section .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 1.5rem;
}
.faq-section .faq-question:hover {
  color: #d71923;
  background: rgba(215, 25, 35, 0.02);
}
.faq-section .faq-question span {
  flex: 1;
  line-height: 1.6;
}
.faq-section .faq-question i {
  font-size: 1.125rem;
  color: #999999;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.faq-section .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  color: #2c2c2c;
  line-height: 1.8;
  font-size: 1rem;
  opacity: 0;
  padding: 0 2rem;
}
.faq-section .faq-answer > * {
  margin-bottom: 1.5rem;
}
.faq-section .faq-answer > *:last-child {
  margin-bottom: 0;
}
.faq-section .faq-answer p {
  color: #666666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.faq-section .faq-answer p:last-child {
  margin-bottom: 0;
}
.faq-section .faq-answer p strong,
.faq-section .faq-answer p b {
  color: #d71923;
  font-weight: 700;
}
.faq-section .faq-answer p em,
.faq-section .faq-answer p i {
  font-style: italic;
}
.faq-section .faq-answer p u {
  text-decoration: underline;
}
.faq-section .faq-answer p a {
  color: #d71923;
  text-decoration: underline;
  transition: all 0.3s ease;
}
.faq-section .faq-answer p a:hover {
  color: #b01419;
}
.faq-section .faq-answer h1,
.faq-section .faq-answer h2,
.faq-section .faq-answer h3,
.faq-section .faq-answer h4,
.faq-section .faq-answer h5,
.faq-section .faq-answer h6 {
  color: #1a1a1a;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
.faq-section .faq-answer h1:first-child,
.faq-section .faq-answer h2:first-child,
.faq-section .faq-answer h3:first-child,
.faq-section .faq-answer h4:first-child,
.faq-section .faq-answer h5:first-child,
.faq-section .faq-answer h6:first-child {
  margin-top: 0;
}
.faq-section .faq-answer h1 {
  font-size: 1.875rem;
}
.faq-section .faq-answer h2 {
  font-size: 1.5rem;
}
.faq-section .faq-answer h3 {
  font-size: 1.25rem;
}
.faq-section .faq-answer h4 {
  font-size: 1.125rem;
}
.faq-section .faq-answer h5 {
  font-size: 1rem;
}
.faq-section .faq-answer h6 {
  font-size: 0.875rem;
}
.faq-section .faq-answer ul,
.faq-section .faq-answer ol {
  padding-left: 0.5rem;
  margin: 1.5rem 0;
  color: #666666;
}
.faq-section .faq-answer ul li,
.faq-section .faq-answer ol li {
  margin-bottom: 1rem;
  line-height: 1.8;
  padding-left: 0.5rem;
  list-style: none;
}
.faq-section .faq-answer ul li ul,
.faq-section .faq-answer ul li ol,
.faq-section .faq-answer ol li ul,
.faq-section .faq-answer ol li ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.faq-section .faq-answer ul li p,
.faq-section .faq-answer ol li p {
  margin-bottom: 0.5rem;
}
.faq-section .faq-answer ul {
  list-style-type: disc;
}
.faq-section .faq-answer ul ul {
  list-style-type: circle;
}
.faq-section .faq-answer ul ul ul {
  list-style-type: square;
}
.faq-section .faq-answer ol {
  list-style-type: decimal;
}
.faq-section .faq-answer ol ol {
  list-style-type: lower-alpha;
}
.faq-section .faq-answer ol ol ol {
  list-style-type: lower-roman;
}
.faq-section .faq-answer blockquote {
  border-left: 4px solid #d71923;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: rgba(215, 25, 35, 0.05);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #2c2c2c;
}
.faq-section .faq-answer blockquote p {
  margin-bottom: 1rem;
}
.faq-section .faq-answer blockquote p:last-child {
  margin-bottom: 0;
}
.faq-section .faq-answer blockquote cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #999999;
  font-style: normal;
}
.faq-section .faq-answer blockquote cite::before {
  content: "— ";
}
.faq-section .faq-answer pre {
  background: #f5f5f5;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.5rem;
  overflow-x: auto;
  margin: 1.5rem 0;
  font-family: "Courier New", monospace;
  font-size: 0.875rem;
  line-height: 1.6;
}
.faq-section .faq-answer pre code {
  background: none;
  padding: 0;
  border: none;
  color: #2c2c2c;
}
.faq-section .faq-answer code {
  background: rgba(215, 25, 35, 0.1);
  color: #d71923;
  padding: 0.2em 0.4em;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
}
.faq-section .faq-answer table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}
.faq-section .faq-answer table thead {
  background: rgba(215, 25, 35, 0.1);
}
.faq-section .faq-answer table thead tr th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-weight: 600;
  color: #d71923;
  border-bottom: 2px solid #d71923;
}
.faq-section .faq-answer table tbody tr {
  border-bottom: 1px solid #f3f4f6;
}
.faq-section .faq-answer table tbody tr:last-child {
  border-bottom: none;
}
.faq-section .faq-answer table tbody tr:hover {
  background: rgba(215, 25, 35, 0.02);
}
.faq-section .faq-answer table tbody tr td {
  padding: 1rem 1.5rem;
  color: #666666;
  vertical-align: top;
}
.faq-section .faq-answer hr {
  border: none;
  height: 2px;
  background: linear-gradient(to right, transparent, #d71923, transparent);
  margin: 3rem 0;
}
.faq-section .faq-answer img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
  display: block;
}
.faq-section .faq-answer img.align-left {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1.5rem;
}
.faq-section .faq-answer img.align-right {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.faq-section .faq-answer img.align-center {
  margin-left: auto;
  margin-right: auto;
}
.faq-section .faq-answer figure {
  margin: 2rem 0;
}
.faq-section .faq-answer figure img {
  margin-bottom: 1rem;
}
.faq-section .faq-answer figure figcaption {
  font-size: 0.875rem;
  color: #999999;
  text-align: center;
  font-style: italic;
}
.faq-section .faq-answer iframe {
  max-width: 100%;
  border-radius: 8px;
  margin: 1.5rem 0;
}
.faq-section .faq-answer a {
  color: #d71923;
  text-decoration: underline;
  transition: all 0.3s ease;
}
.faq-section .faq-answer a:hover {
  color: #b01419;
  text-decoration: none;
}
.faq-section .faq-answer a:visited {
  color: rgb(169.3125, 19.6875, 27.5625);
}
.faq-section .faq-answer mark {
  background: rgba(215, 25, 35, 0.2);
  color: #1a1a1a;
  padding: 0.1em 0.3em;
  border-radius: 4px;
}
.faq-section .faq-answer del,
.faq-section .faq-answer s {
  text-decoration: line-through;
  opacity: 0.7;
}
.faq-section .faq-answer sup,
.faq-section .faq-answer sub {
  font-size: 0.75em;
  line-height: 0;
  position: relative;
}
.faq-section .faq-answer sup {
  top: -0.5em;
}
.faq-section .faq-answer sub {
  bottom: -0.25em;
}
.faq-section .faq-answer address {
  font-style: normal;
  line-height: 1.8;
  color: #666666;
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #d71923;
}
.faq-section .faq-answer dl {
  margin: 1.5rem 0;
}
.faq-section .faq-answer dl dt {
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.faq-section .faq-answer dl dd {
  margin-left: 2rem;
  color: #666666;
  margin-bottom: 1rem;
}
.faq-section .faq-answer kbd {
  background: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0.1em 0.4em;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.faq-section .faq-answer samp {
  font-family: "Courier New", monospace;
  background: #f5f5f5;
  padding: 0.2em 0.4em;
  border-radius: 4px;
}
.faq-section .faq-answer var {
  font-family: "Courier New", monospace;
  font-style: italic;
  color: #d71923;
}
.faq-section .faq-answer abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
}
.faq-section .faq-answer details {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}
.faq-section .faq-answer details summary {
  cursor: pointer;
  font-weight: 600;
  color: #d71923;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.faq-section .faq-answer details summary:hover {
  color: #b01419;
}
.faq-section .faq-answer details[open] summary {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}
.faq-section .faq-answer small {
  font-size: 0.875rem;
  color: #999999;
}
.faq-section .faq-answer::after {
  content: "";
  display: table;
  clear: both;
}

.dynamic-content-section {
  background: linear-gradient(135deg, rgba(215, 25, 35, 0.03), rgba(255, 100, 50, 0.03));
  padding: 6rem 0;
}
.dynamic-content-section .content-wrapper {
  background: #ffffff;
  border-radius: 24px;
  padding: 4rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .dynamic-content-section .content-wrapper {
    padding: 6rem;
  }
}
.dynamic-content-section .content-header {
  text-align: center;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 3px solid rgba(215, 25, 35, 0.1);
}
.dynamic-content-section .content-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}
.dynamic-content-section .content-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #d71923;
  border-radius: 9999px;
}
.dynamic-content-section .content-header .subtitle {
  font-size: 1.25rem;
  color: #d71923;
  font-weight: 600;
  margin-top: 2rem;
}
.dynamic-content-section .content-body p {
  font-size: 1.125rem;
  line-height: 1.9;
  color: #2c2c2c;
  margin-bottom: 2rem;
  text-align: justify;
}
.dynamic-content-section .content-body p:last-child {
  margin-bottom: 0;
}
.dynamic-content-section .content-body p strong {
  color: #d71923;
  font-weight: 700;
}
.dynamic-content-section .content-body ul,
.dynamic-content-section .content-body ol {
  margin: 2rem 0;
  padding-left: 3rem;
}
.dynamic-content-section .content-body ul li,
.dynamic-content-section .content-body ol li {
  font-size: 1.125rem;
  line-height: 1.9;
  color: #2c2c2c;
  margin-bottom: 1rem;
}
.dynamic-content-section .content-body ul li::marker,
.dynamic-content-section .content-body ol li::marker {
  color: #d71923;
}

.cta-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #d71923, #ff5032);
  z-index: 0;
}
.cta-section .cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  max-width: 700px;
  margin: 0 auto;
}
.cta-section .cta-content h2 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 4vw, 3rem);
}
.cta-section .cta-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
  margin-bottom: 3rem;
}
.cta-section .cta-content .btn {
  background: #ffffff;
  color: #d71923;
}
.cta-section .cta-content .btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
}

.online-visa-container {
  background: #ffffff;
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .online-visa-container {
    padding: 35px 30px;
  }
}
@media (min-width: 640px) {
  .online-visa-container {
    padding: 30px 20px;
    border-radius: 16px;
  }
}

.online-visa-header {
  text-align: center;
  margin-bottom: 40px;
}
.online-visa-header .header-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #d71923, #ff2831);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 12px 35px rgba(215, 25, 35, 0.35);
}
.online-visa-header .header-icon i {
  font-size: 36px;
  color: #ffffff;
}
.online-visa-header h2 {
  font-size: 32px;
  color: #1a1a1a;
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.online-visa-header .header-description {
  color: #666666;
  line-height: 1.7;
  margin-bottom: 12px;
  font-size: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.online-visa-header .header-description strong {
  color: #d71923;
  font-weight: 700;
}
.online-visa-header .header-note {
  color: #999999;
  font-size: 14px;
  line-height: 1.6;
}
.online-visa-header .header-note a {
  color: #d71923;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s ease;
}
.online-visa-header .header-note a:hover {
  color: #b01419;
}

.visa-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 991px) {
  .visa-info-cards {
    grid-template-columns: 1fr;
  }
}

.info-card {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}
.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(215, 25, 35, 0.15);
  border-color: rgba(215, 25, 35, 0.2);
  background: linear-gradient(135deg, #ffffff, #f8fafc);
}
.info-card .info-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #d71923, #b01419);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(215, 25, 35, 0.3);
}
.info-card .info-card-icon i {
  font-size: 28px;
  color: #ffffff;
  transition: transform 0.3s ease;
}
.info-card h4 {
  font-size: 20px;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.info-card p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
.info-card:hover .info-card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(215, 25, 35, 0.4);
}
.info-card:hover .info-card-icon i {
  transform: scale(1.1);
}

@media (min-width: 640px) {
  .info-card {
    padding: 2rem 1.5rem;
  }
  .info-card .info-card-icon {
    width: 60px;
    height: 60px;
  }
  .info-card .info-card-icon i {
    font-size: 24px;
  }
  .info-card h4 {
    font-size: 18px;
  }
  .info-card p {
    font-size: 14px;
  }
}
.breadcrumb-section {
  padding: 1.5rem 0;
  background: #f8f9fa;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: #666666;
  text-decoration: none;
  transition: 0.15s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.breadcrumb a:hover {
  color: #d71923;
}
.breadcrumb .separator {
  color: #999999;
  font-size: 0.7rem;
}
.breadcrumb .current {
  color: #2c2c2c;
  font-weight: 500;
}

.tour-hero {
  padding: 2rem 0;
  background: linear-gradient(to bottom, #f8f9fa, #ffffff);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.tour-hero-content .tour-hero-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}
@media (max-width: 768px) {
  .tour-hero-content .tour-hero-header {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.tour-hero-content .tour-hero-title {
  flex: 1;
}
.tour-hero-content .tour-hero-title .tour-category {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(215, 25, 35, 0.1);
  color: #d71923;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.tour-hero-content .tour-hero-title .tour-category i {
  font-size: 1rem;
}
.tour-hero-content .tour-hero-title h1 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #2c2c2c;
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .tour-hero-content .tour-hero-title h1 {
    font-size: 1.875rem;
  }
}
.tour-hero-content .tour-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: #666666;
  font-size: 0.875rem;
}
.tour-hero-content .tour-hero-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.tour-hero-content .tour-hero-meta .meta-item i {
  color: #d71923;
  font-size: 1rem;
}
.tour-hero-content .tour-hero-meta .meta-item strong {
  color: #2c2c2c;
  font-weight: 700;
}
.tour-hero-content .tour-hero-actions {
  display: flex;
  gap: 0.75rem;
}
.tour-hero-content .tour-hero-actions .btn-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  background: #ffffff;
  color: #2c2c2c;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
}
.tour-hero-content .tour-hero-actions .btn-icon:hover {
  border-color: #d71923;
  color: #d71923;
  transform: translateY(-2px);
}
.tour-hero-content .tour-hero-actions .btn-icon i {
  font-size: 1.1rem;
}

.tour-gallery-section {
  padding: 2rem 0 1rem 0;
}

.tour-gallery {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.tour-gallery .swiper {
  width: 100%;
  height: 500px;
}
@media (max-width: 768px) {
  .tour-gallery .swiper {
    height: 300px;
  }
}
.tour-gallery .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tour-gallery .swiper-button-next,
.tour-gallery .swiper-button-prev {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.tour-gallery .swiper-button-next::after,
.tour-gallery .swiper-button-prev::after {
  font-size: 1.2rem;
  color: #2c2c2c;
  font-weight: 700;
}
.tour-gallery .swiper-button-next:hover,
.tour-gallery .swiper-button-prev:hover {
  background: #ffffff;
  transform: scale(1.1);
}
.tour-gallery .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ffffff;
  opacity: 0.5;
}
.tour-gallery .swiper-pagination-bullet-active {
  opacity: 1;
  background: #d71923;
}

.tour-content-section {
  padding: 3rem 0;
}

.tour-content-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
}
@media (max-width: 1024px) {
  .tour-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.tour-main .tour-description {
  color: #666666;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.tour-main .tour-description strong {
  color: #2c2c2c;
  font-weight: 600;
}
.tour-main .tour-description:last-child {
  margin-bottom: 0;
}

.tour-package {
  background: #ffffff;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: 0.3s ease;
  position: relative;
}
.tour-package:hover {
  border-color: rgba(215, 25, 35, 0.3);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.tour-package:last-child {
  margin-bottom: 0;
}
.tour-package.tour-package-featured {
  border-color: #d71923;
  border-width: 3px;
  box-shadow: 0 10px 40px rgba(215, 25, 35, 0.3);
}
.tour-package.tour-package-featured .package-header .package-badge {
  background: linear-gradient(135deg, #d71923, #ff2831);
  box-shadow: 0 10px 40px rgba(215, 25, 35, 0.3);
}
.tour-package .package-ribbon {
  position: absolute;
  top: -12px;
  right: 2rem;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.package-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}
@media (max-width: 640px) {
  .package-header {
    flex-direction: column;
    gap: 1rem;
  }
}
.package-header .package-info {
  flex: 1;
}
.package-header .package-info .package-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}
.package-header .package-info .package-badge.package-badge-economy {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
}
.package-header .package-info .package-badge.package-badge-standard {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #ffffff;
}
.package-header .package-info .package-badge.package-badge-luxury {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: #ffffff;
}
.package-header .package-info .package-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2c2c2c;
  margin: 0;
}
.package-header .package-price {
  text-align: right;
}
@media (max-width: 640px) {
  .package-header .package-price {
    text-align: left;
  }
}
.package-header .package-price .price-amount {
  font-size: 2.25rem;
  font-weight: 800;
  color: #d71923;
  display: block;
  line-height: 1;
}
.package-header .package-price .price-unit {
  font-size: 0.875rem;
  color: #666666;
  font-weight: 500;
}

.package-details .package-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: rgba(215, 25, 35, 0.03);
  border-radius: 12px;
}
.package-details .package-specs .spec-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #666666;
}
.package-details .package-specs .spec-item i {
  color: #d71923;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.package-details .package-specs .spec-item strong {
  color: #2c2c2c;
  font-weight: 600;
}
.package-details .package-features {
  margin-bottom: 1.5rem;
}
.package-details .package-features h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 1rem;
}
.package-details .package-features .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.package-details .package-features .feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: #666666;
  line-height: 1.6;
}
.package-details .package-features .feature-list li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.package-details .package-features .feature-list li i {
  color: #10b981;
  font-size: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.package-details .package-actions {
  display: flex;
  gap: 10px;
  width: 100%;
}
.package-details .package-actions .btn {
  flex: 1;
  min-width: 0;
  font-size: 13px;
}
.package-details .package-actions .btn:only-child {
  flex: 1;
  width: 100%;
}
@media (max-width: 992px) {
  .package-details .package-actions {
    flex-direction: column;
  }
  .package-details .package-actions .btn {
    width: 100%;
  }
}

.info-boxes {
  display: grid;
  gap: 1.5rem;
}
.info-boxes .info-box {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(215, 25, 35, 0.03), rgba(215, 25, 35, 0.01));
  border-radius: 12px;
  border-left: 4px solid #d71923;
}
.info-boxes .info-box i {
  font-size: 2rem;
  color: #d71923;
  flex-shrink: 0;
  opacity: 0.8;
}
.info-boxes .info-box strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
}
.info-boxes .info-box p {
  color: #666666;
  line-height: 1.6;
  margin: 0.25rem 0;
  font-size: 0.875rem;
}

.content-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(215, 25, 35, 0.1);
}

.content-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .content-card {
    padding: 2rem 20px;
  }
}
.content-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.content-card:last-child {
  margin-bottom: 0;
}

.contact-card {
  background: linear-gradient(135deg, #d71923, #b01419) !important;
  color: #ffffff !important;
  border: none !important;
}
.contact-card .contact-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 768px) {
  .contact-card .contact-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.contact-card .contact-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}
.contact-card .contact-content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.contact-card .contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-card .contact-methods .contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: 0.3s ease;
}
.contact-card .contact-methods .contact-method:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(4px);
}
.contact-card .contact-methods .contact-method i {
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .contact-card .contact-visual {
    display: none;
  }
}
.contact-card .contact-visual i {
  font-size: 6rem;
  opacity: 0.2;
  color: #ffffff;
}

@media (max-width: 1024px) {
  .tour-sidebar {
    max-width: 600px;
    margin: 0 auto;
  }
}
.tour-sidebar .sidebar-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}
.tour-sidebar .sidebar-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.tour-sidebar .sidebar-card:last-child {
  margin-bottom: 0;
}
.tour-sidebar .sidebar-card.sticky-card {
  position: sticky;
  top: 140px;
  z-index: 10;
}
@media (max-width: 1024px) {
  .tour-sidebar .sidebar-card.sticky-card {
    position: static;
  }
}
.tour-sidebar .sidebar-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(215, 25, 35, 0.1);
}

.booking-card .booking-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.06);
}
.booking-card .booking-header .booking-price .price-label {
  font-size: 0.875rem;
  color: #666666;
  display: block;
  margin-bottom: 0.5rem;
}
.booking-card .booking-header .booking-price .price-main {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.booking-card .booking-header .booking-price .price-main .price-amount {
  font-size: 2.25rem;
  font-weight: 800;
  color: #d71923;
  line-height: 1;
}
.booking-card .booking-header .booking-price .price-main .price-unit {
  font-size: 0.875rem;
  color: #666666;
  font-weight: 500;
}
.booking-card .booking-header .booking-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(215, 25, 35, 0.1);
  border-radius: 9999px;
}
.booking-card .booking-header .booking-rating i {
  color: #ffd700;
  font-size: 1.1rem;
}
.booking-card .booking-header .booking-rating span {
  font-weight: 700;
  color: #2c2c2c;
}
.booking-card .booking-form .form-group {
  margin-bottom: 1.5rem;
}
.booking-card .booking-form .form-group:last-of-type {
  margin-bottom: 2rem;
}
.booking-card .booking-form .form-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}
.booking-card .booking-form .form-group label i {
  color: #d71923;
}
.booking-card .booking-form .form-group .form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  transition: 0.3s ease;
}
.booking-card .booking-form .form-group .form-control:focus {
  outline: none;
  border-color: #d71923;
  box-shadow: 0 0 0 3px rgba(215, 25, 35, 0.1);
}
.booking-card .booking-form .booking-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #666666;
}
.booking-card .booking-form .booking-note i {
  color: #10b981;
}

.feature-list-sidebar {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-list-sidebar li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  color: #666666;
}
.feature-list-sidebar li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.feature-list-sidebar li i {
  color: #10b981;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.feature-list-sidebar li span {
  flex: 1;
  font-size: 0.875rem;
}

.help-card {
  text-align: center;
  background: linear-gradient(135deg, rgba(215, 25, 35, 0.05), rgba(215, 25, 35, 0.02)) !important;
  border: 2px dashed rgba(215, 25, 35, 0.2) !important;
}
.help-card > i {
  font-size: 3rem;
  color: #d71923;
  margin-bottom: 1rem;
  opacity: 0.8;
}
.help-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 0.75rem;
}
.help-card p {
  color: #666666;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.related-tours-section {
  background: #f8f9fa;
  padding: 4rem 0;
}
.related-tours-section .destinations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) {
  .related-tours-section .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .related-tours-section .destinations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.related-tours-section .destination-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 400px;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}
.related-tours-section .destination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.related-tours-section .destination-card:hover .destination-image img {
  transform: scale(1.15);
}
.related-tours-section .destination-card:hover .destination-content {
  background: linear-gradient(to top, rgba(215, 25, 35, 0.95) 0%, rgba(215, 25, 35, 0.7) 50%, rgba(0, 0, 0, 0.4) 100%);
}
.related-tours-section .destination-card .destination-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.related-tours-section .destination-card .destination-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.related-tours-section .destination-card .destination-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #d71923;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 3;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.related-tours-section .destination-card .destination-content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.3) 100%);
  color: #ffffff;
  transition: background 0.3s ease;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.75rem;
}
.related-tours-section .destination-card .destination-content .destination-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}
.related-tours-section .destination-card .destination-content .destination-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  flex: 1;
}
.related-tours-section .destination-card .destination-content .destination-header .destination-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 0.4rem 0.75rem;
  border-radius: 9999px;
}
.related-tours-section .destination-card .destination-content .destination-header .destination-rating i {
  color: #ffd700;
  font-size: 0.9rem;
}
.related-tours-section .destination-card .destination-content .destination-header .destination-rating span {
  font-weight: 700;
  font-size: 0.875rem;
  color: #ffffff;
}
.related-tours-section .destination-card .destination-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.5;
}
.related-tours-section .destination-card .destination-content .destination-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0.5rem 0;
}
.related-tours-section .destination-card .destination-content .destination-features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
}
.related-tours-section .destination-card .destination-content .destination-features span i {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}
.related-tours-section .destination-card .destination-content .destination-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 0.5rem;
}
.related-tours-section .destination-card .destination-content .destination-footer .destination-price {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.related-tours-section .destination-card .destination-content .destination-footer .destination-price .price-from {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.related-tours-section .destination-card .destination-content .destination-footer .destination-price .price-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}
.related-tours-section .destination-card .destination-content .destination-footer .btn {
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  font-weight: 600;
  font-size: 0.875rem;
  transition: 0.3s ease;
}
.related-tours-section .destination-card .destination-content .destination-footer .btn:hover {
  background: #ffffff;
  color: #d71923;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-success {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}
.btn-success:hover {
  background: #128c7e;
  border-color: #128c7e;
}

@media (max-width: 768px) {
  .tour-content-grid {
    grid-template-columns: 1fr;
  }
  .tour-package {
    padding: 1.5rem;
  }
  .package-details .package-specs {
    grid-template-columns: 1fr;
  }
  .info-boxes .info-box {
    flex-direction: column;
    text-align: center;
  }
  .info-boxes .info-box i {
    font-size: 2.5rem;
  }
}
.single-blog-header {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.single-blog-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}
.single-blog-header img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.single-blog-header .container {
  position: relative;
  z-index: 2;
}
.single-blog-header-content {
  max-width: 800px;
  color: white;
}
.single-blog-header-content .blog-category {
  display: inline-block;
  background: #d71923;
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.single-blog-header-content .blog-category a {
  color: white;
}
.single-blog-header-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .single-blog-header-content h1 {
    font-size: 2rem;
  }
}
.single-blog-header-content .blog-meta {
  display: flex;
  gap: 2rem;
  font-size: 1rem;
  opacity: 0.95;
}
@media (max-width: 576px) {
  .single-blog-header-content .blog-meta {
    flex-direction: column;
    gap: 0.75rem;
  }
}
.single-blog-header-content .blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.single-blog-header-content .blog-meta span i {
  opacity: 0.8;
}
.single-blog-container {
  padding: 5rem 0;
  background: #f9fafb;
}
@media (max-width: 992px) {
  .single-blog-container {
    padding: 1rem 0;
  }
}
.single-blog-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .single-blog-content-wrapper {
    display: block;
  }
}
.single-blog-content {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
@media (max-width: 576px) {
  .single-blog-content {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }
}
.single-blog-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #2c2c2c;
  margin: 2.5rem 0 1.5rem;
  line-height: 1.3;
}
.single-blog-content h2:first-child {
  margin-top: 0;
}
.single-blog-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c2c2c;
  margin: 2rem 0 1rem;
}
.single-blog-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 1.5rem;
}
.single-blog-content iframe,
.single-blog-content embed {
  width: 100%;
}
.single-blog-content ul,
.single-blog-content ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}
.single-blog-content ul li,
.single-blog-content ol li {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 0.75rem;
}
.single-blog-content ul li::marker,
.single-blog-content ol li::marker {
  color: #d71923;
}
.single-blog-content blockquote {
  margin: 2.5rem 0;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, rgba(215, 25, 35, 0.05) 0%, rgba(215, 25, 35, 0.02) 100%);
  border-left: 4px solid #d71923;
  border-radius: 8px;
  font-style: italic;
  color: #374151;
}
.single-blog-content blockquote p {
  margin: 0;
  font-size: 1.25rem;
}
.single-blog-content img {
  width: 100% !important;
  height: auto;
  border-radius: 12px;
  margin: 2rem 0;
}
.single-blog-content .highlight-box {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
  border-left: 4px solid #f59e0b;
}
.single-blog-content .highlight-box p {
  margin: 0;
  color: #78350f;
  font-weight: 500;
}
.single-blog-content .highlight-box p:last-child {
  margin-bottom: 0;
}
.single-blog-content .social-share {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}
@media (max-width: 576px) {
  .single-blog-content .social-share {
    grid-template-columns: 1fr 1fr;
  }
}
.single-blog-content .social-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.single-blog-content .social-share a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s;
}
.single-blog-content .social-share a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.single-blog-content .social-share a:hover::before {
  left: 100%;
}
.single-blog-content .social-share a i {
  font-size: 1.25rem;
}
.single-blog-content .social-share a.facebook {
  background: linear-gradient(135deg, #1877f2 0%, #0d5dce 100%);
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}
.single-blog-content .social-share a.twitter {
  background: linear-gradient(135deg, #1da1f2 0%, #0c85d0 100%);
  box-shadow: 0 4px 15px rgba(29, 161, 242, 0.3);
}
.single-blog-content .social-share a.whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.single-blog-content .social-share a.linkedin {
  background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
  box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3);
}
@media (max-width: 992px) {
  .single-blog-sidebar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 20px;
  }
}
.single-blog-sidebar .sidebar-widget {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  margin-bottom: 2rem;
}
.single-blog-sidebar .recent-post-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 1rem;
  background: #f9fafb;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.single-blog-sidebar .recent-post-item:hover {
  background: #f3f4f6;
  transform: translateX(5px);
}
.single-blog-sidebar .recent-post-item:last-child {
  margin-bottom: 0;
}
.single-blog-sidebar .recent-post-item img {
  width: 90px;
  height: 90px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}
.single-blog-sidebar .recent-post-item .recent-post-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.single-blog-sidebar .recent-post-item .recent-post-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.single-blog-sidebar .recent-post-item .recent-post-content h4 a {
  color: #2c2c2c;
  text-decoration: none;
  transition: color 0.3s;
}
.single-blog-sidebar .recent-post-item .recent-post-content h4 a:hover {
  color: #d71923;
}
.single-blog-sidebar .recent-post-item .recent-post-content .post-date {
  font-size: 0.8rem;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.single-blog-sidebar .recent-post-item .recent-post-content .post-date i {
  font-size: 0.75rem;
}
.single-blog-sidebar .category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.single-blog-sidebar .category-list li {
  margin-bottom: 0.75rem;
}
.single-blog-sidebar .category-list li:last-child {
  margin-bottom: 0;
}
.single-blog-sidebar .category-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: #f9fafb;
  border-radius: 8px;
  text-decoration: none;
  color: #4b5563;
  font-weight: 500;
  transition: all 0.3s;
}
.single-blog-sidebar .category-list li a:hover {
  background: rgba(215, 25, 35, 0.1);
  color: #d71923;
  transform: translateX(5px);
}
.single-blog-sidebar .category-list li a .count {
  background: white;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
}
.single-blog-sidebar .tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.single-blog-sidebar .tags-list a {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: #f3f4f6;
  color: #4b5563;
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s;
}
.single-blog-sidebar .tags-list a:hover {
  background: #d71923;
  color: white;
  transform: translateY(-2px);
}

.related-posts {
  padding: 5rem 0;
  background: white;
}
.related-posts h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: #2c2c2c;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .related-posts h2 {
    font-size: 2rem;
  }
}
.related-posts .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
@media (max-width: 576px) {
  .related-posts .blog-grid {
    grid-template-columns: 1fr;
  }
}

.contracts-page .page-header {
  background: linear-gradient(135deg, #d71923 0%, #b01419 100%);
  padding: 4rem 0;
  text-align: center;
  color: white;
  position: relative;
}
.contracts-page .page-header .container {
  position: relative;
  z-index: 1;
}
.contracts-page .page-header h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
}
@media (max-width: 768px) {
  .contracts-page .page-header h1 {
    font-size: 2rem;
  }
}
.contracts-page .page-header p {
  font-size: 1.25rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
  color: white;
}
@media (max-width: 768px) {
  .contracts-page .page-header p {
    font-size: 1rem;
  }
}
.contracts-page .contracts-content {
  padding: 5rem 0;
  background: #f9fafb;
}
.contracts-page .contracts-container {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 24px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.contracts-page .contracts-tabs {
  display: flex;
  border-bottom: 2px solid #e5e7eb;
  background: #f9fafb;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.contracts-page .contracts-tabs::-webkit-scrollbar {
  height: 4px;
}
.contracts-page .contracts-tabs::-webkit-scrollbar-track {
  background: #f1f5f9;
}
.contracts-page .contracts-tabs::-webkit-scrollbar-thumb {
  background: #d71923;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .contracts-page .contracts-tabs {
    flex-wrap: nowrap;
  }
}
.contracts-page .tab-button {
  flex: 1;
  min-width: 200px;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  color: #6b7280;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .contracts-page .tab-button {
    flex: none;
    min-width: auto;
    padding: 1.25rem 1.5rem;
    font-size: 0.9rem;
  }
}
.contracts-page .tab-button i {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}
.contracts-page .tab-button:hover {
  color: #d71923;
  background: rgba(215, 25, 35, 0.05);
}
.contracts-page .tab-button:hover i {
  transform: scale(1.1);
}
.contracts-page .tab-button.active {
  color: #d71923;
  background: white;
}
.contracts-page .tab-button.active i {
  transform: scale(1.15);
}
.contracts-page .tab-content {
  display: none;
  padding: 3rem;
  animation: fadeInUp 0.5s ease;
}
@media (max-width: 768px) {
  .contracts-page .tab-content {
    padding: 2rem 1.5rem;
  }
}
.contracts-page .tab-content.active {
  display: block;
}
.contracts-page .content-section {
  margin-bottom: 3rem;
}
.contracts-page .content-section:last-child {
  margin-bottom: 0;
}
.contracts-page .content-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid #d71923;
  display: inline-block;
}
@media (max-width: 768px) {
  .contracts-page .content-section h2 {
    font-size: 1.5rem;
  }
}
.contracts-page .content-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c2c2c;
  margin: 2rem 0 1rem;
}
@media (max-width: 768px) {
  .contracts-page .content-section h3 {
    font-size: 1.25rem;
  }
}
.contracts-page .content-section h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c2c2c;
  margin: 1.5rem 0 1rem;
}
.contracts-page .content-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 1.5rem;
}
.contracts-page .content-section p:last-child {
  margin-bottom: 0;
}
.contracts-page .content-section ul,
.contracts-page .content-section ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}
.contracts-page .content-section ul li,
.contracts-page .content-section ol li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 1rem;
}
.contracts-page .content-section ul li::marker,
.contracts-page .content-section ol li::marker {
  color: #d71923;
  font-weight: 600;
}
.contracts-page .content-section ul ul,
.contracts-page .content-section ul ol,
.contracts-page .content-section ol ul,
.contracts-page .content-section ol ol {
  margin: 1rem 0;
}
.contracts-page .content-section strong {
  color: #2c2c2c;
  font-weight: 600;
}
.contracts-page .content-section a {
  color: #d71923;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s;
}
.contracts-page .content-section a:hover {
  color: #b01419;
}
.contracts-page .info-box {
  background: linear-gradient(135deg, rgba(215, 25, 35, 0.08) 0%, rgba(215, 25, 35, 0.03) 100%);
  border-left: 4px solid #d71923;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}
.contracts-page .info-box-icon {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contracts-page .info-box-icon i {
  font-size: 1.5rem;
  color: #d71923;
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.contracts-page .info-box-icon div {
  flex: 1;
}
.contracts-page .info-box h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 0.75rem;
}
.contracts-page .info-box p {
  margin: 0;
  color: #374151;
}
.contracts-page .info-box p:not(:last-child) {
  margin-bottom: 1rem;
}
.contracts-page .warning-box {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
  border-left: 4px solid #f59e0b;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}
.contracts-page .warning-box i {
  color: #f59e0b;
}
.contracts-page .warning-box h4 {
  color: #78350f;
}
.contracts-page .warning-box p {
  color: #78350f;
}
.contracts-page .content-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}
.contracts-page .content-table thead {
  background: linear-gradient(135deg, #d71923 0%, #b01419 100%);
  color: white;
}
.contracts-page .content-table thead th {
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
}
.contracts-page .content-table tbody tr {
  border-bottom: 1px solid #e5e7eb;
  transition: background 0.3s;
}
.contracts-page .content-table tbody tr:hover {
  background: #f9fafb;
}
.contracts-page .content-table tbody tr:last-child {
  border-bottom: none;
}
.contracts-page .content-table tbody td {
  padding: 1.25rem 1.5rem;
  color: #4b5563;
  font-size: 1rem;
}
.contracts-page .content-table tbody td:first-child {
  font-weight: 600;
  color: #2c2c2c;
}
.contracts-page .contact-section {
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  border-radius: 16px;
  padding: 2.5rem;
  margin-top: 3rem;
  text-align: center;
}
.contracts-page .contact-section h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 1rem;
}
.contracts-page .contact-section p {
  font-size: 1.05rem;
  color: #6b7280;
  margin-bottom: 2rem;
}
.contracts-page .contact-section .contact-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .contracts-page .contact-section .contact-buttons {
    flex-direction: column;
  }
}
.contracts-page .contact-section .contact-buttons a,
.contracts-page .contact-section .contact-buttons button {
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.contracts-page .contact-section .contact-buttons a i,
.contracts-page .contact-section .contact-buttons button i {
  font-size: 1.25rem;
}
.contracts-page .contact-section .contact-buttons a.btn-primary,
.contracts-page .contact-section .contact-buttons button.btn-primary {
  background: linear-gradient(135deg, #d71923 0%, #b01419 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(215, 25, 35, 0.3);
}
.contracts-page .contact-section .contact-buttons a.btn-primary:hover,
.contracts-page .contact-section .contact-buttons button.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(215, 25, 35, 0.4);
}
.contracts-page .contact-section .contact-buttons a.btn-outline,
.contracts-page .contact-section .contact-buttons button.btn-outline {
  background: white;
  color: #2c2c2c;
  border: 2px solid #e5e7eb;
}
.contracts-page .contact-section .contact-buttons a.btn-outline:hover,
.contracts-page .contact-section .contact-buttons button.btn-outline:hover {
  border-color: #d71923;
  color: #d71923;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.contracts-page .last-update {
  text-align: center;
  padding: 2rem;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  color: #6b7280;
  font-size: 0.95rem;
}
.contracts-page .last-update i {
  color: #d71923;
  margin-right: 0.5rem;
}
.contracts-page .last-update strong {
  color: #2c2c2c;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pricing-page .pricing-hero {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%), url("https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=1920") center/cover;
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .pricing-page .pricing-hero {
    padding: 5rem 0 5rem;
  }
}
.pricing-page .pricing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
}
.pricing-page .pricing-hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 992px) {
  .pricing-page .pricing-hero .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.pricing-page .pricing-hero .hero-content .hero-badge {
  display: inline-block;
  background: #d71923;
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}
.pricing-page .pricing-hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #2c2c2c;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
@media (max-width: 768px) {
  .pricing-page .pricing-hero .hero-content h1 {
    font-size: 2.5rem;
  }
}
.pricing-page .pricing-hero .hero-content h1 .highlight {
  color: #d71923;
  display: block;
  font-size: 4rem;
}
@media (max-width: 768px) {
  .pricing-page .pricing-hero .hero-content h1 .highlight {
    font-size: 3rem;
  }
}
.pricing-page .pricing-hero .hero-content p {
  font-size: 1.125rem;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.pricing-page .pricing-hero .hero-content .hero-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pricing-page .pricing-hero .hero-content .hero-features .feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.pricing-page .pricing-hero .hero-content .hero-features .feature-item i {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, rgba(215, 25, 35, 0.1) 0%, rgba(215, 25, 35, 0.05) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d71923;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.pricing-page .pricing-hero .hero-content .hero-features .feature-item span {
  font-size: 1rem;
  color: #2c2c2c;
  font-weight: 500;
}
.pricing-page .pricing-hero .hero-image {
  position: relative;
}
.pricing-page .pricing-hero .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.pricing-page .pricing-main {
  padding: 5rem 0;
  background: #f9fafb;
}
@media (max-width: 992px) {
  .pricing-page .pricing-main {
    padding: 2rem 0;
  }
}
.pricing-page .pricing-container {
  max-width: 900px;
  margin: 0 auto;
}
.pricing-page .pricing-table-card {
  background: white;
  border-radius: 24px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 3rem;
}
.pricing-page .pricing-table-card .card-header {
  background: linear-gradient(135deg, #d71923 0%, #b01419 100%);
  color: white;
  padding: 2rem;
  text-align: center;
}
.pricing-page .pricing-table-card .card-header h2 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0;
  color: white;
}
@media (max-width: 576px) {
  .pricing-page .pricing-table-card .card-header h2 {
    font-size: 1.5rem;
  }
}
.pricing-page .pricing-table-card .card-body {
  padding: 0;
}
.pricing-page .pricing-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2.5rem;
  border-bottom: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .pricing-page .pricing-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
  }
}
.pricing-page .pricing-item:hover {
  background: #f9fafb;
}
.pricing-page .pricing-item:last-child {
  border-bottom: none;
}
.pricing-page .pricing-item .item-content {
  flex: 1;
}
.pricing-page .pricing-item .item-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
}
@media (max-width: 576px) {
  .pricing-page .pricing-item .item-content h3 {
    font-size: 1.125rem;
  }
}
.pricing-page .pricing-item .item-content p {
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}
.pricing-page .pricing-item .item-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #d71923;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .pricing-page .pricing-item .item-price {
    font-size: 2rem;
    align-self: flex-start;
  }
}
@media (max-width: 576px) {
  .pricing-page .pricing-item .item-price {
    font-size: 1.75rem;
  }
}
.pricing-page .pricing-item .item-price sup {
  font-size: 1rem;
  font-weight: 600;
}
.pricing-page .pricing-item.featured {
  background: linear-gradient(135deg, rgba(215, 25, 35, 0.05) 0%, rgba(215, 25, 35, 0.02) 100%);
  border-left: 4px solid #d71923;
}
.pricing-page .pricing-item.featured:hover {
  background: linear-gradient(135deg, rgba(215, 25, 35, 0.08) 0%, rgba(215, 25, 35, 0.04) 100%);
}
.pricing-page .warning-box {
  background: linear-gradient(135deg, #fff3cd 0%, #fff8e1 100%);
  border: 2px solid #ffc107;
  border-radius: 16px;
  padding: 2rem;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}
.pricing-page .warning-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: #ffc107;
}
.pricing-page .warning-box .warning-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.pricing-page .warning-box .warning-header i {
  font-size: 2rem;
  color: #f59e0b;
}
.pricing-page .warning-box .warning-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #78350f;
  margin: 0;
}
.pricing-page .warning-box p {
  font-size: 1rem;
  color: #78350f;
  line-height: 1.8;
  margin: 0.75rem 0;
  padding-left: 3rem;
}
@media (max-width: 576px) {
  .pricing-page .warning-box p {
    padding-left: 0;
  }
}
.pricing-page .warning-box p:last-child {
  margin-bottom: 0;
}
.pricing-page .pricing-cta {
  background: linear-gradient(135deg, #d71923 0%, #b01419 100%);
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 24px;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}
.pricing-page .pricing-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.pricing-page .pricing-cta::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}
.pricing-page .pricing-cta .container {
  position: relative;
  z-index: 1;
}
.pricing-page .pricing-cta h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .pricing-page .pricing-cta h2 {
    font-size: 2rem;
  }
}
.pricing-page .pricing-cta p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-page .pricing-cta .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.pricing-page .pricing-cta .cta-buttons .btn {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.pricing-page .pricing-cta .cta-buttons .btn i {
  font-size: 1.25rem;
}
.pricing-page .pricing-cta .cta-buttons .btn.btn-white {
  background: white;
  color: #d71923;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.pricing-page .pricing-cta .cta-buttons .btn.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}
.pricing-page .pricing-cta .cta-buttons .btn.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}
.pricing-page .pricing-cta .cta-buttons .btn.btn-outline:hover {
  background: white;
  color: #d71923;
  transform: translateY(-3px);
}
.pricing-page .whatsapp-button {
  background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  font-size: 1.125rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  transition: all 0.3s;
}
.pricing-page .whatsapp-button i {
  font-size: 1.5rem;
}
.pricing-page .whatsapp-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.bank-details {
  background: white;
  border-radius: 24px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  margin: 3rem 0;
}
.bank-details.m-0 {
  margin: 0;
}
@media (max-width: 576px) {
  .bank-details.m-0 {
    margin: 0;
  }
}
.bank-details.no-bg {
  background: none;
}
.bank-details .section-header {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
  padding: 2rem;
  text-align: center;
  position: relative;
}
.bank-details .section-header h2 {
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0;
  color: white;
}
@media (max-width: 576px) {
  .bank-details .section-header h2 {
    font-size: 1.5rem;
  }
}
.bank-details .bank-content {
  display: grid;
  grid-template-columns: 1fr;
}
@media (max-width: 992px) {
  .bank-details .bank-content {
    grid-template-columns: 1fr;
  }
}
.bank-details .bank-image {
  position: relative;
  min-height: 350px;
}
@media (max-width: 992px) {
  .bank-details .bank-image {
    min-height: 250px;
  }
}
.bank-details .bank-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bank-details .bank-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(215, 25, 35, 0.1) 0%, transparent 100%);
}
.bank-details .bank-info {
  padding: 3rem;
  background: linear-gradient(135deg, #f8fafc 0%, white 100%);
}
@media (max-width: 576px) {
  .bank-details .bank-info {
    padding: 2rem 1.5rem;
  }
}
.bank-details .bank-info.p-1 {
  padding: 1rem;
}
@media (max-width: 576px) {
  .bank-details .bank-info.p-1 {
    padding: 1rem;
  }
}
.bank-details .bank-info .bank-accordion-item {
  margin-bottom: 1.5rem;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  background: white;
  transition: all 0.3s ease;
}
.bank-details .bank-info .bank-accordion-item:last-of-type {
  margin-bottom: 2rem;
}
.bank-details .bank-info .bank-accordion-item.m-0 {
  margin-bottom: 0rem;
}
.bank-details .bank-info .bank-accordion-item:hover {
  border-color: rgba(215, 25, 35, 0.3);
  box-shadow: 0 4px 15px rgba(215, 25, 35, 0.08);
}
.bank-details .bank-info .bank-accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.bank-details .bank-info .bank-accordion-header:hover {
  background: #f9fafb;
}
.bank-details .bank-info .bank-accordion-header.active {
  background: linear-gradient(135deg, rgba(215, 25, 35, 0.05) 0%, rgba(215, 25, 35, 0.02) 100%);
}
.bank-details .bank-info .bank-accordion-header .bank-header-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}
.bank-details .bank-info .bank-accordion-header .bank-header-content > i {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #d71923 0%, #b01419 100%);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.bank-details .bank-info .bank-accordion-header .bank-header-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #2c2c2c;
  margin: 0 0 0.25rem 0;
}
.bank-details .bank-info .bank-accordion-header .bank-header-content p {
  font-size: 0.875rem;
  color: #666666;
  margin: 0;
}
.bank-details .bank-info .bank-accordion-header .accordion-icon {
  font-size: 1.25rem;
  color: #d71923;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.bank-details .bank-info .bank-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.bank-details .bank-info .bank-accordion-content.active {
  max-height: 800px;
}
.bank-details .bank-info .account-info-text {
  padding: 1.5rem;
}
.bank-details .bank-info .account-info-text p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  color: #4b5563;
}
.bank-details .bank-info .account-info-text p:first-child {
  margin-top: 0;
}
.bank-details .bank-info .account-info-text p:last-child {
  margin-bottom: 0;
}
.bank-details .bank-info .account-info-text p strong {
  color: #2c2c2c;
  font-weight: 600;
  margin-right: 0.5rem;
}
.bank-details .bank-info .account-number-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 1.5rem 1.5rem;
}
.bank-details .bank-info .account-number-box .account-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  transition: all 0.3s ease;
}
@media (max-width: 992px) {
  .bank-details .bank-info .account-number-box .account-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.bank-details .bank-info .account-number-box .account-item:hover {
  border-color: #d71923;
  background: white;
  box-shadow: 0 4px 12px rgba(215, 25, 35, 0.1);
}
.bank-details .bank-info .account-number-box .account-item .currency {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #d71923 0%, #b01419 100%);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}
.bank-details .bank-info .account-number-box .account-item .number {
  flex: 1;
  font-family: "Courier New", monospace;
  font-size: 1.125rem;
  font-weight: 600;
  color: #2c2c2c;
  cursor: pointer;
  -webkit-user-select: all;
     -moz-user-select: all;
          user-select: all;
}
@media (max-width: 576px) {
  .bank-details .bank-info .account-number-box .account-item .number {
    font-size: 0.9rem;
  }
}
.bank-details .bank-info .account-number-box .account-item .number:hover {
  color: #d71923;
}
.bank-details .bank-info .account-number-box .account-item .copy-btn {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, rgba(215, 25, 35, 0.1) 0%, rgba(215, 25, 35, 0.05) 100%);
  border: 2px solid #d71923;
  border-radius: 10px;
  color: #d71923;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.bank-details .bank-info .account-number-box .account-item .copy-btn i {
  font-size: 1.125rem;
}
.bank-details .bank-info .account-number-box .account-item .copy-btn:hover {
  background: #d71923;
  color: white;
  transform: scale(1.05);
}
.bank-details .bank-info .account-number-box .account-item .copy-btn:active {
  transform: scale(0.95);
}
.bank-details .bank-info .copy-info {
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(215, 25, 35, 0.05);
  border-radius: 12px;
  text-align: center;
}
.bank-details .bank-info .copy-info p {
  margin: 0;
  font-size: 0.9rem;
  color: #666666;
}
.bank-details .bank-info .copy-info p i {
  color: #d71923;
  margin-right: 0.5rem;
}

.general-page .page-header {
  background: linear-gradient(135deg, #d71923 0%, #b01419 100%);
  padding: 4rem 0;
  text-align: center;
  color: white;
  position: relative;
}
.general-page .page-header::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
@media (max-width: 992px) {
  .general-page .page-header::after {
    content: none;
  }
}
.general-page .page-header::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  left: 1%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
@media (max-width: 992px) {
  .general-page .page-header::before {
    content: none;
  }
}
.general-page .page-header .container {
  position: relative;
  z-index: 1;
}
.general-page .page-header h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
}
@media (max-width: 768px) {
  .general-page .page-header h1 {
    font-size: 2rem;
  }
}
.general-page .page-header p {
  font-size: 1.125rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
  color: white;
}
@media (max-width: 768px) {
  .general-page .page-header p {
    font-size: 1rem;
  }
}
.general-page .page-header .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.95rem;
}
.general-page .page-header .breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s;
}
.general-page .page-header .breadcrumb a:hover {
  color: white;
}
.general-page .page-header .breadcrumb i {
  font-size: 0.75rem;
  opacity: 0.7;
}
.general-page .page-header .breadcrumb span {
  opacity: 0.8;
}
.general-page .page-content {
  padding: 5rem 0;
  background: #f9fafb;
}
@media (max-width: 768px) {
  .general-page .page-content {
    padding: 3rem 0;
  }
}
.general-page .page-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
}
.general-page .page-layout.full {
  grid-template-columns: 1fr;
}
@media (max-width: 992px) {
  .general-page .page-layout {
    display: block;
  }
}
.general-page .main-content {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
@media (max-width: 768px) {
  .general-page .main-content {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }
}
.general-page .main-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #2c2c2c;
  margin: 2.5rem 0 1.5rem;
  line-height: 1.3;
}
.general-page .main-content h2:first-child {
  margin-top: 0;
}
@media (max-width: 768px) {
  .general-page .main-content h2 {
    font-size: 1.5rem;
  }
}
.general-page .main-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c2c2c;
  margin: 2rem 0 1rem;
}
@media (max-width: 768px) {
  .general-page .main-content h3 {
    font-size: 1.25rem;
  }
}
.general-page .main-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c2c2c;
  margin: 1.5rem 0 1rem;
}
.general-page .main-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 1.5rem;
}
.general-page .main-content p:last-child {
  margin-bottom: 0;
}
.general-page .main-content iframe,
.general-page .main-content embed {
  width: 100%;
}
.general-page .main-content ul,
.general-page .main-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}
.general-page .main-content ul li,
.general-page .main-content ol li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 0.75rem;
}
.general-page .main-content ul li::marker,
.general-page .main-content ol li::marker {
  color: #d71923;
  font-weight: 600;
}
.general-page .main-content ul ul,
.general-page .main-content ul ol,
.general-page .main-content ol ul,
.general-page .main-content ol ol {
  margin: 1rem 0;
}
.general-page .main-content a {
  color: #d71923;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s;
}
.general-page .main-content a:hover {
  color: #b01419;
}
.general-page .main-content strong {
  color: #2c2c2c;
  font-weight: 600;
}
.general-page .main-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, rgba(215, 25, 35, 0.05) 0%, rgba(215, 25, 35, 0.02) 100%);
  border-left: 4px solid #d71923;
  border-radius: 8px;
  font-style: italic;
}
.general-page .main-content blockquote p {
  margin: 0;
  color: #374151;
}
.general-page .main-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 2rem 0;
}
.general-page .main-content .info-box {
  background: linear-gradient(135deg, rgba(215, 25, 35, 0.08) 0%, rgba(215, 25, 35, 0.03) 100%);
  border-left: 4px solid #d71923;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}
.general-page .main-content .info-box-icon {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.general-page .main-content .info-box-icon i {
  font-size: 1.5rem;
  color: #d71923;
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.general-page .main-content .info-box-icon div {
  flex: 1;
}
.general-page .main-content .info-box h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #2c2c2c;
  margin: 0 0 0.75rem 0;
}
.general-page .main-content .info-box p {
  margin: 0;
  color: #374151;
}
.general-page .main-content .info-box p:not(:last-child) {
  margin-bottom: 1rem;
}
.general-page .main-content .warning-box {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
  border-left: 4px solid #f59e0b;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}
.general-page .main-content .warning-box .info-box-icon i {
  color: #f59e0b;
}
.general-page .main-content .warning-box h4 {
  color: #78350f;
  padding: 0;
  margin: 0;
}
.general-page .main-content .warning-box p {
  color: #78350f;
}
.general-page .main-content .success-box {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
  border-left: 4px solid #22c55e;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}
.general-page .main-content .success-box .info-box-icon i {
  color: #22c55e;
}
.general-page .main-content .success-box h4 {
  color: #166534;
  padding: 0;
  margin: 0;
}
.general-page .main-content .success-box p {
  color: #166534;
}
@media (max-width: 992px) {
  .general-page .page-sidebar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 20px;
  }
}
.general-page .page-sidebar .sidebar-widget {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  margin-bottom: 2rem;
}
.general-page .page-sidebar .sidebar-widget:last-child {
  margin-bottom: 0;
}
.general-page .page-sidebar .sidebar-widget h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2c2c2c;
  margin: 0 0 1.5rem 0;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f3f4f6;
}
.general-page .page-sidebar .quick-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.general-page .page-sidebar .quick-links li {
  margin-bottom: 0.75rem;
}
.general-page .page-sidebar .quick-links li:last-child {
  margin-bottom: 0;
}
.general-page .page-sidebar .quick-links li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: #f9fafb;
  border-radius: 8px;
  text-decoration: none;
  color: #2c2c2c;
  font-weight: 500;
  transition: all 0.3s;
}
.general-page .page-sidebar .quick-links li a i {
  color: #d71923;
  font-size: 1rem;
}
.general-page .page-sidebar .quick-links li a:hover {
  background: rgba(215, 25, 35, 0.1);
  color: #d71923;
  transform: translateX(5px);
}
.general-page .page-sidebar .contact-card {
  background: linear-gradient(135deg, #d71923 0%, #b01419 100%);
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  margin: -2rem;
}
.general-page .page-sidebar .contact-card .contact-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.general-page .page-sidebar .contact-card .contact-icon i {
  font-size: 2.5rem;
  color: white;
}
.general-page .page-sidebar .contact-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}
.general-page .page-sidebar .contact-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.general-page .page-sidebar .contact-card .btn {
  width: 100%;
  padding: 1.25rem;
  background: white;
  color: #d71923;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-decoration: none;
}
.general-page .page-sidebar .contact-card .btn i {
  font-size: 1.25rem;
}
.general-page .page-sidebar .contact-card .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  background: #f9f9f9;
}
.general-page .page-sidebar .info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.general-page .page-sidebar .info-list li {
  padding: 1rem 0;
  border-bottom: 1px solid #f3f4f6;
}
.general-page .page-sidebar .info-list li:first-child {
  padding-top: 0;
}
.general-page .page-sidebar .info-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.general-page .page-sidebar .info-list li .info-label {
  font-size: 0.875rem;
  color: #666666;
  margin-bottom: 0.25rem;
}
.general-page .page-sidebar .info-list li .info-value {
  font-size: 1rem;
  font-weight: 600;
  color: #2c2c2c;
}

.page-cta {
  background: linear-gradient(135deg, #d71923 0%, #b01419 100%);
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 24px;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}
.page-cta.mb-4 {
  margin-bottom: 4rem;
}
.page-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.page-cta .container {
  position: relative;
  z-index: 1;
}
.page-cta h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .page-cta h2 {
    font-size: 2rem;
  }
}
.page-cta p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.page-cta .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.page-cta .cta-buttons .btn {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.page-cta .cta-buttons .btn i {
  font-size: 1.25rem;
}
.page-cta .cta-buttons .btn.btn-white {
  background: white;
  color: #d71923;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.page-cta .cta-buttons .btn.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}
.page-cta .cta-buttons .btn.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}
.page-cta .cta-buttons .btn.btn-outline:hover {
  background: white;
  color: #d71923;
  transform: translateY(-3px);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(5deg);
  }
}
@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(215, 25, 35, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(215, 25, 35, 0.6);
  }
}
@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scroll-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
.modern-contact-page {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.contact-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}
@media (max-width: 768px) {
  .contact-hero {
    min-height: 100vh;
    padding: 6rem 0 3rem;
  }
}

.hero-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  z-index: 0;
}
.hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(215, 25, 35, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(255, 40, 49, 0.1) 0%, transparent 50%);
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  animation: float 15s ease-in-out infinite;
}
.hero-shape.shape-1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #d71923 0%, #ff2831 100%);
  top: -10%;
  left: -5%;
  animation-delay: 0s;
}
.hero-shape.shape-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  bottom: -10%;
  right: -5%;
  animation-delay: 5s;
}
.hero-shape.shape-3 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #ec4899 0%, #f59e0b 100%);
  top: 50%;
  right: 20%;
  animation-delay: 10s;
}
@media (max-width: 768px) {
  .hero-shape.shape-1, .hero-shape.shape-2, .hero-shape.shape-3 {
    width: 250px;
    height: 250px;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: slide-up 0.8s ease-out;
}
.hero-content.text-left {
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.hero-badge i {
  font-size: 1.1rem;
  color: #ff2831;
}
.hero-badge:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
    letter-spacing: -1px;
  }
}
.hero-title .title-line {
  display: block;
  color: white;
}
.hero-title .title-line.highlight {
  background: linear-gradient(135deg, #ff2831 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .hero-description {
    font-size: 1.05rem;
  }
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .hero-stats {
    gap: 2rem;
  }
}

.stat-item {
  text-align: center;
}
.stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}
@media (max-width: 768px) {
  .stat-item .stat-number {
    font-size: 2rem;
  }
}
.stat-item .stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
  animation: scroll-bounce 2s ease-in-out infinite;
  cursor: pointer;
  transition: color 0.3s;
}
.scroll-indicator:hover {
  color: rgba(255, 255, 255, 0.9);
}

.bento-contact-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
}
@media (max-width: 768px) {
  .bento-contact-section {
    padding: 4rem 0;
  }
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  grid-auto-rows: minmax(100px, auto);
}
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.bento-card {
  background: white;
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(215, 25, 35, 0.03) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s;
}
.bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(215, 25, 35, 0.1);
}
.bento-card:hover::before {
  opacity: 1;
}

.bento-card-large {
  grid-column: span 7;
  grid-row: span 4;
}
@media (max-width: 1024px) {
  .bento-card-large {
    grid-column: span 6;
  }
}
@media (max-width: 768px) {
  .bento-card-large {
    grid-column: span 1;
  }
}

.bento-card-medium {
  grid-column: span 5;
  grid-row: span 2;
}
@media (max-width: 1024px) {
  .bento-card-medium {
    grid-column: span 3;
  }
}
@media (max-width: 768px) {
  .bento-card-medium {
    grid-column: span 1;
  }
}

.bento-card-wide {
  grid-column: span 7;
  grid-row: span 2;
}
@media (max-width: 1024px) {
  .bento-card-wide {
    grid-column: span 6;
  }
}
@media (max-width: 768px) {
  .bento-card-wide {
    grid-column: span 1;
  }
}

.bento-card-small {
  grid-column: span 5;
  grid-row: span 2;
}
@media (max-width: 1024px) {
  .bento-card-small {
    grid-column: span 6;
  }
}
@media (max-width: 768px) {
  .bento-card-small {
    grid-column: span 1;
  }
}

.contact-form-card {
  display: flex;
  flex-direction: column;
}
.contact-form-card .card-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.contact-form-card .card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #d71923 0%, #b01419 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(215, 25, 35, 0.3);
}
.contact-form-card .card-icon i {
  font-size: 1.75rem;
  color: white;
}
.contact-form-card .card-title-wrapper {
  flex: 1;
}
.contact-form-card .card-title {
  font-size: 2rem;
  font-weight: 900;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}
@media (max-width: 768px) {
  .contact-form-card .card-title {
    font-size: 1.75rem;
  }
}
.contact-form-card .card-subtitle {
  font-size: 1.05rem;
  color: #666666;
}

.modern-contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.modern-contact-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 576px) {
  .modern-contact-form .form-grid {
    grid-template-columns: 1fr;
  }
}
.modern-contact-form .form-field {
  position: relative;
}
.modern-contact-form .form-field.form-field-full {
  grid-column: 1/-1;
}
.modern-contact-form .form-field label {
  position: absolute;
  top: -10px;
  left: 3.5rem;
  background: white;
  padding: 0 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #2c2c2c;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
  pointer-events: none;
}
.modern-contact-form .form-field input,
.modern-contact-form .form-field select {
  width: 100%;
  padding: 1.25rem 1.5rem 1.25rem 4rem;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  font-size: 1rem;
  color: #2c2c2c;
  background: #f8fafc;
  transition: all 0.3s;
  font-family: inherit;
}
.modern-contact-form .form-field input:focus,
.modern-contact-form .form-field select:focus {
  outline: none;
  border-color: #d71923;
  background: white;
  box-shadow: 0 0 0 4px rgba(215, 25, 35, 0.1);
}
.modern-contact-form .form-field input:focus ~ label,
.modern-contact-form .form-field select:focus ~ label {
  opacity: 1;
  transform: translateY(0);
  color: #d71923;
}
.modern-contact-form .form-field input:focus ~ .field-icon,
.modern-contact-form .form-field select:focus ~ .field-icon {
  color: #d71923;
  transform: scale(1.1);
}
.modern-contact-form .form-field input::-moz-placeholder, .modern-contact-form .form-field select::-moz-placeholder {
  color: #94a3b8;
}
.modern-contact-form .form-field input::placeholder,
.modern-contact-form .form-field select::placeholder {
  color: #94a3b8;
}
.modern-contact-form .form-field textarea {
  width: 100%;
  padding: 1.25rem 1.5rem 1.25rem 1.25rem;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  font-size: 1rem;
  color: #2c2c2c;
  background: #f8fafc;
  transition: all 0.3s;
  font-family: inherit;
}
.modern-contact-form .form-field textarea:focus {
  outline: none;
  border-color: #d71923;
  background: white;
  box-shadow: 0 0 0 4px rgba(215, 25, 35, 0.1);
}
.modern-contact-form .form-field textarea:focus ~ label {
  opacity: 1;
  transform: translateY(0);
  color: #d71923;
}
.modern-contact-form .form-field textarea:focus ~ .field-icon {
  color: #d71923;
  transform: scale(1.1);
}
.modern-contact-form .form-field textarea::-moz-placeholder {
  color: #94a3b8;
}
.modern-contact-form .form-field textarea::placeholder {
  color: #94a3b8;
}
.modern-contact-form .form-field textarea {
  min-height: 140px;
  resize: vertical;
  padding-top: 1.25rem;
}
.modern-contact-form .form-field select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%2364748b' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  cursor: pointer;
}
.modern-contact-form .field-icon {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  font-size: 1.1rem;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 99;
}
.modern-contact-form .submit-button {
  margin-top: auto;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(135deg, #d71923 0%, #b01419 100%);
  border: none;
  border-radius: 16px;
  color: white;
  font-size: 1.125rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(215, 25, 35, 0.3);
  position: relative;
  overflow: hidden;
}
.modern-contact-form .submit-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.modern-contact-form .submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(215, 25, 35, 0.4);
}
.modern-contact-form .submit-button:hover::before {
  transform: translateX(100%);
}
.modern-contact-form .submit-button:hover .button-icon {
  transform: translateX(5px);
}
.modern-contact-form .submit-button:active {
  transform: translateY(-1px);
}
.modern-contact-form .submit-button .button-text {
  position: relative;
  z-index: 1;
}
.modern-contact-form .submit-button .button-icon {
  position: relative;
  z-index: 1;
  transition: transform 0.3s;
}

.quick-contact-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.quick-contact-card .quick-card-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  transition: opacity 0.4s;
}
.quick-contact-card:hover .quick-card-bg {
  opacity: 0.1;
}
.quick-contact-card .quick-card-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}
.quick-contact-card .quick-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #2c2c2c;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}
.quick-contact-card .quick-card-text {
  font-size: 1rem;
  color: #666666;
  margin-bottom: 1.5rem;
}
.quick-contact-card .quick-card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 12px;
  color: #2c2c2c;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  margin-bottom: 0.75rem;
}
.quick-contact-card .quick-card-link:last-of-type {
  margin-bottom: 0;
}
.quick-contact-card .quick-card-link i {
  font-size: 1.1rem;
  opacity: 0.5;
  transition: all 0.3s;
}
.quick-contact-card .quick-card-link:hover {
  background: rgba(0, 0, 0, 0.06);
  transform: translateX(5px);
}
.quick-contact-card .quick-card-link:hover i {
  opacity: 1;
  transform: translateX(3px);
}
.quick-contact-card .quick-card-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem;
  border-radius: 14px;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s;
  margin-top: auto;
}
.quick-contact-card .quick-card-button:hover {
  transform: translateY(-3px);
}

.phone-card .quick-card-bg {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}
.phone-card .quick-card-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.email-card .quick-card-bg {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}
.email-card .quick-card-icon {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.location-card .location-content {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
@media (max-width: 768px) {
  .location-card .location-content {
    flex-direction: column;
  }
}
.location-card .location-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #d71923 0%, #b01419 100%);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(215, 25, 35, 0.3);
}
.location-card .location-icon i {
  font-size: 2rem;
  color: white;
}
.location-card .location-info {
  flex: 1;
}
.location-card .location-info h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #2c2c2c;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}
.location-card .location-info p {
  font-size: 1.05rem;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.location-card .location-address {
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 12px;
  border-left: 3px solid #d71923;
}
.location-card .location-address p {
  margin: 0;
  font-size: 1rem;
  color: #666666;
  line-height: 1.6;
}
.location-card .location-address p strong {
  color: #2c2c2c;
  font-weight: 700;
}
.location-card .working-hours {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.location-card .working-hours .hours-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #666666;
}
.location-card .working-hours .hours-item i {
  color: #d71923;
}
.location-card .location-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  background: linear-gradient(135deg, #d71923 0%, #b01419 100%);
  color: white;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(215, 25, 35, 0.3);
  margin-left: auto;
}
@media (max-width: 768px) {
  .location-card .location-button {
    margin-left: 0;
  }
}
.location-card .location-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(215, 25, 35, 0.4);
}

.social-card .social-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #2c2c2c;
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: -0.5px;
}
.social-card .social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.social-card .social-btn {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.social-card .social-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.social-card .social-btn.facebook-btn {
  background: linear-gradient(135deg, #1877f2 0%, #0c5bc6 100%);
}
.social-card .social-btn.instagram-btn {
  background: linear-gradient(135deg, #f09433 0%, #dc2743 50%, #bc1888 100%);
}
.social-card .social-btn.youtube-btn {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}
.social-card .social-btn.linkedin-btn {
  background: linear-gradient(135deg, #0077b5 0%, #005582 100%);
}
.social-card .social-btn.twitter-btn {
  background: linear-gradient(135deg, #1da1f2 0%, #0c85d0 100%);
}
.social-card .social-btn.tiktok-btn {
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

.interactive-map-section {
  padding: 6rem 0;
  background: white;
}
@media (max-width: 768px) {
  .interactive-map-section {
    padding: 4rem 0;
  }
}

.map-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  gap: 2rem;
}
@media (max-width: 768px) {
  .map-header {
    flex-direction: column;
  }
}

.map-header-content {
  flex: 1;
}

.map-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(215, 25, 35, 0.1) 0%, rgba(215, 25, 35, 0.05) 100%);
  border: 1px solid rgba(215, 25, 35, 0.2);
  border-radius: 50px;
  color: #d71923;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.map-title {
  font-size: 3rem;
  font-weight: 900;
  color: #2c2c2c;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}
@media (max-width: 768px) {
  .map-title {
    font-size: 2.25rem;
  }
}

.map-description {
  font-size: 1.125rem;
  color: #666666;
  line-height: 1.7;
}

.map-actions {
  display: flex;
  gap: 1rem;
}

.map-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  background: linear-gradient(135deg, #d71923 0%, #b01419 100%);
  color: white;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(215, 25, 35, 0.3);
}
.map-action-btn:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(215, 25, 35, 0.4);
}

.map-wrapper {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.map-container {
  height: 600px;
  position: relative;
}
@media (max-width: 768px) {
  .map-container {
    height: 450px;
  }
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(0.9) contrast(1.05);
}

.map-info-overlay {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 10;
}
@media (max-width: 768px) {
  .map-info-overlay {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}

.overlay-card {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .overlay-card {
    padding: 1.5rem;
  }
}
.overlay-card .overlay-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #d71923 0%, #b01419 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.overlay-card .overlay-icon i {
  font-size: 1.5rem;
  color: white;
}
.overlay-card h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #2c2c2c;
  margin-bottom: 0.25rem;
}
.overlay-card p {
  font-size: 0.95rem;
  color: #666666;
  margin: 0;
}

.faq-accordion-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
@media (max-width: 768px) {
  .faq-accordion-section {
    padding: 4rem 0;
  }
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(215, 25, 35, 0.1) 0%, rgba(215, 25, 35, 0.05) 100%);
  border: 1px solid rgba(215, 25, 35, 0.2);
  border-radius: 50px;
  color: #d71923;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faq-title {
  font-size: 3rem;
  font-weight: 900;
  color: #2c2c2c;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}
@media (max-width: 768px) {
  .faq-title {
    font-size: 2.25rem;
  }
}

.faq-description {
  font-size: 1.125rem;
  color: #666666;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.faq-accordion-item {
  background: white;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.4s;
}
.faq-accordion-item:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.faq-accordion-item.active .faq-accordion-header {
  background: linear-gradient(135deg, rgba(215, 25, 35, 0.05) 0%, rgba(215, 25, 35, 0.02) 100%);
}
.faq-accordion-item.active .faq-accordion-toggle i {
  transform: rotate(45deg);
  color: #d71923;
}
.faq-accordion-item.active .faq-accordion-content {
  max-height: 500px;
  padding: 2rem;
}

.faq-accordion-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 2.5rem;
  cursor: pointer;
  transition: all 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.faq-accordion-header h3 {
  flex: 1;
  font-size: 1.125rem;
  font-weight: 800;
  color: #2c2c2c;
  margin: 0;
  line-height: 1.5;
}

.faq-accordion-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #d71923 0%, #b01419 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(215, 25, 35, 0.25);
}
.faq-accordion-icon i {
  font-size: 1.5rem;
  color: white;
}

.faq-accordion-toggle {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.faq-accordion-toggle i {
  font-size: 1.25rem;
  color: #666666;
  transition: all 0.3s;
}

.faq-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s;
  padding: 0 2.5rem 0 6.5rem;
}
.faq-accordion-content p {
  font-size: 1rem;
  color: #666666;
  line-height: 1.7;
  margin: 0;
}

.ticket-hero {
  min-height: 500px;
}
.ticket-hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.ticket-hero .hero-features {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.ticket-hero .hero-features .hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 600;
}
.ticket-hero .hero-features .hero-feature i {
  font-size: 1.5rem;
  color: #d71923;
}

.intro-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}
.intro-section .intro-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #2c2c2c;
}
.intro-section .intro-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #999999;
}

.cart-button {
  position: relative;
  background: white;
  border: 2px solid #e5e7eb;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cart-button i {
  font-size: 1.25rem;
  color: #2c2c2c;
}
.cart-button .cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #d71923;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  animation: bounceIn 0.5s ease;
}
.cart-button:hover {
  border-color: #d71923;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(215, 25, 35, 0.2);
}

.ticket-filters {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.ticket-filters .filter-btn {
  background: white;
  border: 2px solid #e5e7eb;
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  color: #2c2c2c;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ticket-filters .filter-btn i {
  font-size: 1.1rem;
}
.ticket-filters .filter-btn:hover {
  border-color: #d71923;
  color: #d71923;
  transform: translateY(-2px);
}
.ticket-filters .filter-btn.active {
  background: #d71923;
  border-color: #d71923;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(215, 25, 35, 0.3);
}

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}
@media (max-width: 768px) {
  .tickets-grid {
    grid-template-columns: 1fr;
  }
}

.ticket-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  transform: translateY(0);
}
.ticket-card.filtering {
  opacity: 0;
  transform: translateY(30px);
}
.ticket-card.show {
  opacity: 1;
  transform: translateY(0);
}
.ticket-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.ticket-card:hover .ticket-image img {
  transform: scale(1.1);
}
.ticket-card:hover .ticket-quick-view {
  opacity: 1;
}

.ticket-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.ticket-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.ticket-image .ticket-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #d71923;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.875rem;
  z-index: 2;
}
.ticket-image .ticket-badge.budget {
  background: #10b981;
}
.ticket-image .ticket-badge.family {
  background: #f59e0b;
}
.ticket-image .ticket-badge.luxury {
  background: #8b5cf6;
}
.ticket-image .ticket-quick-view {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  color: #2c2c2c;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.ticket-image .ticket-quick-view i {
  margin-right: 0.5rem;
}
.ticket-image .ticket-quick-view:hover {
  background: #d71923;
  color: white;
}

.ticket-content {
  padding: 1.5rem;
}

.ticket-category {
  display: inline-block;
  color: #d71923;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.ticket-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.ticket-card h3 a {
  color: #2c2c2c;
  text-decoration: none;
  transition: color 0.3s ease;
}
.ticket-card h3 a:hover {
  color: #d71923;
}

.ticket-card p {
  color: #999999;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.ticket-features {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}
.ticket-features span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: #999999;
}
.ticket-features span i {
  color: #d71923;
}

.ticket-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.ticket-price .price-label {
  display: block;
  font-size: 0.875rem;
  color: #999999;
  margin-bottom: 0.25rem;
}
.ticket-price .price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #d71923;
}

.btn-add-cart {
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-add-cart::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 1.5rem;
  opacity: 0;
  transition: all 0.3s ease;
}
.btn-add-cart.added::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.btn-add-cart.added i,
.btn-add-cart.added span {
  opacity: 0;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -450px;
  width: 450px;
  height: 100vh;
  background: white;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 10000;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.cart-sidebar.active {
  right: 0;
}
@media (max-width: 768px) {
  .cart-sidebar {
    width: 100%;
    right: -100%;
  }
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 2px solid #e5e7eb;
}
.cart-header h3 {
  font-size: 1.5rem;
  color: #2c2c2c;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.cart-header h3 i {
  color: #d71923;
}
.cart-header .cart-close {
  background: #f3f4f6;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.cart-header .cart-close i {
  font-size: 1.25rem;
  color: #2c2c2c;
}
.cart-header .cart-close:hover {
  background: #e5e7eb;
  transform: rotate(90deg);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}
.cart-items::-webkit-scrollbar {
  width: 8px;
}
.cart-items::-webkit-scrollbar-track {
  background: #f3f4f6;
}
.cart-items::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 4px;
}
.cart-items::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

.empty-cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #999999;
}
.empty-cart i {
  font-size: 5rem;
  margin-bottom: 1rem;
  opacity: 0.3;
}
.empty-cart p {
  font-size: 1.1rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}
.cart-item:hover {
  background: #f3f4f6;
}
.cart-item img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

.cart-item-details {
  flex: 1;
}
.cart-item-details h4 {
  font-size: 1rem;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
}
.cart-item-details .cart-item-price {
  color: #d71923;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.cart-item-quantity button {
  background: white;
  border: 2px solid #e5e7eb;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cart-item-quantity button i {
  font-size: 0.75rem;
  color: #2c2c2c;
}
.cart-item-quantity button:hover {
  border-color: #d71923;
  background: #d71923;
}
.cart-item-quantity button:hover i {
  color: white;
}
.cart-item-quantity span {
  font-weight: 700;
  color: #2c2c2c;
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #ef4444;
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.3s ease;
}
.cart-item-remove i {
  font-size: 1.1rem;
}
.cart-item-remove:hover {
  transform: scale(1.2);
}

.cart-footer {
  padding: 1.5rem;
  border-top: 2px solid #e5e7eb;
  background: #f9fafb;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 800;
}
.cart-total span:first-child {
  color: #2c2c2c;
}
.cart-total span:last-child {
  color: #d71923;
}

.benefits-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}
.benefits-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2c2c2c;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #d71923 0%, rgb(169.3125, 19.6875, 27.5625) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-icon i {
  font-size: 2.5rem;
  color: white;
}

.benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #2c2c2c;
}

.benefit-card p {
  color: #999999;
  line-height: 1.6;
}

.quick-view-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10001;
  display: none;
}
.quick-view-modal.active {
  display: block;
}

.quick-view-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.quick-view-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 20px;
  max-width: 1000px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.quick-view-content::-webkit-scrollbar {
  width: 8px;
}
.quick-view-content::-webkit-scrollbar-track {
  background: #f3f4f6;
}
.quick-view-content::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 4px;
}

.quick-view-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.quick-view-close i {
  font-size: 1.25rem;
  color: #2c2c2c;
}
.quick-view-close:hover {
  transform: rotate(90deg);
  background: #d71923;
}
.quick-view-close:hover i {
  color: white;
}

.quick-view-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) {
  .quick-view-grid {
    grid-template-columns: 1fr;
  }
}

.quick-view-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px 0 0 20px;
}
@media (max-width: 768px) {
  .quick-view-image img {
    border-radius: 20px 20px 0 0;
  }
}

.quick-view-info {
  padding: 2rem;
}
.quick-view-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2c2c2c;
}

.quick-view-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.quick-view-rating i {
  color: #fbbf24;
  font-size: 1.25rem;
}
.quick-view-rating span:first-of-type {
  font-weight: 700;
  color: #2c2c2c;
}
.quick-view-rating .review-count {
  color: #999999;
  font-size: 0.9rem;
}

.quick-view-description {
  color: #999999;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.quick-view-features,
.quick-view-includes {
  margin-bottom: 2rem;
}
.quick-view-features h3,
.quick-view-includes h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #2c2c2c;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.quick-view-features h3 i,
.quick-view-includes h3 i {
  color: #d71923;
}
.quick-view-features ul,
.quick-view-includes ul {
  list-style: none;
}
.quick-view-features ul li,
.quick-view-includes ul li {
  padding: 0.5rem 0;
  color: #999999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.quick-view-features ul li i,
.quick-view-includes ul li i {
  color: #10b981;
  font-size: 0.875rem;
}

.quick-view-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 12px;
}
.quick-view-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #999999;
}
.quick-view-meta .meta-item i {
  color: #d71923;
  font-size: 1.1rem;
}

.quick-view-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.quick-view-actions .quick-view-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 12px;
}
.quick-view-actions .quick-view-price .price-label {
  color: #999999;
  font-weight: 600;
}
.quick-view-actions .quick-view-price .price {
  font-size: 2rem;
  font-weight: 800;
  color: #d71923;
}
.quick-view-actions .btn {
  width: 100%;
  justify-content: center;
}
.quick-view-actions .btn-outline {
  background: white;
  color: #d71923;
  border: 2px solid #d71923;
}
.quick-view-actions .btn-outline:hover {
  background: #d71923;
  color: white;
}

.notification {
  position: fixed;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 10002;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.notification.show {
  top: 2rem;
}
.notification i {
  font-size: 1.5rem;
}
.notification span {
  font-weight: 600;
  color: #2c2c2c;
}
.notification.notification-success i {
  color: #10b981;
}
.notification.notification-error i {
  color: #ef4444;
}
.notification.notification-info i {
  color: #3b82f6;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
@keyframes bounceIn {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.no-tickets-found-compact {
  text-align: center;
  padding: 40px 20px;
  background: #f9fafb;
  border-radius: 16px;
  margin: 24px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.no-tickets-found-compact i {
  font-size: 48px;
  color: #9ca3af;
  margin-bottom: 16px;
  display: block;
  text-align: center;
}
.no-tickets-found-compact h3 {
  font-size: 20px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}
.no-tickets-found-compact p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 20px;
}
.no-tickets-found-compact .btn {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
}

.checkout-main {
  padding: 4rem 0;
  background: #f9fafb;
  min-height: calc(100vh - 200px);
}

.checkout-steps {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 768px) {
  .checkout-steps {
    display: none;
  }
}

.step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  color: #999999;
  font-weight: 600;
  transition: all 0.3s ease;
}
.step i {
  font-size: 1.1rem;
}
.step.active {
  background: #d71923;
  border-color: #d71923;
  color: white;
}

.step-line {
  width: 40px;
  height: 2px;
  background: #e5e7eb;
}
.step-line.active {
  background: #d71923;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
}

.checkout-form-section {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.checkout-form-section h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #2c2c2c;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.checkout-form-section h2 i {
  color: #d71923;
}
@media (max-width: 768px) {
  .checkout-form-section {
    padding: 1.5rem;
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group-checkout {
  margin-bottom: 1.5rem;
}
.form-group-checkout label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
  font-size: 14px;
  letter-spacing: -0.2px;
}
.form-group-checkout input[type=text],
.form-group-checkout input[type=email],
.form-group-checkout input[type=tel],
.form-group-checkout input[type=date],
.form-group-checkout select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  background: #ffffff;
  color: #2c2c2c;
}
.form-group-checkout input[type=text]:focus,
.form-group-checkout input[type=email]:focus,
.form-group-checkout input[type=tel]:focus,
.form-group-checkout input[type=date]:focus,
.form-group-checkout select:focus {
  outline: none;
  border-color: #d71923;
  box-shadow: 0 0 0 5px rgba(215, 25, 35, 0.08);
  background: rgba(215, 25, 35, 0.01);
}
.form-group-checkout input[type=text]::-moz-placeholder, .form-group-checkout input[type=email]::-moz-placeholder, .form-group-checkout input[type=tel]::-moz-placeholder, .form-group-checkout input[type=date]::-moz-placeholder, .form-group-checkout select::-moz-placeholder {
  color: #94a3b8;
}
.form-group-checkout input[type=text]::placeholder,
.form-group-checkout input[type=email]::placeholder,
.form-group-checkout input[type=tel]::placeholder,
.form-group-checkout input[type=date]::placeholder,
.form-group-checkout select::placeholder {
  color: #94a3b8;
}
.form-group-checkout input[type=text].input-error,
.form-group-checkout input[type=email].input-error,
.form-group-checkout input[type=tel].input-error,
.form-group-checkout input[type=date].input-error,
.form-group-checkout select.input-error {
  border-color: #ef4444;
  animation: shake 0.4s ease;
}
.form-group-checkout input[type=text]::-webkit-datetime-edit,
.form-group-checkout input[type=email]::-webkit-datetime-edit,
.form-group-checkout input[type=tel]::-webkit-datetime-edit,
.form-group-checkout input[type=date]::-webkit-datetime-edit,
.form-group-checkout select::-webkit-datetime-edit {
  color: #94a3b8;
  font-size: 0.875rem;
}
.form-group-checkout small {
  display: block;
  margin-top: 0.5rem;
  color: #999999;
  font-size: 0.875rem;
}

.payment-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
  pointer-events: none;
}
@media (max-width: 768px) {
  .payment-methods {
    grid-template-columns: 1fr;
  }
}
.payment-methods .disabled {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.6;
}
.payment-methods .disabled input {
  pointer-events: none;
}

.payment-method {
  position: relative;
  cursor: pointer;
}
.payment-method input {
  position: absolute;
  opacity: 0;
}
.payment-method .method-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.payment-method .method-content i {
  font-size: 2rem;
  color: #999999;
  transition: color 0.3s ease;
}
.payment-method .method-content span {
  font-weight: 600;
  color: #2c2c2c;
}
.payment-method:hover .method-content {
  border-color: #d71923;
}
.payment-method.active .method-content {
  border-color: #d71923;
  background: rgba(215, 25, 35, 0.05);
}
.payment-method.active .method-content i {
  color: #d71923;
}

.checkbox-group .checkbox-label {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  cursor: pointer;
}
.checkbox-group .checkbox-label input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #d71923;
}
.checkbox-group .checkbox-label span {
  flex: 1;
  color: #999999;
}
.checkbox-group .checkbox-label span a {
  color: #d71923;
  text-decoration: underline;
}
.checkbox-group .checkbox-label span a:hover {
  color: rgb(169.3125, 19.6875, 27.5625);
}

.btn-large {
  width: 100%;
  padding: 1.25rem 2rem;
  font-size: 1.1rem;
  justify-content: center;
  margin-top: 1rem;
}

.security-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
  font-size: 1.75rem;
  color: #999999;
}
.security-badges img {
  height: 40px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.security-badges img:hover {
  opacity: 1;
}

@media (max-width: 1024px) {
  .order-summary-section {
    order: -1;
  }
}

.order-summary-sticky {
  position: sticky;
  top: 2rem;
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.order-summary-sticky h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #2c2c2c;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.order-summary-sticky h2 i {
  color: #d71923;
}

.order-items {
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 1.5rem;
}
.order-items::-webkit-scrollbar {
  width: 6px;
}
.order-items::-webkit-scrollbar-track {
  background: #f3f4f6;
  border-radius: 3px;
}
.order-items::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}

.order-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 12px;
  margin-bottom: 1rem;
}
.order-item img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

.order-item-details {
  flex: 1;
}
.order-item-details h4 {
  font-size: 0.95rem;
  color: #2c2c2c;
  margin-bottom: 0.25rem;
}
.order-item-details p {
  font-size: 0.875rem;
  color: #999999;
}

.order-item-price {
  font-weight: 700;
  color: #d71923;
  white-space: nowrap;
}

.order-totals {
  padding: 1.5rem 0;
  border-top: 2px solid #e5e7eb;
  border-bottom: 2px solid #e5e7eb;
  margin-bottom: 1.5rem;
}

.order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  color: #999999;
}
.order-row:last-child {
  margin-bottom: 0;
}
.order-row.total {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px dashed #e5e7eb;
  font-size: 1.5rem;
  font-weight: 800;
  color: #2c2c2c;
}
.order-row.total span:last-child {
  color: #d71923;
}

.order-features {
  margin-bottom: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: #999999;
}
.feature-item i {
  color: #10b981;
  font-size: 1.1rem;
}

.trust-badges {
  padding: 1rem;
  background: #f9fafb;
  border-radius: 12px;
  text-align: center;
}
.trust-badges p {
  margin: 0;
  color: #999999;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.trust-badges p i {
  color: #10b981;
}

.btn-primary .fa-spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.success-hero {
  min-height: 500px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 4rem 2rem;
}
.success-hero .success-icon {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  animation: successBounce 0.6s ease;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.success-hero .success-icon i {
  font-size: 4rem;
  color: white;
}
.success-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
  color: white;
}
.success-hero p {
  font-size: 1.25rem;
  opacity: 0.95;
  margin-bottom: 2rem;
  color: white;
}
.success-hero .order-number {
  background: rgba(255, 255, 255, 0.2);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.125rem;
  display: inline-block;
  margin-bottom: 2rem;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.success-hero .order-number strong {
  font-weight: 800;
  font-size: 1.25rem;
  color: white;
}
@media (max-width: 768px) {
  .success-hero {
    min-height: 400px;
    padding: 3rem 1.5rem;
  }
  .success-hero .success-icon {
    width: 100px;
    height: 100px;
  }
  .success-hero .success-icon i {
    font-size: 3rem;
  }
  .success-hero h1 {
    font-size: 1.75rem;
  }
  .success-hero p {
    font-size: 1rem;
  }
}

.pending-hero {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}
.pending-hero .success-icon {
  background: rgba(255, 255, 255, 0.25);
}
.pending-hero .success-icon i {
  color: white;
}

@keyframes successBounce {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
section:has(.bank-transfer-notice) {
  background: #fef3c7;
  padding: 2rem 0;
}

.bank-transfer-notice {
  display: flex;
  gap: 2rem;
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.bank-transfer-notice .notice-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bank-transfer-notice .notice-icon i {
  font-size: 2.5rem;
  color: white;
}
.bank-transfer-notice .notice-content {
  flex: 1;
}
.bank-transfer-notice .notice-content h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #2c2c2c;
}
.bank-transfer-notice .notice-content > p {
  color: #999999;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .bank-transfer-notice {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  .bank-transfer-notice .notice-icon {
    margin: 0 auto;
    width: 60px;
    height: 60px;
  }
  .bank-transfer-notice .notice-icon i {
    font-size: 2rem;
  }
}

.bank-details-box {
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.bank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem;
  border-bottom: 1px solid #e5e7eb;
}
.bank-row:last-child {
  border-bottom: none;
}
.bank-row .bank-label {
  font-weight: 600;
  color: #999999;
  font-size: 0.9375rem;
}
.bank-row .bank-value {
  font-weight: 700;
  color: #2c2c2c;
  font-size: 1rem;
  text-align: right;
}
.bank-row .bank-value.copy-text {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #d71923;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  background: white;
  border-radius: 8px;
  border: 2px solid #e5e7eb;
}
.bank-row .bank-value.copy-text i {
  font-size: 0.875rem;
  transition: transform 0.2s ease;
}
.bank-row .bank-value.copy-text:hover {
  background: #d71923;
  color: white;
  border-color: #d71923;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(215, 25, 35, 0.3);
}
.bank-row .bank-value.copy-text:hover i {
  transform: scale(1.2);
}
@media (max-width: 768px) {
  .bank-row {
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
  }
  .bank-row .bank-value {
    text-align: left;
  }
  .bank-row .bank-value.copy-text {
    width: 100%;
    justify-content: space-between;
  }
}

.bank-warning {
  display: flex;
  gap: 1rem;
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  align-items: start;
}
.bank-warning i {
  color: #f59e0b;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.bank-warning p {
  margin: 0;
  color: #78350f;
  font-size: 0.9375rem;
  line-height: 1.6;
  font-weight: 500;
}

.order-details {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}
.order-details h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #2c2c2c;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
}
.order-details h2 i {
  color: #d71923;
  font-size: 1.5rem;
}
.order-details h3 {
  font-size: 0.875rem;
  text-transform: uppercase;
  color: #999999;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .order-details {
    padding: 1.5rem;
  }
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.detail-item h3 {
  font-size: 0.875rem;
  text-transform: uppercase;
  color: #999999;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}
.detail-item p {
  font-size: 1.0625rem;
  color: #2c2c2c;
  margin: 0;
  font-weight: 600;
}
.detail-item p strong {
  font-weight: 800;
}

.order-items-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.order-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  background: #f9fafb;
  border-radius: 12px;
  border: 2px solid #f3f4f6;
  transition: all 0.3s ease;
}
.order-item-row:hover {
  border-color: #e5e7eb;
  background: #f3f4f6;
}
.order-item-row .item-info {
  flex: 1;
}
.order-item-row .item-info h4 {
  font-size: 1.0625rem;
  margin-bottom: 0.25rem;
  color: #2c2c2c;
  font-weight: 700;
}
.order-item-row .item-info p {
  font-size: 0.875rem;
  color: #999999;
  margin: 0;
}
.order-item-row .item-price {
  text-align: right;
}
.order-item-row .item-price .unit-price {
  display: block;
  font-size: 0.875rem;
  color: #999999;
  margin-bottom: 0.25rem;
}
.order-item-row .item-price .total-price {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #d71923;
}
@media (max-width: 768px) {
  .order-item-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .order-item-row .item-price {
    text-align: left;
    width: 100%;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
  }
}

.next-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.step-item {
  display: flex;
  gap: 1.5rem;
  align-items: start;
}
.step-item .step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #d71923, #ff2831);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(215, 25, 35, 0.3);
}
.step-item .step-content {
  flex: 1;
}
.step-item .step-content h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: #2c2c2c;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
}
.step-item .step-content p {
  font-size: 0.9375rem;
  color: #999999;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .step-item .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  .step-item .step-content h3 {
    font-size: 1rem;
  }
}

.contact-box {
  display: flex;
  gap: 1.5rem;
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  border: 2px solid #bae6fd;
  padding: 2rem;
  border-radius: 16px;
  align-items: center;
}
.contact-box > i {
  flex-shrink: 0;
  font-size: 3rem;
  color: #0284c7;
}
.contact-box div {
  flex: 1;
}
.contact-box div h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #0c4a6e;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
}
.contact-box div p {
  font-size: 0.9375rem;
  color: #075985;
  margin: 0 0 1rem 0;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .contact-box {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  .contact-box > i {
    font-size: 2.5rem;
  }
}

.btn-outline {
  background: white;
  color: #d71923;
  border: 2px solid #d71923;
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  text-decoration: none;
}
.btn-outline:hover {
  background: #d71923;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(215, 25, 35, 0.3);
}

@media print {
  .success-hero {
    min-height: auto;
    background: white !important;
    color: #2c2c2c !important;
    padding: 2rem 1rem;
  }
  .success-hero .success-icon {
    background: #10b981 !important;
  }
  .success-hero .btn,
  .success-hero button {
    display: none !important;
  }
  .bank-transfer-notice,
  .contact-box {
    page-break-inside: avoid;
  }
  .order-details {
    box-shadow: none !important;
    border: 1px solid #e5e7eb;
    page-break-inside: avoid;
  }
  header,
  footer,
  .contact-box .btn,
  button {
    display: none !important;
  }
}
.payment-info-box {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: #f0f9ff;
  border: 2px solid #bae6fd;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}
.payment-info-box .info-icon {
  flex-shrink: 0;
}
.payment-info-box .info-icon i {
  font-size: 1.5rem;
  color: #0284c7;
}
.payment-info-box .info-content h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #0c4a6e;
  font-weight: 700;
}
.payment-info-box .info-content p {
  font-size: 0.875rem;
  color: #075985;
  line-height: 1.5;
  margin: 0;
}

.cart-hero {
  min-height: 400px;
}
.cart-hero .hero-content {
  text-align: center;
}
.cart-hero .hero-content h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.cart-hero .hero-content h1 i {
  font-size: 3rem;
}

.cart-page-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .cart-page-grid {
    grid-template-columns: 1fr;
  }
}

.empty-cart-page {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.empty-cart-icon {
  width: 150px;
  height: 150px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.empty-cart-icon i {
  font-size: 5rem;
  color: #9ca3af;
}

.empty-cart-page h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2c2c2c;
}

.empty-cart-page p {
  font-size: 1.1rem;
  color: #999999;
  margin-bottom: 2rem;
}

.empty-cart-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.popular-destinations {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 2px solid #e5e7eb;
}
.popular-destinations h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #2c2c2c;
}

.destination-tags {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.destination-tags .tag {
  padding: 0.75rem 1.5rem;
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 25px;
  color: #2c2c2c;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.destination-tags .tag:hover {
  background: #d71923;
  border-color: #d71923;
  color: white;
  transform: translateY(-2px);
}

.cart-items-section {
  background: white;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
@media (max-width: 768px) {
  .cart-items-section {
    padding: 1.25rem;
  }
}

.cart-header-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid #f3f4f6;
}
.cart-header-info h2 {
  font-size: 1.5rem;
  color: #2c2c2c;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin: 0;
  font-weight: 700;
}
.cart-header-info h2 i {
  color: #d71923;
  font-size: 1.375rem;
}
.cart-header-info .item-count {
  background: #f9fafb;
  padding: 0.5rem 1rem;
  border-radius: 16px;
  font-weight: 600;
  color: #2c2c2c;
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .cart-header-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.875rem;
  }
}

.cart-page-item {
  display: grid;
  grid-template-columns: 100px 2fr 150px 120px 40px;
  gap: 1.5rem;
  align-items: center;
  padding: 1.25rem;
  background: white;
  border: 2px solid #f3f4f6;
  border-radius: 14px;
  margin-bottom: 1rem;
  transition: all 0.25s ease;
}
.cart-page-item:hover {
  border-color: #e5e7eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .cart-page-item {
    grid-template-columns: 70px 1fr;
    gap: 1rem;
    padding: 1rem;
  }
}

.item-image img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  display: block;
}
@media (max-width: 768px) {
  .item-image img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
  }
}

.item-details {
  min-width: 0;
  padding-right: 1rem;
}
@media (max-width: 768px) {
  .item-details {
    grid-column: 1/-1;
    order: 2;
    padding-right: 0;
  }
}
.item-details h3 {
  font-size: 1.0625rem;
  margin: 0;
  color: #2c2c2c;
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .item-details h3 {
    font-size: 0.9375rem;
  }
}

@media (max-width: 768px) {
  .item-quantity {
    grid-column: 1/-1;
    order: 3;
  }
}
.item-quantity label {
  display: none;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  padding: 0.5rem;
  justify-content: center;
}
.quantity-control .qty-btn {
  width: 32px;
  height: 32px;
  background: #f9fafb;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.quantity-control .qty-btn i {
  font-size: 0.8125rem;
  color: #6b7280;
}
.quantity-control .qty-btn:hover:not(:disabled) {
  background: #d71923;
}
.quantity-control .qty-btn:hover:not(:disabled) i {
  color: white;
}
.quantity-control .qty-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.quantity-control .qty-btn:active:not(:disabled) {
  transform: scale(0.92);
}
.quantity-control input {
  width: 50px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 1rem;
  font-weight: 700;
  color: #2c2c2c;
}
.quantity-control input:focus {
  outline: none;
}

.item-price {
  text-align: right;
}
@media (max-width: 768px) {
  .item-price {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }
}
.item-price .unit-price {
  font-size: 0.8125rem;
  color: #9ca3af;
  margin-bottom: 0.375rem;
  font-weight: 500;
}
.item-price .total-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #d71923;
  line-height: 1;
  letter-spacing: -0.02em;
}

.item-remove {
  background: transparent;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  color: #d1d5db;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .item-remove {
    grid-column: 1/-1;
    order: 4;
    width: 100%;
    padding: 0.75rem;
    background: white;
    border: 2px solid #e5e7eb;
    margin-top: 0.5rem;
  }
}
.item-remove i {
  font-size: 1.125rem;
}
.item-remove:hover {
  background: #fef2f2;
  color: #ef4444;
}
.item-remove:active {
  transform: scale(0.92);
}

.cart-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 2px solid #f3f4f6;
}
@media (max-width: 768px) {
  .cart-actions {
    flex-direction: column;
    gap: 0.875rem;
  }
  .cart-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.btn-text {
  background: none;
  color: #ef4444;
  padding: 0.625rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
}
.btn-text:hover {
  background: #fef2f2;
  color: #dc2626;
}

@media (max-width: 1024px) {
  .cart-summary-section {
    order: -1;
  }
}

.cart-summary-sticky {
  position: sticky;
  top: 2rem;
  background: white;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.cart-summary-sticky h3 {
  font-size: 1.375rem;
  margin-bottom: 1.25rem;
  color: #2c2c2c;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 700;
}
.cart-summary-sticky h3 i {
  color: #d71923;
  font-size: 1.25rem;
}

.promo-code-section {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #f3f4f6;
}

.promo-input-group {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.625rem;
  flex-wrap: wrap; /* Mobilde alt alta geçmesi için */
}

.promo-input {
  flex: 1;
  min-width: 0; /* Flex içinde taşmayı önler */
  padding: 0.625rem 0.875rem; /* Mobil için daha küçük */
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 0.875rem; /* 15px yerine 14px */
  font-weight: 600;
  transition: all 0.25s ease;
  /* Mobilde zoom'u önlemek için */
}
@media (max-width: 768px) {
  .promo-input {
    font-size: 16px; /* iOS zoom'u önler */
    padding: 0.75rem 1rem;
  }
}
.promo-input:focus {
  outline: none;
  border-color: #d71923;
}

.promo-message {
  font-size: 0.8125rem;
  margin-top: 0.5rem;
  word-break: break-word; /* Uzun mesajlar için */
}
.promo-message .success,
.promo-message .error,
.promo-message .loading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}
.promo-message .success {
  color: #10b981;
}
.promo-message .error {
  color: #ef4444;
}
.promo-message .loading {
  color: #999999;
}

/* Mobil optimizasyonu */
@media (max-width: 640px) {
  .promo-code-section {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
  }
  .promo-input-group {
    flex-direction: column; /* Buton alt satıra geçsin isterseniz */
  }
  .promo-message {
    font-size: 0.75rem;
  }
}
.summary-details {
  margin-bottom: 1.75rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.875rem;
  color: #999999;
  font-size: 0.9375rem;
}
.summary-row:last-child {
  margin-bottom: 0;
}
.summary-row.discount {
  color: #10b981;
  font-weight: 700;
}
.summary-row.discount i {
  margin-right: 0.25rem;
}
.summary-row.total {
  font-size: 1.625rem;
  font-weight: 800;
  color: #2c2c2c;
  margin-top: 0.875rem;
}
.summary-row.total span:last-child {
  color: #d71923;
}

.summary-divider {
  height: 2px;
  background: #f3f4f6;
  margin: 1.25rem 0;
}

.payment-methods-info {
  margin: 1.75rem 0;
  padding: 1.25rem;
  background: #f9fafb;
  border-radius: 10px;
  text-align: center;
}
.payment-methods-info p {
  font-size: 0.8125rem;
  color: #999999;
  margin-bottom: 0.875rem;
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 0.625rem;
  flex-wrap: wrap;
}
.payment-icons i {
  font-size: 1.75rem;
  color: #999999;
  transition: color 0.2s ease;
}
.payment-icons i:hover {
  color: #2c2c2c;
}

.trust-badges-summary {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem;
  background: #f9fafb;
  border-radius: 10px;
  color: #999999;
  font-size: 0.875rem;
}
.trust-badge-item i {
  color: #10b981;
  font-size: 1.125rem;
}

.recommendations-section {
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}
.recommendations-section .section-title {
  text-align: center;
  font-size: 1.875rem;
  margin-bottom: 2.5rem;
  color: #2c2c2c;
}

.trust-section {
  background: white;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.75rem;
}

.trust-item {
  text-align: center;
  padding: 1.75rem;
  background: #f9fafb;
  border-radius: 14px;
  transition: all 0.25s ease;
}
.trust-item:hover {
  background: white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}
.trust-item i {
  font-size: 2.75rem;
  color: #d71923;
  margin-bottom: 0.875rem;
}
.trust-item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.625rem;
  color: #2c2c2c;
  font-weight: 700;
}
.trust-item p {
  color: #999999;
  line-height: 1.5;
  font-size: 0.9375rem;
}

.btn-outline {
  background: white;
  color: #d71923;
  border: 2px solid #d71923;
}
.btn-outline:hover {
  background: #d71923;
  color: white;
}

@media (max-width: 768px) {
  .cart-section {
    padding: 1.75rem 0;
  }
  .cart-summary-sticky {
    position: static;
  }
}/*# sourceMappingURL=main.css.map */