.elementor-782 .elementor-element.elementor-element-fd75895{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-782 .elementor-element.elementor-element-51e4bb0 > .elementor-element-populated{padding:0px 0px 0px 0px;}.elementor-782 .elementor-element.elementor-element-049f0d5 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-782 .elementor-element.elementor-element-3f64c25{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-782 .elementor-element.elementor-element-8c65dee > .elementor-element-populated{padding:0px 0px 0px 0px;}.elementor-782 .elementor-element.elementor-element-25b1fa2 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-782 .elementor-element.elementor-element-42f4d21{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-782 .elementor-element.elementor-element-62142a4 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-782 .elementor-element.elementor-element-17e201f{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-782 .elementor-element.elementor-element-d978986{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-782 .elementor-element.elementor-element-c2aa6be{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-782 .elementor-element.elementor-element-0ecf967 > .elementor-element-populated{padding:0px 0px 0px 0px;}.elementor-782 .elementor-element.elementor-element-6eccc07 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-782 .elementor-element.elementor-element-5f6317b > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-049f0d5 *//* HEADER FIX */
.site-header {
  border-bottom: 2px solid var(--black);
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  position: relative;
  z-index: 50;
}

/* brand */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  letter-spacing: 1px;
}

/* simple square icon */
.brand-icon {
  width: 14px;
  height: 14px;
  border: 2px solid var(--blue);
  display: inline-block;
}

/* nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
  position: relative;
}

/* dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 140%;
  left: 0;
  background: var(--white);
  border: 2px solid var(--black);
  min-width: 220px;
  display: none;
  flex-direction: column;
}

.dropdown-menu a {
  padding: 14px 18px;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background: var(--gray);
}

/* show dropdown on hover */
.nav-dropdown:hover .dropdown-menu {
  display: flex;
}

/* responsive */
@media (max-width: 800px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 20px;
  }
}

/* ===== MOBILE HEADER ===== */
@media (max-width: 768px) {

  .site-header {
    padding: 18px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  /* brand stays top */
  .brand {
    font-size: 20px;
  }

  /* nav becomes stacked */
  .main-nav {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-top: 2px solid var(--black);
  }

  .main-nav > a,
  .nav-dropdown > a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid #ddd;
  }

  /* dropdown fix for mobile */
  .nav-dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    border: none;
    border-left: 2px solid var(--black);
    margin-left: 10px;
    width: calc(100% - 10px);
  }

  .dropdown-menu a {
    padding: 12px 0 12px 16px;
    font-size: 14px;
  }

  /* show dropdown on tap/hover */
  .nav-dropdown:hover .dropdown-menu {
    display: flex;
  }
}

/* HAMBURGER */
.hamburger {
  display: none;
  background: none;
  border: 2px solid var(--black);
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  margin: 5px 0;
  transition: 0.3s;
}

/* MOBILE */
@media (max-width: 768px) {

  .site-header {
    flex-direction: row;
    justify-content: space-between;
    padding: 18px 24px;
  }

  .hamburger {
    display: block;
  }

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    background: var(--white);
    border-top: 2px solid var(--black);
    margin-top: 16px;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav a,
  .nav-dropdown > a {
    padding: 16px 24px;
    border-bottom: 1px solid #ddd;
  }

  /* dropdown inside mobile menu */
  .dropdown-menu {
    position: static;
    border: none;
    border-left: 2px solid var(--black);
    margin-left: 24px;
    display: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: flex;
    flex-direction: column;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-62142a4 *//* LOAD MORE */
.more-photos {
  display: none;
  margin-top: 30px;
}

.load-more-wrapper {
  margin-top: 40px;
  text-align: center;
}

.load-more-btn {
  padding: 14px 34px;
  background: transparent;
  border: 2px solid var(--black);
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.load-more-btn:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ac930b5 *//* TIMELINE */
.timeline {
  padding: 80px 60px;
  background: var(--white);
  border-bottom: 2px solid var(--black);
}

.timeline h3 {
  font-size: 36px;
  margin-bottom: 50px;
}

.timeline-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  position: relative;
}

/* line */
.timeline-track::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--black);
  z-index: 0;
}

.milestone {
  position: relative;
  padding-top: 60px;
  border: 2px solid var(--black);
  background: var(--white);
  padding: 60px 20px 30px;
  transition: 0.3s ease;
  z-index: 1;
}

.milestone:hover {
  transform: translateY(-8px);
  border-color: var(--blue);
}

.milestone h4 {
  margin-bottom: 8px;
  font-size: 16px;
}

.milestone p {
  font-size: 14px;
  color: #444;
}

/* dot */
.dot {
  position: absolute;
  top: -14px;
  left: 20px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border: 3px solid var(--black);
  transition: 0.3s;
}

.milestone:hover .dot {
  background: var(--blue);
  border-color: var(--blue);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .timeline-track {
    grid-template-columns: 1fr;
  }

  .timeline-track::before {
    display: none;
  }

  .milestone {
    padding-top: 40px;
  }

  .dot {
    top: 20px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2c3488d *//* RATINGS */
.ratings {
  padding: 20px 20px;
  background: var(--gray);
  border-bottom: 2px solid var(--black);
}

.ratings h3 {
  font-size: 36px;
  margin-bottom: 40px;
}

.rating-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.rating-card {
  background: var(--white);
  border: 2px solid var(--black);
  padding: 30px;
  box-shadow:
    0 0 0 rgba(10, 60, 255, 0),
    0 8px 30px rgba(10, 60, 255, 0.12);
  transition: 0.3s ease;
}

.rating-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 0 rgba(10, 60, 255, 0),
    0 14px 45px rgba(10, 60, 255, 0.18);
}

/* header */
.rating-header {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.rating-header svg {
  width: 28px;
  height: 28px;
  fill: var(--blue);
}

/* stars */
.rating-score {
  font-size: 22px;
  letter-spacing: 4px;
  color: var(--blue);
  margin-bottom: 10px;
}

/* text */
.rating-text {
  font-size: 14px;
  color: #444;
}

/* RESPONSIVE */
@media (max-width: 700px) {
  .rating-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-d978986 *//* BIG TYPE INTERACTION */
.big-type-wrap {
  padding: 20px 0;
  border-bottom: 2px solid var(--black);
  overflow: hidden;
}

.big-type-window {
  width: 100%;
  overflow: hidden;
}

.big-type {
  font-size: 160px;
  font-weight: 800;
  letter-spacing: 6px;
  white-space: nowrap;
  width: max-content;

  /* outline style */
  color: transparent;
  -webkit-text-stroke: 2px var(--blue);
  text-stroke: 2px var(--blue);

  transform: translateX(0);
  transition: color 0.3s ease, -webkit-text-stroke 0.3s ease;
  cursor: default;
}

/* active on hover */
.big-type:hover {
  color: var(--black);
  -webkit-text-stroke: 2px var(--black);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6eccc07 *//* PRICE GLITCH */
.price-wrap {
  margin: 20px 0;
}

.price {
  position: relative;
  font-size: 52px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--black);
}

/* glitch layers */
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  overflow: hidden;
  color: var(--blue);
  opacity: 0.8;
  pointer-events: none;
}

/* left shift */
.glitch::before {
  clip-path: inset(0 0 0 0);
  animation: glitch-left 4s infinite;
}

/* right shift */
.glitch::after {
  clip-path: inset(0 0 0 0);
  animation: glitch-right 4s infinite;
}

@keyframes glitch-left {
  0%, 92%, 100% {
    transform: translate(0);
    opacity: 0;
  }
  93% {
    transform: translate(-3px, -2px);
    opacity: 0.8;
  }
  94% {
    transform: translate(3px, 2px);
  }
  95% {
    transform: translate(-2px, 1px);
  }
}

@keyframes glitch-right {
  0%, 92%, 100% {
    transform: translate(0);
    opacity: 0;
  }
  93% {
    transform: translate(3px, 2px);
    opacity: 0.8;
  }
  94% {
    transform: translate(-3px, -1px);
  }
  95% {
    transform: translate(2px, -2px);
  }
}/* End custom CSS */