/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

/* menu mobile */
.menu-item .social-icons .elementor-item {
	display: none;
}

.social-icons {
	display: flex;
	justify-content: center;
}

.social-icons a {
	padding: 5px;
}

.social-icons img {
	width: 25px;
}
/* fine menu mobile */

.elementor-slideshow__title {
	display: none;
}

.slider-home .swiper-pagination {
	bottom: 40px;
}

.pointer-events-none {
	pointer-events: none;
}

.custom-controls {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 10px 40px;
  box-sizing: border-box;
}

.custom-controls button {
  background: transparent;
  color: #fff;
  border: none;
  font-size: 20px;
  padding: 6px 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.custom-controls button:hover {
  background: rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 650px) {
	.custom-controls {
		padding: 5px 10px;
	}
	.custom-controls button {
		font-size: 18px;
	}
	.elementor-image-gallery .gallery.gallery-columns-2 .gallery-item {
	max-width: 50%;
}
}


.page-get-in-touch footer {
	display: none;
}


/* timeline */
.process-timeline-wrap {
  width: 100%;
  padding: 60px 20px;
  box-sizing: border-box;
  font-family: Georgia, 'Times New Roman', serif;
}

.process-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1300px;
  margin: 0 auto;
  height: 140px;
}

/* Horizontal line — sits at exactly the vertical midpoint */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #b5a98a;
  transform: translateY(-50%);
  z-index: 0;
}

.timeline-step {
  position: relative;
  flex: 1;
  height: 140px;
  z-index: 1;
}

/* Node — always perfectly centred on the line */
.timeline-node {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #b5a98a;
  background: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* Shared tick styles */
.timeline-tick {
  position: absolute;
  width: 1px;
  background: #b5a98a;
  left: 50%;
  transform: translateX(-50%);
}

/* Shared number styles */
.timeline-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  color: #b5a98a;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}

/* Shared label styles */
.timeline-label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  color: #b5a98a;
  text-align: center;
  line-height: 1.4;
  white-space: nowrap;
	transition: transform 0.3s ease;
}

.timeline-label:hover {
    transform: translateX(-50%) translateY(-3px);
}

.timeline-label-top {
  padding-bottom: 30px;
}

.timeline-label-bottom {
  padding-top: 30px;
}

/* ── ABOVE steps: label above the line, tick + number below ── */

/* Label: above the node, no tick on this side */
.timeline-step.above .timeline-label-top {
  bottom: calc(50% + 5px + 6px);
}
/* Tick: just below the node */
.timeline-step.above .timeline-tick-top {
  height: 16px;
  top: calc(50% + 5px);
}
/* Number: below the tick */
.timeline-step.above .timeline-number {
  top: calc(50% + 5px + 16px + 4px);
}
.timeline-step.above .timeline-tick-bottom { display: none; }
.timeline-step.above .timeline-label-bottom { display: none; }


/* ── BELOW steps: number + tick above the line, label below ── */

/* Tick: just above the node */
.timeline-step.below .timeline-tick-top {
  height: 16px;
  bottom: calc(50% + 5px);
}
/* Number: above the tick */
.timeline-step.below .timeline-number {
  bottom: calc(50% + 5px + 16px + 4px);
}
/* Label: below the node */
.timeline-step.below .timeline-label-bottom {
  top: calc(50% + 5px + 4px);
}
.timeline-step.below .timeline-tick-bottom { display: none; }
.timeline-step.below .timeline-label-top { display: none; }


/* ── Responsive: vertical layout ── */
@media (max-width: 640px) {
  .process-timeline {
    flex-direction: column;
    align-items: stretch;
    padding-left: 0;
    height: auto;
  }

  /* Vertical line fixed to left edge */
  .process-timeline::before {
    top: 0;
    bottom: 0;
    left: 20px;
    right: auto;
    width: 1px;
    height: 100%;
    transform: none;
  }

  .timeline-step {
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    padding: 14px 0;
    gap: 0;
  }

  /* Reset all absolute positioning */
  .timeline-node,
  .timeline-tick,
  .timeline-number,
  .timeline-label {
    position: static;
    transform: none;
    left: auto;
    top: auto;
    bottom: auto;
    height: auto;
    width: auto;
    padding: 0;
  }

  /* Node: centred on the vertical line (line at left: 20px, half-node = 5px) */
  .timeline-node {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    margin-left: 15px;
    order: 1;
  }

  /* Tick: horizontal, between node and number */
  .timeline-step.above .timeline-tick-top,
  .timeline-step.below .timeline-tick-top {
    display: block;
    width: 16px;
    height: 1px;
    background: #b5a98a;
    flex-shrink: 0;
    order: 2;
  }

  /* Hide unused ticks and all desktop labels */
  .timeline-step.above .timeline-tick-bottom,
  .timeline-step.below .timeline-tick-bottom,
  .timeline-step.above .timeline-label-top,
  .timeline-step.below .timeline-label-top,
  .timeline-step.above .timeline-label-bottom,
  .timeline-step.below .timeline-label-bottom {
    display: none !important;
  }

  /* Number */
  .timeline-number {
    white-space: nowrap;
    font-size: 18px;
    margin: 0 8px 0 6px;
    order: 3;
  }

  /* Mobile label */
  .timeline-label-mobile {
    display: block !important;
    order: 4;
    font-size: 18px;
  }
}

.timeline-label-mobile {
  display: none;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  color: #b5a98a;
  line-height: 1.4;
}