@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
  --red: #cf1f24;
  --dark-red: #8f1014;
  --gold: #c7943b;
  --dark: #070707;
  --text: #333;
  --cream: #fbf5eb;
}

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

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: #fff;
}

a {
  text-decoration: none !important;
}

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

.container {
  width: min(1180px, 92%);
  margin: auto;
}

.ejy-header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 20;
  padding: 22px 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 145px;
}

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-menu a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  position: relative;
}

.nav-menu a.active,
.nav-menu a:hover {
  color: var(--gold);
}

.nav-menu a.active::after {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--red);
  position: absolute;
  bottom: -10px;
  left: 0;
}

.quote-btn,
.primary-btn {
  background: linear-gradient(135deg, #e32a2f, #941114);
  color: #fff;
  padding: 14px 26px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid #ff4b4f;
  box-shadow: 0 8px 20px rgba(180, 20, 25, 0.35);
}

.quote-btn i,
.primary-btn i,
.outline-btn i {
  margin-left: 10px;
}

.hero {
  min-height: 680px;
  background: url("/public/assets/front-end/img/website-images/hero-bg.png")
    center right / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  height: 100dvh;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.98) 0%,
    rgba(0, 0, 0, 0.72) 38%,
    rgba(0, 0, 0, 0.12) 100%
  );
}

.content-data {
  margin-left: -216px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 70px;
}

.hero-tag {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 22px;
}

.hero h1 {
  font-family: "Cinzel", serif;
  font-size: 72px;
  line-height: 1.05;
  max-width: 650px;
  color: #fff;
}

.hero h1 span {
  color: var(--red);
  display: block;
}

.hero-text {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.8;
  margin: 24px 0 35px;
  color: #eee;
}

.hero-buttons {
  display: flex;
  gap: 22px;
  margin-bottom: 55px;
}

.outline-btn {
  color: #fff;
  padding: 14px 28px;
  border: 1px solid var(--gold);
  border-radius: 3px;
  font-weight: 600;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.35);
}

.hero-stats {
  display: flex;
  gap: 38px;
  flex-wrap: wrap;
}

.hero-stats div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-stats i {
  color: var(--gold);
  font-size: 30px;
}

.hero-stats strong {
  font-size: 26px;
  color: #fff;
}

.hero-stats span {
  font-size: 11px;
  color: #ddd;
}

.services {
  background: radial-gradient(circle at top, #fff 0%, #fbf2e6 100%);
  background: url("/public/assets/front-end/img/website-images/services-bg.png")
    center right / cover no-repeat;
  padding: 70px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 45px;
}

.section-title .about-title {
  font-size: 13px;
  font-weight: 700;
  color: #555;
}

.section-title h2 {
  font-family: "Cinzel", serif;
  font-size: 44px;
  color: #333;
  margin: 6px 0 18px;
}

.section-title p {
  max-width: 650px;
  margin: auto;
  font-size: 14px;
  line-height: 1.8;
  color: #666;
}

.section-title.compact {
  margin-bottom: 28px;
}

.section-title.compact h2 {
  font-size: 30px;
}

.service-grid {
  display: flex;
  gap: 55px;
  align-items: center;
}

.service-grid > *:first-child {
  flex: 1.2;
}

.service-grid > *:last-child {
  flex: 0.9;
}

.service-images {
  display: flex;
  gap: 18px;
  position: relative;
}

.big-img,
.small-imgs img {
  border-radius: 14px;
  object-fit: cover;
}

.big-img {
  height: 360px;
  width: 100%;
  flex: 1;
  max-width: 434px !important;
}

.small-imgs {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 190px;
}

.small-imgs img {
  height: 170px;
  width: 100%;
}

.exp-badge {
  position: absolute;
  right: 160px;
  bottom: 0;
  width: 125px;
  height: 125px;
  background: #f8e2ba;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #222;
  flex-direction: column;
}

.exp-badge span {
  display: block;
  font-size: 12px;
  line-height: 1.3;
  margin-top: -10px;
  width: 80%;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.service-list div {
  font-size: 17px;
  font-weight: 600;
  color: #444;
}

.service-list i {
  color: var(--red);
  font-size: 24px;
  margin-right: 18px;
}

.primary-btn.small {
  width: fit-content;
  padding: 13px 22px;
  font-size: 13px;
}

.why {
  padding: 35px 0 45px;
  background: #fff;
}

.why-grid {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.why-grid div {
  flex: 1 1 calc(16.66% - 22px);
  border: 1px solid #ead8c5;
  border-radius: 8px;
  padding: 22px 12px;
  text-align: center;
  background: #fff;
}

.why-grid i {
  color: var(--red);
  font-size: 32px;
  margin-bottom: 14px;
}

.why-grid h4 {
  font-size: 13px;
  color: #333;
}

.events {
  background: #fffaf3;
  padding: 35px 0 55px;
}

.event-grid {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.event-card {
  flex: 1 1 calc(20% - 22px);
  text-align: center;
  position: relative;
}

.event-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.event-card span {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -32px auto 14px;
  position: relative;
  border: 4px solid #fff4e8;
}

.event-card h3 {
  font-size: 17px;
  color: #222;
  line-height: 1.2;
}

.center {
  text-align: center;
  margin-top: 30px;
}

.counter-strip {
  background: linear-gradient(90deg, #250403, #5d0a08, #250403);
  padding: 34px 0;
  color: #fff;
}

.counters {
  display: flex;
  flex-wrap: wrap;
}

.counters div {
  flex: 1 1 25%;
  display: flex;
  align-items: center;
  /* gap: 16px; */
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.counters img {
  width: auto;
  height: 85px;
  margin: 0 auto;
}

.counters strong {
  font-size: 38px;
  color: #f4d092;
}

.counter-content {
  font-size: 13px;
}

.testimonials {
  padding: 55px 0;
  background: #fff;
}

.testimonial-grid {
  display: flex;
  gap: 45px;
  flex-wrap: wrap;
}

.review {
  flex: 1 1 calc(33.33% - 45px);
  border: 1px solid #eee1d2;
  border-radius: 8px;
  background: #fff;
  padding: 36px 34px;
  text-align: center;
  min-height: 230px;
}

.stars {
  color: var(--red);
  font-size: 18px;
  letter-spacing: 5px;
  margin-bottom: 18px;
}

.review p {
  font-size: 13px;
  line-height: 1.8;
  color: #555;
}

.user {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.user img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.user strong {
  font-size: 13px;
}

.faq {
  padding: 115px 0;
  background: linear-gradient(180deg, #fff, #fbf0df);
  background: url("/public/assets/front-end/img/website-images/faq-bg.png")
    center right / cover no-repeat;
}

.faq-grid {
  display: flex;
  align-items: flex-end;
  gap: 40px;
}

.faq-grid > * {
  flex: 1;
}

.section-title.left {
  text-align: left;
}

.ejy-faq {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.ejy-faq .accordion-item {
  border: none !important;
  background: transparent;
  border-radius: 5px !important;
  overflow: hidden;
}

.ejy-faq .accordion-button {
background: #fff !important;
  box-shadow: none !important;
  border: none !important;
  padding: 18px 22px;
  border-radius: 5px !important;

  display: flex;
  align-items: center;
  justify-content: space-between;

  font-size: 14px;
  font-weight: 600;
  color: #222 !important;
}

.ejy-faq .accordion-button:focus {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08) !important;
}

.ejy-faq .accordion-button::after {
  display: none !important;
}

.faq-title {
  flex: 1;
  text-align: left;
}

.faq-icon {
  color: var(--red);
  font-size: 28px;
  line-height: 1;
  transition: 0.35s ease;
  margin-left: 20px;
  font-weight: 400;
}

.ejy-faq .accordion-button:not(.collapsed) .faq-icon {
  transform: rotate(45deg);
}

.ejy-faq .accordion-body {
  background: #fff;
  padding: 0 22px 20px;

  font-size: 13px;
  line-height: 1.8;
  color: #666;

  border-top: 1px solid #f1f1f1;
}

.ejy-faq .accordion-collapse {
  background: #fff;
}

.ejy-faq .accordion-item {
  border-radius: 5px !important;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.faq-grid img {
  max-height: 360px;
  margin-left: auto;
}

.app-section {
  background: url("/public/assets/front-end/img/website-images/app-download.png")
    center / cover no-repeat;
  color: #fff;
  padding: 18px 0 20px;
  min-height: 460px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 2px solid #8a611f;
}

.app-grid {
  display: flex;
  align-items: center;
  gap: 70px;
}

.phones {
  flex: 0 0 38%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phones img {
  max-height: 440px;
  width: auto;
  transform: rotate(-4deg);
  filter: drop-shadow(0 22px 35px rgba(0, 0, 0, 0.65));
}

.app-content {
  flex: 1;
  padding-top: 8px;
}

.app-content h2 {
  font-family: "Cinzel", serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 14px;
}

.app-content h2 span {
  color: var(--red);
}

.app-content p {
  font-size: 16px;
  color: #eee;
  margin: 0 0 35px;
  font-weight: 400;
}

.app-features {
  display: flex;
  align-items: flex-start;
  gap: 44px;
  flex-wrap: nowrap;
  margin-bottom: 34px;
}

.app-features div {
  text-align: center;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  white-space: nowrap;
}

.app-features img {
  display: block;
  width: 45px;
  height: 45px;
  margin: 0 auto;
  margin-bottom: 14px;

  line-height: 1;
}

.app-features span {
  display: block;
}

.store-buttons {
  display: flex;
  gap: 22px;
  align-items: center;
}

.store-buttons img {
  height: 58px;
  width: auto;
  object-fit: contain;
}

.footer {
  background: #070707;
  color: #bbb;
  padding-top: 45px;
  border-top: 2px solid #8a611f;
}

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

.footer-grid > *:nth-child(1) {
  flex: 1.3;
}

.footer-grid > *:nth-child(2) {
  flex: 0.8;
}

.footer-grid > *:nth-child(3) {
  flex: 1;
}

.footer-grid > *:nth-child(4) {
  flex: 1.2;
}

.footer-logo {
  width: 140px;
  margin-bottom: 18px;
}

.footer p,
.footer a {
  font-size: 13px;
  line-height: 1.8;
  color: #bbb;
}

.footer a {
  display: block;
  margin-bottom: 7px;
}

.footer h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 18px;
}

.footer i {
  color: var(--gold);
  margin-right: 8px;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.socials i {
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.copyright {
  text-align: center;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 35px;
  font-size: 13px;
}

.top-btn {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 42px;
  height: 42px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-title.compact {
  text-align: center;
  margin-bottom: 35px;
}

.section-title.compact h2 {
  position: relative;
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 700;
  color: #111;
  letter-spacing: 1px;
  margin: 0;
  padding-bottom: 20px;
  margin-bottom: 22px;
}

.section-title.compact h2::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 92px;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent 0%,
    #d59637 18%,
    #d59637 42%,
    transparent 42%,
    transparent 58%,
    #d59637 58%,
    #d59637 82%,
    transparent 100%
  );
  transform: translateX(-50%);
}

.section-title.compact h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1px;
  width: 10px;
  height: 10px;
  border: 2px solid #d59637;
  background: #fff;
  transform: translateX(-50%) rotate(45deg);
}

@media (max-width: 992px) {
  .faq-grid {
    flex-direction: column;
  }
  .nav-menu {
    display: none;
  }

  .hero h1 {
    font-size: 48px;
  }

  .service-grid,
  .faq-grid,
  .app-grid {
    flex-direction: column;
  }

  .why-grid div {
    flex: 1 1 calc(33.33% - 22px);
  }

  .event-card,
  .review,
  .footer-grid > * {
    flex: 1 1 calc(50% - 22px);
  }

  .counters div,
  .app-features div {
    flex: 1 1 calc(50% - 25px);
  }

  .counters,
  .app-features {
    gap: 25px;
  }

  .app-section {
    min-height: auto;
    padding: 45px 0;
  }

  .app-grid {
    flex-direction: column;
    gap: 35px;
    text-align: center;
  }

  .phones {
    flex: unset;
  }

  .phones img {
    max-height: 340px;
  }

  .app-content {
    padding-top: 0;
  }

  .app-features {
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
  }

  .app-features div {
    flex: 0 0 calc(50% - 28px);
  }

  .store-buttons {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .quote-btn {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-buttons,
  .hero-stats,
  .store-buttons,
  .service-images {
    flex-direction: column;
  }

  .small-imgs {
    width: 100%;
  }

  .exp-badge {
    right: 20px;
  }

  .why-grid div,
  .event-card,
  .review,
  .footer-grid > * {
    flex: 1 1 100%;
  }

  .section-title h2 {
    font-size: 32px;
  }
  .app-content h2 {
    font-size: 30px;
  }

  .app-content p {
    font-size: 14px;
  }

  .phones img {
    max-height: 280px;
  }

  .app-features div {
    flex: 0 0 100%;
  }

  .store-buttons {
    flex-direction: column;
  }
}
