:root {
  --primary: #e31b22;
  --primary-dark: #b5151b;
  --primary-light: #f05a5f;
  --bg-dark: #0a0a0a;
  --bg-darker: #050505;
  --bg-card: #141414;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --accent: #ffd700;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

a {
  text-decoration: none !important;
  color: inherit;
}

body {
  font-family: "DM Sans", sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 4px 20px rgba(227, 27, 34, 0.1);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.logo-img {
  height: 55px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.logo:hover .logo-img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .logo-img {
    height: 40px;
  }
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
  display: inline-block;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--text-primary);
}

.nav-menu a:hover::after {
  width: 100%;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  color: var(--text-secondary);
  font-size: 1.4rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.social-icons a:hover {
  color: var(--primary);
  transform: translateY(-2px);
  background: rgba(227, 27, 34, 0.1);
}

.cta-phone {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white !important;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  text-decoration: none !important;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(227, 27, 34, 0.4);
  border-color: var(--primary-light);
  color: white !important;
}

.cta-phone span {
  display: inline-block;
}

@media (max-width: 480px) {
  .cta-phone span {
    display: none;
  }

  .cta-phone {
    padding: 0.6rem;
    width: 40px;
    height: 40px;
    justify-content: center;
    border-radius: 50%;
  }
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
  background: none;
  border: none;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(227, 27, 34, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(227, 27, 34, 0.08) 0%,
      transparent 50%
    );
  z-index: -1;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(
    135deg,
    var(--text-primary),
    var(--text-secondary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content .highlight {
  color: var(--primary);
  -webkit-text-fill-color: var(--primary);
}

.hero-content p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(227, 27, 34, 0.5);
  border-color: var(--primary-light);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  border-color: var(--primary);
  background: rgba(227, 27, 34, 0.1);
  transform: translateY(-3px);
}

.hero-image {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.hero-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
  max-width: 100%;
}

.hero-image img:hover {
  transform: translateY(-10px);
}

.services {
  padding: 8rem 2rem;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 20px 60px rgba(227, 27, 34, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.offers {
  padding: 8rem 2rem;
  background: var(--bg-dark);
}

.offers-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.offer-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 1.5rem;
  height: 100%;
}

.offer-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
}

.offer-card.featured::before {
  content: "MÁS POPULAR";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.offer-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(227, 27, 34, 0.3);
}

.offer-card .btn-primary {
  justify-self: center;
}

.offer-card h3 {
  font-size: 2rem;
  color: var(--primary);
  margin: 0;
}

.offer-price {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 0;
  color: var(--text-primary);
}

.offer-price small {
  font-size: 1rem;
  color: var(--text-secondary);
}

.details-content {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: left;
}

.details-title {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.offer-features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.offer-features li {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.offer-features li:last-child {
  border-bottom: none;
}

.offer-features li i {
  color: var(--primary);
  width: 20px;
  text-align: center;
}

.offer-global-note {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-top: 4rem;
  line-height: 1.6;
  font-style: italic;
  opacity: 0.9;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

/* Horizontal Offer Card Layout */
.offers-grid-horizontal {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.offer-card-horizontal {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(20, 20, 20, 0.8) 100%);
  border-radius: 20px;
  padding: 2.5rem 3rem;
  border: 2px solid rgba(227, 27, 34, 0.3);
  box-shadow: 0 10px 40px rgba(227, 27, 34, 0.2);
  transition: all 0.3s ease;
}

.offer-card-horizontal:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 60px rgba(227, 27, 34, 0.4);
  border-color: var(--primary);
}

.offer-header-horizontal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid rgba(227, 27, 34, 0.2);
}

.offer-header-horizontal h3 {
  font-size: 2.2rem;
  color: var(--text-primary);
  margin: 0;
  font-weight: 700;
}

.offer-price-horizontal {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  font-family: "Space Grotesk", sans-serif;
}

.offer-content-horizontal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.offer-column {
  display: flex;
  flex-direction: column;
}

.offer-features-horizontal {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offer-features-horizontal li {
  padding: 0.8rem 0;
  font-size: 1.1rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.offer-features-horizontal li:last-child {
  border-bottom: none;
}

.offer-features-horizontal li:hover {
  color: var(--text-primary);
  padding-left: 0.5rem;
}

.offer-features-horizontal li i {
  color: var(--primary);
  margin-right: 0.8rem;
  font-size: 1.2rem;
}

.offer-cta-horizontal {
  text-align: center;
  padding-top: 1.5rem;
}

.offer-cta-horizontal .btn-primary {
  padding: 1rem 3rem;
  font-size: 1.15rem;
  font-weight: 700;
}

/* Side-to-Side Layout */
.offers-grid-sidebyside {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 3rem;
  align-items: center;
}

.offer-visual-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.offer-image-single {
  height: 100%;
}

.offer-image-single img {
  height: 650px;
  width: 100%;
  object-fit: cover;
}

.offer-image-wrapper {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.offer-image-wrapper:hover {
  transform: scale(1.02);
}

.offer-image-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.offer-image-main {
  height: 320px;
  object-fit: cover;
}

.offer-image-secondary {
  height: 320px;
  object-fit: cover;
}

.offer-details-column {
  display: flex;
  align-items: center;
}

.offer-card-sidebyside {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(20, 20, 20, 0.8) 100%);
  border-radius: 25px;
  padding: 3rem;
  border: 2px solid rgba(227, 27, 34, 0.3);
  box-shadow: 0 15px 50px rgba(227, 27, 34, 0.3);
  transition: all 0.3s ease;
  width: 100%;
}

.offer-card-sidebyside:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 70px rgba(227, 27, 34, 0.5);
  border-color: var(--primary);
}

.offer-card-sidebyside h3 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.offer-card-sidebyside .offer-price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 1.5rem;
}

.offer-description {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.offer-description p {
  margin: 0;
}

.offer-card-sidebyside .details-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(227, 27, 34, 0.2);
}

.offer-card-sidebyside .offer-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.offer-card-sidebyside .offer-features li {
  padding: 0.9rem 0;
  font-size: 1.1rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.offer-card-sidebyside .offer-features li:last-child {
  border-bottom: none;
}

.offer-card-sidebyside .offer-features li:hover {
  color: var(--text-primary);
  padding-left: 0.5rem;
}

.offer-card-sidebyside .offer-features li i {
  color: var(--primary);
  margin-right: 0.8rem;
  font-size: 1.2rem;
}

.offer-capacity {
  background: rgba(227, 27, 34, 0.1);
  border-left: 3px solid var(--primary);
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.offer-capacity i {
  color: var(--primary);
  font-size: 1.2rem;
}

.btn-full-width {
  width: 100%;
  display: block;
  text-align: center;
  padding: 1.2rem 2rem;
  font-size: 1.2rem;
  font-weight: 700;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .offers-grid-horizontal {
    padding: 0 1rem;
  }

  .offer-card-horizontal {
    padding: 2rem 1.5rem;
  }

  .offer-header-horizontal {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .offer-header-horizontal h3 {
    font-size: 1.6rem;
  }

  .offer-price-horizontal {
    font-size: 2.5rem;
  }

  .offer-content-horizontal {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .offer-features-horizontal li {
    font-size: 1rem;
    padding: 0.6rem 0;
  }

  .offer-cta-horizontal .btn-primary {
    padding: 0.9rem 2rem;
    font-size: 1rem;
    width: 100%;
  }

  /* Side-to-Side Mobile */
  .offers-grid-sidebyside {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .offer-visual-column {
    display: none;
  }

  .offer-details-column {
    order: 1;
  }

  .offer-card-sidebyside {
    padding: 2rem 1.5rem;
  }

  .offer-card-sidebyside h3 {
    font-size: 1.8rem;
  }

  .offer-card-sidebyside .offer-price {
    font-size: 2.8rem;
  }

  .offer-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .offer-card-sidebyside .offer-features li {
    font-size: 1rem;
    padding: 0.7rem 0;
  }

  .offer-capacity {
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
  }

  .offer-image-main,
  .offer-image-secondary {
    height: 250px;
  }

  .offer-image-single img {
    height: 400px;
  }
}

.gallery {
  padding: 8rem 2rem;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.gallery-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(227, 27, 34, 0.8),
    rgba(181, 21, 27, 0.8)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.15);
}

.gallery-item::after {
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: white;
  opacity: 0;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.testimonials {
  padding: 8rem 2rem;
  background: var(--bg-dark);
}

.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.testimonial-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.testimonial-card::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.1;
}

.testimonial-rating {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.testimonial-text {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.author-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.trust {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.trust-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.trust-item {
  text-align: center;
}

.trust-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.trust-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.trust-item p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.contact {
  padding: 8rem 2rem;
  background: var(--bg-dark);
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.info-content p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.info-content a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-content a:hover {
  color: var(--primary-light);
}

.payment-methods {
  margin-top: 2rem;
}

.payment-methods h3 {
  margin-bottom: 1rem;
}

.payment-icons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.payment-icons span {
  background: var(--bg-card);
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-container {
  margin-top: 2rem;
  border-radius: 15px;
  overflow: hidden;
  height: 300px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-form {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: var(--bg-darker);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: "DM Sans", sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--bg-card);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 1.2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(227, 27, 34, 0.4);
}

.cta-final {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  text-align: center;
}

.cta-final h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.cta-final p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.footer {
  background: var(--bg-darker);
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo {
  height: 45px;
  width: auto;
  display: block;
  margin-bottom: 1.5rem;
}

.footer-about p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-section h4 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background: #25d366;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: pulse 2s infinite;
  text-decoration: none !important;
  border: none !important;
  outline: none !important;
  padding: 0 !important;
  margin: 0 !important;
  -webkit-tap-highlight-color: transparent;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
  background: #22bf5b;
  text-decoration: none !important;
}

.whatsapp-float i {
  font-size: 2.5rem !important;
  color: white !important;
  line-height: 1 !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  text-decoration: none !important;
  background: none !important;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-image {
    display: none;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.98);
    width: 80%;
    height: 100vh;
    padding: 5rem 2rem;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 20px 0 50px rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
  }

  .nav-menu.active {
    left: 0;
  }

  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1999;
  }

  .menu-overlay.active {
    display: block;
  }

  .mobile-toggle {
    display: block;
  }

  /* WEGOTYOU: Mobile Header Layout Update */
  .nav-container {
    position: relative;
    /* Allow absolute positioning of logo */
  }

  .cta-phone {
    order: -1;
    /* Move to the left */
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-content h1 {
    font-size: 2.2rem;
    word-wrap: break-word;
    hyphens: auto;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
  }

  .nav-menu a {
    padding: 1.5rem 0;
    width: 100%;
    font-size: 1.2rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .services-grid,
  .offers-grid,
  .gallery-grid,
  .testimonials-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .offer-card.featured {
    transform: scale(1);
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .mobile-action-bar {
    display: none;
  }

  .whatsapp-float {
    display: flex !important;
  }

  body {
    padding-bottom: 0;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 1rem;
  }

  .hero {
    padding: 6rem 1rem 3rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-image {
    grid-template-columns: 1fr;
  }

  .hero-image img:nth-child(n + 3) {
    display: none;
  }

  .services,
  .offers,
  .gallery,
  .testimonials,
  .trust,
  .contact {
    padding: 4rem 1rem;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }

  /* Hero Buttons - Smaller on Mobile */
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }

  /* Badges - Smaller on Mobile */
  .offer-card.featured::before {
    padding: 0.3rem 1rem;
    font-size: 0.7rem;
    top: -12px;
  }

  .payment-icons span {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  /* Offer Buttons - Mobile Adjustments */
  .offer-card .btn-primary {
    margin-top: 1.5rem;
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
  }

  /* Fix About Us Section on Mobile - FULL WIDTH FORCE */
  .about-us {
    padding: 0 !important;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    min-height: auto;
  }

  .about-container {
    padding: 3rem 1.5rem;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
    border: none !important;
    background: rgba(0, 0, 0, 0.75);
  }

  .about-container .section-header {
    margin-bottom: 0.5rem;
  }

  .about-container h2 {
    font-size: 1.8rem;
    /* Title remains prominent */
    margin-bottom: 0.5rem;
  }

  .about-description {
    font-size: 0.9rem !important;
    /* Text much smaller */
    line-height: 1.4 !important;
    margin-top: 0.5rem;
    font-weight: 400;
  }
}

.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: #ffd700;
  padding: 0.8rem 0;
  z-index: 20;
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  margin-bottom: 2rem;
  display: flex;
}

@media (max-width: 768px) {
  .ticker-wrap {
    padding: 0.4rem 0;
  }
}

@media (min-width: 769px) {
  .ticker-wrap {
    transform: rotate(-1deg);
    margin-top: -1rem;
  }
}

.ticker {
  display: flex;
  white-space: nowrap;
  will-change: transform;
  animation: ticker 25s linear infinite;
}

.ticker-item {
  font-size: 1.2rem;
  font-weight: 900;
  color: #000;
  text-transform: uppercase;
  padding: 0 0.5rem;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
}

.ticker-item::after {
  content: "•";
  margin-left: 2rem;
  opacity: 0.5;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.ticker-wrap:hover .ticker {
  animation-play-state: paused;
}

.about-us {
  padding: 10rem 2rem;
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../images/gallery-3.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* Parallax effect */
  position: relative;
  color: white;
}

@media (max-width: 768px) {
  .about-us {
    background-image:
      linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
      url("../images/gallery-3-800w.webp");
    background-attachment: scroll;
  }
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-description {
  font-size: 1.6rem;
  /* Slightly bigger for impact */
  color: white;
  /* For readability on image */
  line-height: 1.8;
  margin-top: 2rem;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Events Parallax Section */
.events-parallax {
  padding: 8rem 2rem;
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../images/hero-4.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* Parallax effect */
  position: relative;
  color: white;
  text-align: center;
}

@media (max-width: 768px) {
  .events-parallax {
    background-image:
      linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
      url("../images/hero-4-800w.webp");
    background-attachment: scroll;
  }
}

.events-parallax .section-header {
  margin-bottom: 3rem;
  color: white;
}

.events-parallax .section-header h2 {
  color: white;
}

/* Fix duplicate/broken CSS and adjust Ticker Width */
.events-parallax .ticker-wrap {
  background: rgba(255, 215, 0, 0.9);
  transform: rotate(-1deg);
  margin: 2rem calc(-50vw + 50%);
  width: 100vw;
  border: none;
  position: relative;
  left: 0;
}

.how-we-work {
  padding: 8rem 2rem;
  background: var(--bg-darker);
}

.events-parallax .ticker-item {
  color: black;
  /* Dark text for better readability on gold */
}

.event-motto {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 3rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .events-parallax {
    background-attachment: scroll;
    /* Disable parallax on mobile */
    padding: 4rem 1rem;
  }

  .events-parallax .ticker-wrap {
    transform: rotate(0);
    margin: 1.5rem -1rem;
    width: calc(100% + 2rem);
  }

  .event-motto {
    font-size: 1.2rem;
    margin-top: 2rem;
  }
}

.process-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.process-item {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  min-height: 320px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: grid;
  grid-template-rows: 1fr auto auto;
  /* Spacer, Number, Title */
  align-items: end;
  text-align: left;
  background: var(--bg-card);
  isolation: isolate;
}

.process-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  border-color: var(--primary);
}

.process-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.process-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.process-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.5) 60%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.process-item:hover .process-image-wrapper img {
  transform: scale(1.1);
}

.process-number {
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.process-item h3 {
  position: relative;
  z-index: 10;
  color: white;
  margin: 0;
  font-size: 1.4rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  min-height: 3.6rem;
  /* Reserve space for 2-3 lines */
  display: flex;
  align-items: flex-start;
  /* Align text to top of its reserved space */
}

.process-motto {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 5rem;
  flex-wrap: wrap;
}

.motto-word {
  font-size: 2.5rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -1px;
  background: linear-gradient(135deg, white, #e0e0e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.motto-divider {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  display: inline-block;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .process-motto {
    flex-direction: column;
    gap: 1rem;
  }

  .motto-divider {
    display: none;
  }

  .motto-word {
    font-size: 2rem;
  }
}

.offer-card .btn-primary {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
  width: auto;
  align-self: center;
}

.details-content {
  padding: 1rem 0 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  opacity: 0.9;
}

.details-title {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* FAQ Section */
.faq {
  padding: 8rem 2rem;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
  position: relative;
}

.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 0;
  transition: all 0.3s ease;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  position: relative;
}

.faq-question h3 {
  font-size: 1.3rem;
  color: var(--text-primary);
  font-weight: 500;
  margin: 0;
  padding-right: 2rem;
  transition: color 0.3s ease;
}

.faq-toggle-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: rotate(45deg);
}

.faq-item.active .faq-question h3 {
  color: var(--primary);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.faq-content {
  padding-bottom: 2.5rem;
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.faq-item.active .faq-content {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive tweaks for FAQ */
@media (max-width: 768px) {
  .faq-question h3 {
    font-size: 1.1rem;
  }
}

/* Modal Styles - Option 1: Glassmorphism */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  /* Hidden by default */
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal.active {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: -1;
}

.modal-content {
  background: var(--bg-card);
  width: 100%;
  max-width: 900px;
  max-height: 85vh;
  border-radius: 20px;
  border: 1px solid rgba(227, 27, 34, 0.2);
  position: relative;
  padding: 3rem 2rem;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: modalBounce 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalBounce {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(30px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Custom Scrollbar for Modal */
.modal-content::-webkit-scrollbar {
  width: 8px;
}

.modal-content::-webkit-scrollbar-track {
  background: var(--bg-dark);
  border-radius: 0 20px 20px 0;
}

.modal-content::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--bg-darker);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 2rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: rotate(90deg);
}

/* Terms Styling */
.terms-container .section-title {
  margin-bottom: 3rem;
  text-align: center;
  font-size: 2.5rem;
  background: linear-gradient(135deg, white, #ccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.terms-section {
  margin-bottom: 2.5rem;
}

.terms-section h3 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.step-num {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  -webkit-text-fill-color: white;
  /* Fix for gradient text overlap */
  flex-shrink: 0;
}

.terms-subset {
  margin-left: 1rem;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(227, 27, 34, 0.15);
  margin-bottom: 1.5rem;
}

.terms-subset h4 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
}

.terms-subset p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.terms-list,
.check-list,
.cross-list,
.list-dots {
  list-style: none;
  margin-top: 1rem;
}

.terms-list li,
.check-list li,
.cross-list li,
.list-dots li {
  margin-bottom: 0.8rem;
  color: var(--text-secondary);
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.check-list i {
  color: #4caf50;
  margin-top: 4px;
}

.cross-list i {
  color: var(--primary);
  margin-top: 4px;
}

.list-dots li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  margin-top: 10px;
  flex-shrink: 0;
}

.warning-text {
  color: var(--primary);
  font-weight: 700;
}

.additional-notice {
  padding: 2rem;
  background: rgba(227, 27, 34, 0.05);
  border-radius: 15px;
  border: 1px dashed var(--primary);
  text-align: center;
}

@media (max-width: 600px) {
  .modal {
    padding: 1rem;
  }

  .modal-content {
    padding: 2.5rem 1.5rem;
  }

  .terms-container .section-title {
    font-size: 1.8rem;
  }
}

/* Facebook Reviews Grid Layout */
.facebook-reviews-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto 0;
  width: 100%;
}

.fb-review-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.fb-review-wrapper iframe {
  max-width: 100% !important;
  border-radius: 8px;
}

.testimonials-cta {
  text-align: center;
  margin-top: 3rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

@media (max-width: 1024px) {
  .facebook-reviews-container {
    grid-template-columns: 1fr;
    gap: 1rem;
    /* Reduced gap */
    padding: 0 1rem;
  }

  .fb-review-wrapper {
    padding: 0;
    overflow: visible;
  }

  /* Fix for mobile clipping: adjusted height to reduce empty space */
  .fb-review-wrapper iframe {
    min-height: 280px !important;
  }
}

/* Success Modal Style */
#successModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

#successModal.active {
  opacity: 1;
  visibility: visible;
}

.success-modal-content {
  background: var(--bg-card);
  border: 1px solid var(--primary);
  padding: 3rem 2rem;
  border-radius: 20px;
  max-width: 450px;
  width: 90%;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  position: relative;
  box-shadow: 0 20px 60px rgba(227, 27, 34, 0.2);
}

#successModal.active .success-modal-content {
  transform: translateY(0);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 30px rgba(227, 27, 34, 0.4);
}

.success-modal-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
}

.success-modal-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.close-modal-btn {
  background: transparent;
  border: 2px solid var(--text-secondary);
  color: var(--text-primary);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.close-modal-btn:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
}

/* Force Spinner Animation */
@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.fa-spin {
  animation: fa-spin 1s linear infinite !important;
}
