*{
    margin: 0;
    padding: 0;
    color: var(--white--);
    font-family: 'Poppins', sans-serif;
    z-index: 1;
}
html{
    scroll-behavior: smooth;
}
:root {
    --black--: #0f0f0f;
    --red--: #a1051c;
    --lightRed--: #f24e5c;
    --white--: #efedef;
    --gray--: #212120;
    --gray2--: #959595;
    --gold--: #f6c845;
    --p--: clamp(0.8rem, 1vw, 1.5vw);
    --h3v2--: clamp(1.3rem, 1.5vw + 1rem, 2rem);
    --h3--: clamp(1rem, 1.5vw + 0.5rem, 1.5rem);
    --h2--: clamp(2rem, 2.5vw, 4vw);
    --h1--: clamp(1.5rem, 2vw, 3vw);
}



/* Start of the HERO Section */
#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black--);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.6s ease-out;
}

.splash-content {
  text-align: center;
  max-width: 80%;
}

.splash-logo {
  width: 80px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 8px rgba(161, 5, 28, 0.5));
}

.splash-text h1 {
  font-size: 2rem;
  font-weight: 500;
  color: var(--white--);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.splash-text p {
  color: var(--gray2--);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.loading-bar {
  width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 auto;
  overflow: hidden;
}

.loading-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--lightRed--), transparent);
  animation: loading 1.5s infinite ease-in-out;
}

@keyframes loading {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(250%); }
}

#splash-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

::-webkit-scrollbar {
    width: 5px; 
}
::-webkit-scrollbar-thumb {
    background: var(--red--);
    border-radius: 300%;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--lightRed--);
}
::-webkit-scrollbar-track {
    background: var(--black--);
}
body{
    
    background-color: var(--black--);
    overflow-x: hidden;
    margin: 0;
}
.hero-section{
    padding: 2% 4% 0 4%;
}
.scroll-down{
    display: none;
}
nav{
    display: flex;
    width: 100%;
    list-style: none;
    justify-content: space-evenly;
    flex-shrink: 1;
    flex-wrap: nowrap;
    position: relative;
    z-index: 5;
}
.left{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -1%;
    margin-right: auto;
    flex-shrink: 1;
    
}
.center{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 3%;
}
.right{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;

}
nav ul{
    display: flex;
    flex-direction: row;
    list-style-type: none;
}
nav ul li a {
    text-decoration: none;
    margin: 0 20px;
    font-size: clamp(1rem, 1.5vw, 3rem);
    position: relative; 
    padding: 5px 0;
    animation: slideInLeft 0.5s ease-out forwards;
    opacity: 0;
    display: inline-block;
}
nav ul li:nth-child(1) a { animation-delay: 3.2s; }
nav ul li:nth-child(2) a{ animation-delay: 3.4s; }
nav ul li:nth-child(3) a{ animation-delay: 3.6s; }
nav ul li:nth-child(4) a{ animation-delay: 3.8s; }
nav ul li:nth-child(5) a{ animation-delay: 4s; }

/* Underline animation */
nav ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background-color: var(--red--);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease-in-out;
}

nav ul li a:hover::after {
    transform: scaleX(1);
}

nav ul li a:hover{
    color: var(--red--);
    transition: .2s;
}
.active{
    color: var(--red--);
}
nav ul li a.active::after {
    transform: scaleX(1);
}
#logo{
    width: clamp(40px, 8vw, 8vw);
    animation: slideInLeft 0.8s ease-out forwards;
    opacity: 0;
    transition: 5s ease-in-out!important; 
}
#logo:hover{
    transform: scale(1.1)!important;
}

#contact-me{
    text-decoration: none;
    display: flex;
    background-color: var(--red--);
    border: none;
    border-radius: 5px;
    padding: clamp(2px, 1vw, 5px) clamp(10px, 4vw, 30px);
    font-size: clamp(.1rem, 1.5vw, 3rem);
    cursor: pointer;
    flex-shrink: 0;
    animation: slideInLeft 0.8s ease-out forwards;
    animation-delay: 3.8s;
    opacity: 0;
    outline: 1px solid;
    outline-color: var(--red--);
    outline-offset: 0px;
    text-shadow: none;
    transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
}
#contact-me:hover{
    background-color: #f24e5c;
    transition: .2s;
    box-shadow: inset 0 0 20px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, .2);
    outline-color: rgba(255, 255, 255, 0);
    outline-offset: 15px;
}
.mainFirstSection{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 5.5%;
}
.mainLeft{
    display: flex;
    flex: 1;        
    width: 100%;
    flex-direction: column;
    align-self: flex-start;
    
}
.mainLeft h1{
    font-weight: normal;
    font-size: clamp(0.5rem, 1.7vw, 2vw);
    line-height: 1;
    margin-bottom: 5%;
    white-space: nowrap;
}
.mainLeft .auto-type{
    font-weight: normal;
    color: var(--lightRed--);
    font-size: clamp(0.5rem, 1.7vw, 2vw);
    line-height: 1;
    z-index: 999;
}
.mainLeft > * {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease-out forwards;
}

.mainLeft > *:nth-child(1) { animation-delay: 4.4s; }
.mainLeft > *:nth-child(2) { animation-delay: 4.8s; }
.mainLeft > *:nth-child(3) { animation-delay: 5s; }
.mainLeft > *:nth-child(4) { animation-delay: 5.4s; }
.mainLeft > *:nth-child(5) { animation-delay: 5.8s; }

.mainLeft #p1{
    background-color: var(--gray--);
    padding: 1% 5%;
    font-size: clamp(1rem, 1.5vw, 2.8rem);
    text-wrap: nowrap;
}
.firstPart{
    display: flex;
    align-items: center;
}
.firstPart hr{
    width: 10vw;
    height: .3vw;
    margin-left: 10%;
    background-color: var(--red--);
    border: none;
}
.mainLeft h2{
    font-size: clamp(1rem, 3.75vw, 4vw);
    white-space: nowrap;
}
#moreAboutMe{
    color: white;
    background-color: var(--black--);
    border: solid var(--red--) 1.5px; 
    font-size: clamp(1vw, 1.7vw, 4vw);
    font-weight: 200;
    border-radius: 5px;
    transition: ease-out .2s;
    cursor: pointer;
    padding: 2% 10%;
    position: relative;
}
#moreAboutMe:before {
    content: '';
    background: linear-gradient(45deg, #a1051c, #d1132a, #f24e5c, #ff9e4f, #a1051c);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

#moreAboutMe:active {
    color: white;
}
#moreAboutMe:hover{
    
    text-shadow: 0 0 10px black;
    border: 1px solid white;
}
#moreAboutMe:hover:after {
    background: transparent;
}
#moreAboutMe:active:after {
    background: black;
}   
#moreAboutMe:hover:before {
    opacity: 1;
}

#moreAboutMe:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

.socialsMainContainer{
    margin-top: 10%;
    position: relative;
    display: inline-block;
}
.socialsContainer{
    margin-top: 5%;
}
.socialsContainer a{
    text-decoration: none;
}
#p2{
    background-color: var(--gray--);
    padding: .5% 2%;
    display: inline;
    font-size: clamp(0.5vw, 1vw, 3vw);
    margin-top: 15%;
}
.fa-brands{
    color: var(--gray2--);
    transition: ease-in-out .2s;
    font-size: 2vw;
    background-color: var(--black--);
    margin-right: 3%;
    cursor: pointer;
}
.fa-brands:hover{
    color: var(--lightRed--);
    transform: scale(1.1);
}
.mainMiddle{
    flex: 2;
    width: 100%;
    max-width: 750px;
    height: auto;
    margin-top: -15vh;
    z-index: 0;
    animation: bounceIn 1s ease-out forwards;
    animation-delay: 4.2s;
    opacity: 0;
}
.mainRight{
    flex: 1; 
    align-self: flex-start;
    position: relative;
}

.mainRight > * {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease-out forwards;
}

.mainRight > *:nth-child(1) { animation-delay: 4.4s; }
.mainRight > *:nth-child(2) { animation-delay: 4.8s; }
.mainRight > *:nth-child(3) { animation-delay: 5s; }
.mainRight > *:nth-child(4) { animation-delay: 5.4s; }


.mainRight h2{
    font-size: clamp(1.3rem, 2vw, 3vw);
    text-align: start;
}
.mainRight h2 span, .description span{
    color: var(--lightRed--);
}
.mainRight .description{
    margin-top: 3%;
    font-size: clamp(0.8rem, 1vw, 1.5vw);
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
}

.slogan{
    margin-top: 20%;
    margin-left: 5%;
    position: absolute;
    font-size: clamp(0.8rem, 0.5vw, 1.5vw);
    height: auto;
}
.auto-type-slogan {
    display: inline;
    font-size: clamp(1rem, 1vw, 1.5vw);
}

.auto-type-slogan p {
    font-weight: normal;
}
.auto-type-slogan span {
    color: var(--lightRed--);
}
.slogan::after{
    content: '';
    width: 0.5rem;
    height: 100%;
    display: block;
    background-color: var(--red--);
    position: absolute;
    left: -20px;
    top: 2px;
}
#mainDisplay{
    width: 100%;
    max-width: 750px;
    height: auto;
    display: block;
    margin: 0 auto;
    position: relative;
}


/* Overlay section */
.overlay {
  height: 0%;
  width: 100%;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.93);
  overflow-y: hidden;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: white;
  display: block;
  transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
  color: var(--red--);
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}
.hrBelow{
    width: 100%;           
    left: 50%;
    transform: translateX(-50%);
    height: 0.5em;
    background-color: var(--red--);
    border: none;
    white-space: nowrap;
    transform-origin: center;
    animation: growFromCenter 1.5s ease-out forwards;
    animation-delay: 4.4s;
    opacity: 0;
}
/* End of the HERO Section */

/* Start of SERVICES Section */
.services{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5% 0;
}
.services h1{
    font-weight: bold;
    font-size: var(--h1--);
    text-align: center;
}
.services h3{
    font-size: var(--h3--);
    font-weight: normal;
    width: 80%;
    text-align: center;
}
.services h3 span{
    font-weight: bold;
    color: var(--lightRed--);
}
.service-cards-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin: 4% 0;
    width: 70%;
    place-items: center;
}
.service-card{
    border: var(--red--) solid 3px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 2rem;
    transition: .3s ease;
    cursor: default;
    
}
@keyframes glow {
    0% {
      box-shadow: 0 0 5px #ff4d4d, 0 0 10px #ff4d4d, 0 0 20px #ff4d4d;
    }
    50% {
      box-shadow: 0 0 10px #ff4d4d, 0 0 20px #ff4d4d, 0 0 40px #ff4d4d;
    }
    100% {
      box-shadow: 0 0 5px #ff4d4d, 0 0 10px #ff4d4d, 0 0 20px #ff4d4d;
    }
  }
.bounce-img {
    transition: transform 0.3s ease;
  }
.bounce-img:hover{
    transform: translateY(-5px);
}
/* Bounce animation */
@keyframes bounce {
0%, 100% {
    transform: translateY(0);
}
30% {
    transform: translateY(-10px);
}
50% {
    transform: translateY(0);
}
70% {
    transform: translateY(-5px);
}
}

.bouncing {
animation: bounce 0.5s ease;
}
.service-card:hover{
    transform: translateY(-10px);
    box-shadow: 0px 0px 25px #ff0000;
    animation: glow 1.5s infinite ease-in-out;
}
.service-card img{
    width: clamp(5rem, 5vw + 5rem, 15rem);
    height: clamp(5rem, 5vw + 5rem, 15rem);
}
.service-name{
    font-weight: bold;
    color: var(--lightRed--);
    font-size: var(--h3--);
    margin-top: 1rem;
}
.service-description{
    align-self: flex-start;
    font-size: var(--p--);
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}
.services h2{
    font-size: var(--h1--);
    color: var(--gold--);
    font-weight: bold;
    text-align: center;
}
.promo-p{
    font-size: var(--p--);
    text-align: center;
}
.promo-p span{
    font-weight: bold;
    color: var(--gold--);
}
.reserve-button{
    color: white;
    background-color: var(--red--);
    padding: .5rem 2rem;
    border-radius: 5px;
    font-size: var(--p--);
    border: none;
    cursor: pointer;
    margin-top: 2rem;
    transition: .3s ease;
}
.reserve-button:hover{
    background-color: var(--lightRed--);
}
#service-card-v2{
    background-color: white;
    padding: 1rem 1.5rem;
    max-width: 380px;
    height: 450px;
    justify-content: flex-start;
}
#service-card-image-v2{
    width: 100%;
    max-width: 380px;
    height: auto;
}
#service-name-v2{
    text-align: center;
}
#service-name-v2, #service-description-v2{
    color: black;
}
#services-v2{
    margin-top: 0;
}
.testimonials{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 5% 0 6% 0;
    scroll-margin-top: 5rem;
}
.testimonials h1{
    font-size: var(--h1--);
    font-weight: bold;
    text-align: center;
}
.testimonials h1 span{
    color: var(--lightRed--);
}
.testimonials-wrapper{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 60%;
    gap: 10%;
    margin: 5% 0 3% 0;
}
#rod{
    transition: .3s ease-in-out;
}
.testimonials-wrapper img{
    height: 315px;
    width: 315px;
    border-radius: 10px;
    
}
#rod:hover{
    transform: rotate(-3deg) scale(1.02);
    animation: glow 1.5s infinite ease-in-out;
}
.testimonials-description-container{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.testimonials-p1{
    font-size: var(--h3--);
}
.stars-container{
    display: flex;
    flex-direction: row;
    margin-top: 1rem;
}
.stars-container img{
    width: 3rem;
    height: 3rem;
}
.testimonials-p2{
    margin-top: 3rem;
    font-size: var(--p--);
}
.works4{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin: 5% 0 10% 0;
}
.works4 h1{
    font-size: var(--h1--);
    margin-bottom: 1rem;
}
.works4 h3{
    font-size: var(--h3--);
}
.works4 h3 span{
    font-weight: bold;
    color: var(--lightRed--);
}
/* End of the SERVICES Section */

/* Start of the WORKS Section */
.works{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5% 0;
}
.works h1{
    font-weight: bold;
    text-align: center;
    font-size: var(--h1--);
    margin-bottom: 2rem;
}
.works h3{
    font-size: var(--h3--);
    font-weight: normal;
    text-align: center;
    margin-bottom: 3rem;
}
.works h3 span{
    color: var(--lightRed--);
    font-weight: bold;
}
.works-content-container{
    display: flex;
    flex-direction: row;
    gap: 5rem;
    width: 80%;
    padding: 3rem 0;
}
.works-content-container img{
    max-width: 50rem;
    max-height: 30rem;
    align-self: center;
    transition: .3s ease-in-out;
}
.works-content-container img:hover{
    transform: scale(1.1);
}
.works-content-description-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.works-content-description-container h3{
    font-size: var(--h3v2--);
    font-weight: bold;
    text-align: center;
    color: var(--lightRed--);
}
.works-content-description-container ul li{
    font-size: var(--p--);
}
.explore-button{
    background-color: var(--red--);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 1rem 3rem;
    text-decoration: none;
    margin-top: 2rem;
    transition: .3s ease;
    font-size: var(--p--);
}
.explore-button:hover{
    background-color: var(--lightRed--);
}
#works2, #works3{
    padding-top: 0;
    margin-top: 0;
}
#works2 img, #works3 img{
    max-width: 365px;
    max-height: 615px;
}
#works-content-container2{
    flex-direction: row-reverse;
    width: 70%;
}
#works-content-container3{
    width: 70%;
}
/* End of the WORKS Section */

/* Start of the FAQ Section */
.faq-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5% 0;
  scroll-margin-top: 2rem;
  width: 80%;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: var(--h1--);
  margin-bottom: 2rem;
}

.faq-item {
  background: #f0f0f0;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #000;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  font-weight: bold;
  
}

.faq-question h3 {
  margin: 0;
  font-size: var(--p--);
  font-weight: bold;
  color: #ff4f64;
}

.faq-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #ff4f64;
}

.icon.minus {
  display: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px;
}

.faq-answer p {
  margin: 10px 0;
  color: black;
  font-size: var(--p--);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-item.active .icon.plus {
  display: none;
}

.faq-item.active .icon.minus {
  display: inline;
}
.faq-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.icon {
  display: inline-block;
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.icon img {
  width: 20px; /* adjust size */
  height: 20px;
  display: block;
}

.icon.plus {
  opacity: 1;
  transform: rotate(0deg);
}

.icon.minus {
  opacity: 0;
  transform: rotate(-90deg);
}

.faq-item.active .icon.plus {
  opacity: 0;
  transform: rotate(90deg);
}

.faq-item.active .icon.minus {
  opacity: 1;
  transform: rotate(0deg);
}

/* End of the FAQ Section */

/* FOOTER SECTION */
footer{
    background-color: var(--gray--);
}
.footer-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 5% 0;
}
.footer-logo-wrapper{

}
.footer-nav-wrapper{

}
.footer-nav-wrapper ul{
    display: flex;
    list-style: none;
    justify-content: center;
}
.footer-nav-wrapper ul li{
    padding: 0 5%;
}
.footer-nav-wrapper ul li a{
    text-decoration: none;
    font-weight: normal;
    color: var(--gray2--);
}
.footer-nav-wrapper ul li:hover{
    transition: .3s;
    transform: scale(1.05);
}
.footer-nav-wrapper ul li a:hover{
    opacity: 1;
    transition: .2s;
    color: white;
}
.footer-logo-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20%;
    margin: 1.5% 0 1.5% 0;
}
.footer-logo-wrapper a i{
    border-radius: 50%;
    font-size: 2rem;
}
.footer-logo-wrapper a i:hover{
    color: var(--white--);
}
.footer-contacts-wrapper{
    display: flex;
    flex-direction: row;
    gap: 10%;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.footer-email-wrapper, .footer-phone-wrapper{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.footer-phone-wrapper i,
.footer-email-wrapper i{
    color: var(--gray2--);
    margin-right: 5%;
    font-size: 1rem;
}
.footer-email-wrapper p, .footer-phone-wrapper p{
    white-space: nowrap;
    color: var(--gray2--);
    font-size: 1rem;
}
.footer-hr{
    position: relative;
    margin-top: 5%;
    opacity: 0.5;
}
.footer-p{
    color: var(--gray2--);
    margin-top: 1.5%;
    font-size: clamp(0.5rem, 1rem, 1.2rem);
    text-align: center;
}

/* MODALS */
.modal {
  display:none;
  position:fixed;
  z-index:1000;
  left:0; top:0;
  width:100%;
  height:100%;
  overflow:auto;
  background-color:rgba(0,0,0,0.5);
}

.modal-content {
  background-color:#fff;
  margin:3% auto;
  padding:2rem;
  border-radius:8px;
  width:90%;
  max-width:800px;
  box-sizing:border-box;
  position:relative;
}
.modal-content h2{
    font-size: var(--h2--);
    color: var(--lightRed--);
}
.close {
  position:absolute;
  top:10px;
  right:15px;
  font-size:24px;
  cursor:pointer;
  color: var(--red--);
}

h2 { text-align:center; margin-bottom:20px; }

/* Grid layout for two columns */
.consultation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 25px;
  row-gap: 15px;
}

/* Inputs and labels inside columns */
.form-column label {
  display:block;
  margin-bottom:5px;
  font-weight:600;
  color: black;
  font-size: var(--p--);
}

.form-column input,
.form-column select,
.form-column textarea,
.form-column option {
  width:100%;
  box-sizing:border-box;
  padding:8px;
  border:1px solid black;
  border-radius:4px;
  margin-bottom:5px;
  font-size: var(--p--);
  color: black;
  transition: border-color 0.3s ease;
}

.form-column input:focus,
.form-column select:focus,
.form-column textarea:focus {
  outline: none;
}

/* Enhanced inline error styles */
.field-error {
  color: #f24e5c !important;
  font-size: 12px !important;
  margin-top: 2px !important;
  margin-bottom: 8px !important;
  display: block !important;
  font-weight: 500 !important;
  animation: fadeInError 0.3s ease-in-out;
}

.input-error {
  border-color: #f24e5c !important;
  background-color: rgba(242, 78, 92, 0.05) !important;
}

.input-error:focus {
  border-color: #f24e5c !important;
  box-shadow: 0 0 0 2px rgba(242, 78, 92, 0.2) !important;
}

@keyframes fadeInError {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form validation summary */
.form-summary-error {
  background-color: rgba(242, 78, 92, 0.1);
  border: 1px solid #f24e5c;
  border-radius: 4px;
  padding: 10px;
  margin-bottom: 15px;
  color: #f24e5c;
  font-size: 14px;
  display: none;
}

.form-summary-error.show {
  display: block;
  animation: fadeInError 0.3s ease-in-out;
}

.form-column textarea{
  resize: vertical;
  min-height: 48px;
  max-height: 200px;
}
/* Consent row full-width */
.consent-row {
  grid-column: 1 / -1;
  display:flex;
  align-items:center;
  margin-top:15px;
justify-content: center;
}
.consent-row input { margin-right:10px; }
.consent-row label{
    color: black;
    text-align: center;
}
/* Submit button */
.modal button {
  padding:.5rem 4rem;
  background:var(--red--);
  color:#fff;
  border:none;
  font-size: var(--p--);
  border-radius:4px;
  cursor:pointer;
  transition: .3s ease-in-out;
}
.modal button:hover { background:var(--lightRed--); }


/* MODALS END */

/* MEDIAS ASPECT RATIOS */
@media (min-width: 1921px) and (max-width: 2560px) {
  .slogan{
    margin-top: 10%;
  }
  .socialsMainContainer{
    margin-top: 5%;
  }
  .mainLeft{
    padding-top: 3%;
  }
  .mainMiddle{
    margin-top: 0;
  }
  .mainRight{
    padding-top: 3%;
  }
  .mainFirstSection{
    margin-top: 2.5%;
  }
  .works-content-container{
    width: 70%;
  }
  #service-card-v2 {
    max-width: 500px;
    height: 500px;
    justify-content: center;
  }
    #service-card-image-v2 {
    width: 100%;
    max-width: 480px;
    height: auto;
  }
  .modal-content {
    max-width:1500px!important;
    }
}
@media screen and (max-height: 450px) {
  .overlay {
    overflow-y: auto;
}
  .overlay a {
    font-size: 20px
}
  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}
/* End of Overlay Section */

.burgerButton{
    display: none;
    font-size: 1.5rem;
}
/* Laptop View Large */
@media screen and (max-width: 1440px) {
    .mainRight h3{
        font-size: 1.5rem;
    }
    .mainRight h2{
        font-size: 1.5rem;
    }
    #mainDisplay{
        margin-top: -5rem;
    }
    .auto-type-slogan{

    }
    .mainMiddle{
        margin-top: -3rem;
    }
    .service-cards-container{
        grid-template-columns: repeat(2, 1fr);
    }
    #service-card-v2{
        max-height: 350px;
    }
}
/* Laptop View */
@media screen and (max-width: 1024px) {
    nav{
        margin-top: 2%;
    }
    #mainDisplay{
        margin-top: 1rem;
    }
    .mainRight h2 {
        font-size: 1rem;
    }
    #moreAboutMe {
        font-size: 1.65vw;
    }
    .slogan::after {
        width: 0.2rem;
    }
    .auto-type-slogan{
        font-size: 0.8rem;
    }
    .mainMiddle{
        margin-top: -6rem;
    }
    .testimonials-wrapper{
        flex-direction: column;
        text-align: center;
    }
    .testimonials-p1{
        margin-top: 5%;
    }
    .testimonials-p2{
        text-align: center;
        width: 100%;
    }
    .stars-container{
        width: 100%;
        justify-content: center;
        align-items: center;
        margin-top: 3%;
    }
    .works-content-container{
        flex-direction: column;
    }
    #works-content-container3{
        flex-direction: row;
    }
    #works2 img, #works3 img{
        max-width: 282.5px;
        max-height: 407.5px;
    }
}
/* Tablet View */
@media screen and (max-width: 768px) {
    main{
        margin-top: 15%;
    }
    #logo{
        width: 7rem;
        margin-top: 10%;
    }
    .burgerButton{
        display: block;
        margin-top: 2%;
        position: relative;
        z-index: 99;
        font-size: 3.5rem;
    }
    .center,.right{
        display: none;
    }
    .slogan{
        margin-top: 15%;
    }
    .mainFirstSection{
        flex-wrap: wrap;
        margin-bottom: 15%;
        padding-bottom: 8%;
        margin-top: -7rem;
    }
    .slogan::after {
        width: 0.5rem;
    }
    .mainLeft {
        padding-top: 5%;
    }
    .mainLeft h1 {
        font-size: 1rem;
        height: 4rem;
        line-height: normal;
    }
    .mainLeft h2{
        font-size: 2.5rem;
    }
    .mainLeft .auto-type {
        font-size: 1rem;
        text-wrap: wrap;
    }
    #p2{
        font-size: 1rem;
    }
    .fa-brands{
        font-size: 1.5rem;
    }
    .mainMiddle{
        flex: 1.5;
        z-index: 1;
        position: relative;
        margin-top: -30%;
    }
    #mainDisplay {
        margin-top: 10rem;
    }
    .mainRight{
        flex-basis: 100%;
        margin-top: 5%;
    }
    .mainRight h2 {
        font-size: 2rem;
    }
    .description{
        margin-top: 2%;
        font-size: 1.3rem!important;
    }
    .slogan{
        margin-top: 5%;
        margin-left: 5%;
        font-size: 1.3rem!important;
    }
    .hrBelow{
        display: none;
    }
    #moreAboutMe {
        font-size: 1.3rem;
        padding: 5% 0;
    }
    .auto-type-slogan {
        font-size: 1.3rem;
    }
    .service-cards-container{
        grid-template-columns: repeat(1, 1fr);
    }
    .works-content-container{
        width: 80%;
    }
    .works-content-container{
        padding: 0;
        gap: 2rem;
    }
    .works-content-container img{
        max-width: 30rem;

    }
    #works2, #works3{
        margin-top: 5rem;
    }
    #works3{
        margin-bottom: 3rem;
    }
    #works-content-container2,#works-content-container3{
        flex-direction: column;
    }
    .consultation-grid {
        grid-template-columns: 1fr;
    }
    
}

/* Mobile View Large */
@media screen and (max-width: 425px) {
    
    body{
        margin: 1.5%;
    }
    #logo{
        margin-top: 15%;
        width: 4rem;
    }   
    .burgerButton{
        display: block;
        margin-top: 2%;
        position: relative;
        z-index: 99;
        font-size: 2.5rem;
    }
    main{
        margin-top: 20%;
    }
    .center,.right{
        display: none;
    }
    .mainLeft{
        margin-top: 20%;
        flex: 1 0 100%;
        order: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .firstPart{
        font-size: 1rem;
    }
    .mainLeft h1{
        height: 1.2rem;
    }
    .mainLeft h2{
        margin: 4% 0;
        font-size: 2rem;
    }
    .firstPart hr {
        display: none;
    }
    .mainFirstSection{
        flex-wrap: wrap;
        margin-bottom: 35%;
    }
    #moreAboutMe{
        padding: 3% 5%;
        font-size: 1.5rem;
    }  
    .fa-brands{
        font-size: 4vw;
    }
    .mainMiddle{
        flex: 1 0 100%;
        z-index: 1;
        order: 2;
        display: inline-block; /* shrink to image size */
        margin-top: 5rem!important;
    }
    #mainDisplay{
        margin-top: 0!important;
    }
    #mainDisplay{
        z-index: 1;
        margin-top: 0;
        width: 70%;
        margin-top: 5rem;
        display: flex;
    }
    .mainMiddle::after {
        content: "";
        display: block;
        width: 100%;
        height: 5px;
        background-color: var(--red--);
        margin-top: 0;
        position: relative;
        z-index: 500;
    }
    .mainRight{
        flex-basis: 100%;
        margin-top: 8%;
        order: 3;
    }
    .mainRight h2 {
        font-size: 1.5rem;
    }
    .description{
        font-size: 1rem!important;
    }
    .socialsMainContainer {
        margin-top: 5%; 
        display: flex; 
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .socialsMainContainer p{
        text-wrap: nowrap;
        font-size: 1rem;
    }
    .slogan{
        margin-top: 10%;
        margin-left: 10%;
        width: 80%;
        display: inline-block;
        justify-content: center;
        font-size: 1rem!important;
        overflow-y: scroll;
    }
    
    .hrBelow{
        margin-top: -66%;
        height: 0.3rem;
        z-index: 55;
        position: relative;
    }
    .mainLeft .auto-type {
        font-size: 1.2rem;
    }
    .mainLeft h1 {
        font-size: 1.2rem;
    }
    .socialsContainer {
        margin-top: 5%;
        display: flex;
        flex-wrap: nowrap;
        gap: 1rem;
    }
    .socialsContainer a i{
        font-size: 2rem;
        margin-top: 20%;
    }
    .footer-nav-wrapper ul li,.footer-email-wrapper p ,.footer-logo-wrapper a i, .footer-phone-wrapper p, .footer-p{
        font-size: 0.8rem;
    }
    .footer-logo-wrapper a i{
        font-size: 1rem;
    }
    .services{
        margin-top: 50%;
    }
    .service-cards-container{
        width: 80%;
        padding: 0 5%;
    }
    .service-card{
        padding: 1.5rem 1rem;
    }
    .services h3{
        width: 100%;
    }
    #service-card-v2{
        max-height: 300px;
    }
    .works-content-container img{
        max-width: 20rem;
    }
    #works-content-container2{
        flex-direction: column;
    }
    .faq-section {
        margin: 0px 5%;
        width: 90%;
    }
    .faq-toggle{
        padding: 0;
    }
}   

/* Mobile View Medium */
@media screen and (max-width: 375px) {
    .mainFirstSection{
        margin-bottom: 45%;
    }
    .hrBelow{
        margin-top: -72%;
        height: 0.3rem;
        z-index: 55;    
        position: relative;
    }
    .burgerButton{
        font-size: 2.2rem;
    }
    #logo{
        width: 60px;
        margin-bottom: 10%;
    }
    .mainLeft{
        margin-top: 0;
    }
    .mainLeft h2{
        font-size: 2rem;
    }
}

/* Mobile View Small */
@media screen and (max-width: 320px) {
    main{
        margin-top: 20%;
    }
    .burgerButton{
        font-size: 2rem;
    }
    #logo{
        width: 50px;
    }
    .hrBelow{
        margin-top: -86%;
        height: 0.1rem;
        z-index: 55;
        position: relative;
    }
    .mainLeft h2{
        font-size: .85rem;
    }
    .mainLeft{
        margin-top: -1  0%;
    }
    .mainLeft h2{
        font-size: 2rem;
    }
    #moreAboutMe {
        font-size: 1rem;
    }
    .mainFirstSection {
        margin-bottom: 75%;
        margin-top: 4rem;
    }
    .footer-nav-wrapper ul li,.footer-email-wrapper p ,.footer-logo-wrapper a i, .footer-phone-wrapper p, .footer-p{
        font-size: 0.6rem;
    }
    .mainLeft #p1, #p2{
        font-size: 0.8rem;
    }
    .mainRight h2{
        font-size: 1.2rem;
    }
    .promo-p{
        margin-top: 10%;
        width: 80%;
    }
    .services h2{
        margin-top: 10%;
    }
    .reserve-button{
        margin-bottom: 10%;
    }
    .testimonials-wrapper{
        width: 90%;
    }
    .testimonials-wrapper img{
        height: 215px;
        width: 215px;
    }
    .stars-container img {
        width: 2rem;
        height: 2rem;
    }
    .testimonials-p2 {
        margin-top: 2rem;
    }
    .works-content-container img{
        max-width: 15rem;
    }
    .works h3{
        margin-bottom: 1rem;
    }
}

/* Animation Section */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes bounceIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    60% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scaleUp {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes growFromCenter {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes borderGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/*End of Animation Section*/

/* Honeypot (anti-bot) fields: hidden visually, present in DOM */
.hp-wrap {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.hp-wrap label,
.hp-wrap input,
.hp-wrap textarea,
.hp-wrap select {
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Form actions wrapper to replace inline styles */
.form-actions {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 15px;
}

/* Accent text to replace inline span styles in typed slogan */
.accent {
  color: #f24e5c !important;
}

/* Toast notifications (no inline styles required) */
.toast-container {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: min(90vw, 360px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  color: #000 !important; /* force black text */
  font-size: 0.95rem;
  gap: 12px;
  border: 1px solid transparent;
  background: #fff;
  opacity: 0;
  transform: translateY(-6px);
  animation: toast-in 200ms ease forwards;
}

.toast--success { background: #e6ffed; border-color: #2ecc71!important; color: #000 !important; }
.toast--error { background: #ffe6e6; border-color: #e74c3c!important; color: #000 !important; }

.toast__close {
  background: transparent;
  border: none;
  color: #000!important;
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
}

/* Force all toast content to render black, overriding globals */
.toast, .toast * {
  color: #000 !important;
  fill: #000 !important;   /* for svg icons */
  stroke: #000 !important; /* for svg paths */
}

@keyframes toast-in {
  to { opacity: 1; transform: translateY(0); }
}



