@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@200;300;400;600;700;800&display=swap');

.grecaptcha-badge { visibility: hidden; }
.recaptcha-notice {
    font-size: 12px;
    color: #888;
    margin-top: 8px;
}
.recaptcha-notice a { text-decoration: none; color: #888; }
.recaptcha-notice a:hover { text-decoration: underline; }
#preloader {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}
#preloader.hidden {
	opacity: 0;
	visibility: hidden;
}
.loader {
	border: 5px solid rgba(255, 255, 255, 0.3);
	border-top: 5px solid #000;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	animation: spin 1s linear infinite;
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.content > * {
    width: 76%;
}
.profile-container { 
    display: flex;
    justify-content: center;
    align-items: center;
}
.details {
	margin-top: -3px;
	line-height: 36px;
	margin-bottom: 22px;
}
.name {
	font-size: 43px;
	font-weight: bold;
}
.role {
	font-size: 30px;
	font-weight: lighter;
}
.content h2 {
	margin-bottom: 10px;
	margin-top: 25px;
	font-size:30px;
}
.contact-form {
	margin: 0 auto;
}
.contact-form input, .contact-form textarea, .contact-form button {
	width: 100%;
	padding: 10px;
	margin: 2px 0;
	border: 1px solid #ccc;
	border-radius: 5px;
	box-sizing: border-box;
}

.contact-form button:hover {
	transform: scale(1.01);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.form-field textarea {
	resize: none; 
	height: 100px;
}
.form-field input::placeholder {
	font-size: 14px;
}
.form-field textarea::placeholder{
	font-size: 14px;
}
.about-me ul {
  list-style: none;
  padding: 0;
}

.about-me ul li {
  position: relative;
  padding-right: 24px;
  margin-bottom: 0px;
  font-size: 15px;
}

.about-me ul li::before {
  content: '✓';
  position: absolute;
  right: 0;
  top: 0;
  color: var(--primary-color);
  font-weight: bold;
}
footer a:hover {
  opacity: 0.8;
}
.swiper {
  padding: 0 20px;
  margin-top: 25px;
}

.swiper-button-next {
  right: 16px;
}

.swiper-button-prev {
  left: 16px;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: bold;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 310px;
  margin: auto;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.swiper-slide:hover .video-thumbnail {
  transform: scale(1.03);
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.swiper-slide:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 1;
}
@media (max-width: 600px) {
  .swiper {
    padding: 0 10px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    font-size: 20px;
    right: 8px;
    left: 8px;
  }
}
.video-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.video-modal.active {
  display: flex;
}

.video-modal iframe {
  width: 90%;
  max-width: 720px;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 12px;
}

.action-button:hover {
	opacity: 0.9;
}
.icons-container {
	display: grid;
	justify-content: center;
	max-width: calc(4 * 60px);
	gap: 10px;
	margin: auto;
}
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cols-5 { grid-template-columns: repeat(5, 1fr); }
.icon {
    width: 50px;
    height: 50px;
}
.icon-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.icon-link:hover {
	opacity: 0.7;
}

.icon-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.recommendations {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
    max-width: 400px;
    margin: auto;
    margin-top: 20px;
	padding: 20px;
}
.square {
	width: 100px;
	height: 100px;
    border-radius: 10px;
	border: 1px solid #707070;
}
.faq-container {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-top: 20px;
}
.faq-item.open .faq-answer {
	opacity: 1;
}
.faq-item.open .faq-icon {
	transform: rotate(135deg);
}
.faq-icon {
	width: 24px;
	height: 24px;
	transition: transform 0.3s ease;
	flex-shrink: 0;
}
.about-me {
	font-weight: normal;
	text-align: right;
	margin-bottom: 22px;
}
.gallery {
    /* width: 100%; */
    margin: 0 auto;
}
.grid-item {
    width: 33.3%;
    float: left;
    padding: 5px;
}
.grid-item img {
    width: 100%;
    height: auto;
}
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-content {
    max-width: 90%;
    max-height: 80vh;
    position: relative; 
}
.modal-image-container {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	flex-direction: column;
	gap: 20px;
}
.modal-image-container p {
	color: #fff;
	font-size: clamp(14px, 2vw, 20px);
}
#myModal {
    display: none;
}
.close {
    position: absolute;
	  z-index: 9999;
    top: 15px;
    right: 25px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}
.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}
input,
textarea {
  font-family: inherit;
  font-size: inherit;
}
.reviews-container {
	width: 100%;
}
.action-button-container {
	place-items: center;
	display: grid;
	position: fixed;
	bottom: 0;
	background-color: var(--secondary-color);
	box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.2);
	width: 100%;
	padding: 10px;
  z-index: 9999;
}
@media screen and (min-width: 768px) {
	.modal-image-container {
		flex-direction: row-reverse;
	}
	.reviews-container{ width: 76%; }
}