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

@font-face {
    font-family: 'Inspiration';
    src: url('../webfonts/Inspiration-Regular.woff2') format('woff2');
    font-style: normal;
}

:root {
    --color1: #F4D6C5;
    --color2: #EC9F6C;
    --color3: #D48F61;
    --color4: #FCF6EF;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Host Grotesk', sans-serif;
    background: var(--color1);
}

html, body {
    overflow-x: hidden;
}

h2, h3 {
    font-family: 'Cormorant Garamond', serif;
}

h2 {
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 20%;
    height: 2px;
    background: var(--color2);
}

a:hover {
    cursor: pointer !important;
}

/* Gestion des animations */
[data-animate] {
  --duration: .8s;

  opacity: 1;
  transform: translate(0) scale(1);
  transition:
    opacity var(--duration) ease,
    transform var(--duration) ease;
}


/* Slide directions */
html.js-enabled [data-animate="slide-up"]:not(.animated):not(.revealed) {
  transform: translateY(60px);
  opacity: 0;
}

html.js-enabled [data-animate="slide-down"]:not(.animated):not(.revealed) {
  transform: translateY(-60px);
  opacity: 0;
}

html.js-enabled [data-animate="slide-right"]:not(.animated):not(.revealed) {
  transform: translateX(-60px);
  opacity: 0;
}

html.js-enabled [data-animate="slide-left"]:not(.animated):not(.revealed) {
  transform: translateX(60px);
  opacity: 0;
}

/* Fade simple */
html.js-enabled [data-animate="fade"]:not(.animated):not(.revealed) {
  transform: none;
  opacity: 0;
}

/* Zoom */
html.js-enabled [data-animate="zoom"]:not(.animated):not(.revealed) {
  transform: scale(.65);
  opacity: 0;
}

html.js-enabled [data-animate="dezoom"]:not(.animated):not(.revealed) {
  transform: scale(1.3);
  opacity: 0;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}

#overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Header, Navbar, Mobile menu */
.mobile-menu {
    position: relative;
    background: var(--color1);
    width: 80%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    padding: 5rem 0;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    transform: translateX(100%);
    transition: all 0.5s ease;
}

.mobile-menu.active {
    opacity: 1;
    transform: translateX(0);
}

.close-menu-mobile {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-logo-mobile {
    font-family: 'Inspiration', sans-serif;
    font-size: 4rem;
    font-weight: 500;
}

.nav-menu-mobile {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.8rem;
}

.nav-menu-mobile a {
    text-decoration: none;
    color: black;
    font-size: 1rem;
}

.mobile-menu .btn {
    font-size: 1.2rem;
    text-transform: uppercase;
    padding: 1rem 2rem;
    margin-right: 0;
}

.socials-links-mobile {
    display: flex;
    align-items: center;
}

.btn {
    width: fit-content;
    padding: 0.5rem 1rem;
    background: var(--color2);
    border-radius: 3px;
    margin-right: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.btn:hover {
    background: var(--color3);
    scale: 0.95;
}

header {
    width: 100%;
    transition: background 0.4s ease;
}

header:hover {
    background: white;
}

#nav2 {
    position: fixed;
    top: 0;
    transform: translateY(-200%);
    transition: transform 0.5s ease;
    z-index: 10;
    padding:1rem;
    background: white;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

#nav2.revealed {
    transform: translateY(0);
}

.nav {
    position: relative;
    padding: 2rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 1;
}

#nav1 {
    transition: all 1s ease;
}

#nav1.scrolled {
    opacity: 0;
}

.nav a {
    text-decoration: none;
    color: black;
}

.nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Inspiration', sans-serif;
    font-size: 4rem;
    font-weight: 500;
}

.nav-logo span {
    font-size: 6rem;
    color: var(--color2);
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.8rem;
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: black;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link:hover::after {
    opacity: 1;
}

.socials-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.socials-links .btn {
    color: white;
    text-transform: uppercase;
    padding: 0.5rem 1.5rem;
}

.socials-links svg {
    transition: all 0.3s ease;
}

.socials-links svg:hover {
    scale: 0.9;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: black;
}

/* Main content */
.hero {
    background: var(--color1);
    display: flex;
    position: relative;
}

.hero-left {
    width: 70%;
    display: flex;
    flex-direction: column;
    padding: 7rem 5rem;
}

.hero-left h2 {
    font-size: 4rem;
    font-weight: 600;
}

.hero-left .section-description {
    margin-top: 2rem;
}

.hero-btn {
    margin-top: 3rem;
}

.hero-btn .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-right {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.hero-right img {
    width: 95%;
}

.aboutme {
    position: relative;
    background: var(--color4);
    padding: 5rem;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    z-index: 2;
}

.aboutme-img {
    position: relative;
    width: 35%;
    display: flex;
    align-items: center;
}

.aboutme-img-text {
    position: absolute;
    bottom: -50px;
    right: -100px;
    background: var(--color4);
    padding: 2rem;
    z-index: 10;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
}

.abtme-img {
    width: 100%;
    object-fit: cover;
    z-index: 1;
}

.stain {
    position: absolute;
    top: -40px;
    left: -80px;
    width: 200px;
    transform: rotate(-45deg);
    z-index: 0;
}

.aboutme-content {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.aboutme-content h2 {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.aboutme-content .btn {
    margin-top: 2rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.services {
    position: relative;
    background: url('../assets/servicesbg.webp');
    background-position: center;
    background-size: cover;
    z-index: 1;
    padding-top: 3rem;
    padding-bottom: 7rem;
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

.services-contents {
    padding: 5rem;
    position: relative;
    z-index: 2;
    color: var(--color4);
    display: flex;
    gap: 3rem;
}

.services-header, .services-list {
    width: 50%;
    z-index: 2;
}

.services-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.services-header h2 {
    font-size: 4rem;
    font-weight: 600;
}

.services-header .section-description {
    margin-top: 1rem;
}

.services-header .btn {
    margin-top: 2rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.services-item {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.services-item svg {
    position: absolute;
}

.services-item h3 {
    font-size: 1.8rem;
    margin-top: 8px;
    margin-left: 64px;
}

.services-item h3::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 1px;
    background: var(--color2);
    left: 0;
    top: 60%;
}

.freecall {
    background: var(--color4);
}

.freecall-card {
    position: relative;
    left: 50%;
    width: 75%;
    min-height: 200px;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 20px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    z-index: 2;
}

.freecall-img, .freecall-text {
    width: 50%;
}

.freecall-img {
    background: url('../assets/doit.webp');
    background-position: center;
    background-size: cover;
    border-radius: 20px 0 0 20px;
    opacity: 0.6;
}

.freecall-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--color2);
    border-radius: 50%;
    border: 4px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
    z-index: 3;
}

.freecall-btn button {
    all: unset;
    cursor: pointer;
}

.freecall-btn:hover {
    cursor: pointer;
    transform: translate(-50%, -50%) rotate(135deg) scale(1.05);
}


.freecall-text {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
    font-size: 1.3rem;
    padding: 1rem;
    font-weight: 600;
    border-left: 1px solid var(--color2);
}

.freecall-text a {
    text-decoration: underline;
    color: black;
    font-weight: 800;
}

.toknow {
    font-size: 0.7rem;
    font-weight: 400;
}

.process {
    margin-top: -5rem;
    background: var(--color4);
    padding: 5rem;
    display: flex;
    justify-content: space-between;
}

.process-img-container {
    width: 30%;
    position: relative;
}

.process-img {
    position: relative;
    width: 100%;
    object-fit: cover;
    z-index: 2;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9);
}

.process-img-after {
    position: absolute;
    top: 30px;
    left: 35px;
    width: 100%;
    z-index: 1;
}

.process-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-content h2 {
    font-size: 4rem;
    font-weight: 600;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline-item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline-item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 2.5rem;
    top: 100px; /* ajuste selon la hauteur réelle du numéro */
    width: 1px;
    height: calc(100% - 80px);
    background: var(--color1);
}

.timeline-number {
    position: absolute;
    font-family: 'Inspiration', sans-serif;
    font-size: 5rem;
    color: var(--color2);
}

.timeline-title {
    font-size: 1.5rem;
    margin-left: 6rem;
    margin-top: 2rem;
}

.timeline-title::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 1px;
    background: var(--color1);
    left: 6rem;
    top: 60%;
}

.timeline-text {
    margin-left: 5rem;
}

.benefits {
    background: white;
    padding: 10rem 5rem;
    display: flex;
    justify-content: space-between;
    border-top: 5px solid var(--color3);
    border-bottom: 5px solid var(--color3);
}

.benefits-contents {
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefits-contents h2 {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.benefits-skills {
    width: 55%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.skills {
    width: 80%;
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
}

.skills::before {
    width: 100%;
    height: 1px;
    background: rgb(206, 206, 206);
    content: '';
    position: absolute;
    bottom: -15px;
}

.skills::after {
    width: 0;
    height: 3px;
    background: var(--color2);
    content: '';
    position: absolute;
    bottom: -15px;
    transition: width 3s ease-in-out;
}

.skills.anime::after {
    width: 100%;
}

.skills h3 {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.skills .stat-number {
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.youtube-chanel {
    background: var(--color4);
    display: flex;
    padding: 5rem;
    padding-bottom: 10rem;
}

.youtube-chanel-content {
    width: 45%;
    display: flex;
    flex-direction: column;
}

.section-tag {
    color: var(--color2);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.youtube-chanel-content h2 {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.section-description {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.youtube-chanel-content .btn {
    margin-top: 2rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.youtube-chanel-img {
    position: relative;
    width: 55%;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.youtube-chanel-img::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 200%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.4),
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0;
}

.youtube-chanel-img:hover::before {
    animation: shine 0.5s ease-out;
}

@keyframes shine {
    0% {
        width: 0;
        opacity: 1;
    }
    25% {
        width: 30%;
        opacity: 1;
    }
    50% {
        width: 70%;
        opacity: 1;
    }
    75% {
        width: 150%;
        opacity: 1;
    }
    100% {
        width: 300%;
        opacity: 0;
    }
}

.youtube-chanel-img img {
    object-fit: cover;
    object-position: 60%;
    width: 100%;
    height: 350px;
    border-radius: 10px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--color1);
    border-radius: 50%;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
    opacity: 0.65;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease-in-out;
}

.play-button:hover {
    transform: translate(-50%, -50%) rotate(360deg) scale(0.9);
    opacity: 0.8;
    box-shadow: 2px 2px 10px rgba(255, 255, 255, 1);
}

.reviews {
    background: white;
    padding: 0 5rem;
    padding-bottom: 2rem;
}

.google-business {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.business-link {
    text-decoration: none;
    padding: 1rem 2rem;
    background: #197BFF;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 5px;
}

.business-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.business-details a {
    text-decoration: none;
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    color: black;
    font-size: 1.3rem;
    font-weight: 300;
}

.business-details img {
    width: 175px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.score {
    font-size: 2rem;
    font-weight: 600;
}

.stars {
    font-size: 1.5rem;
    color: #FCBC08;
}

.reviews-numbers {
    font-size: 0.8rem;
    font-weight: 300;
    color: gray;
    align-self: flex-end;
}

.reviews-container {
    position: relative;
    margin-top: -3rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.reviews-container h2 {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.arrow-left {
    z-index: 10;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    cursor: pointer;
}

.arrow-right {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    cursor: pointer;
}

.reviews-slider {
    width: 75%;
    display: flex;
    overflow-x: auto;

    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    gap: 12px;

    /* cacher scrollbar */
    scrollbar-width: none;
}

.reviews-slider::-webkit-scrollbar {
    display: none;
}

.review-slide {
    flex: 0 0 100%;           /* 1 slide = 100% largeur */
    scroll-snap-align: center;
    box-sizing: border-box;
}

.review-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    line-height: 1;
}

.review-card svg {
    width: 100px;
    height: 100px;
    border-radius: 500%;
    border: 5px solid var(--color4);
}

.review-date {
    font-size: 0.6rem;
    color: gray;
}

.review-author {
    font-size: 1.3rem;
    font-weight: 700;
}

.review-card span {
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 800;
}

.logo-bot-text {
    font-size: 0.8rem !important;
    font-weight: 300 !important;
}

/* indicateurs */

.reviews-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.indicator {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.1s ease;
}

.indicator.active {
    background: #000;
    width: 12px;
    height: 12px;
    outline: 2px solid gray;
    outline-offset: 2px;
}

.reviews-container a {
    color: black;
}

.prices {
    background: var(--color4);
    padding: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.prices-header h2 {
    font-size: 4rem;
    font-weight: 600;
}

.prices-container  {
    position: relative;
    margin-top: 2rem;
    background: white;
    width: 75%;
    padding: 3rem 2rem;
    border-radius: 5px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.prices-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    border-radius: 5px 0 0 0;
    background: var(--color2);
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.prices-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    border-radius: 0 0 5px 0;
    background: var(--color1);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.price-item {
    position: relative;
    width: 90%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    width: 100%;
    height: 1px;
    background: gainsboro;
}

.price-title {
    font-size: 1.5rem;
    font-weight: 700;
    font-style: italic;
}

.price-item span {
    font-size: 0.8rem;
    font-weight: 300;
    color: #000;
}

.price-cost {
    position: absolute;
    right: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color3);
}

.multi-pay {
    margin-top: 2rem;
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.multi-pay p {
    font-size: 1.1rem;
    font-weight: 700;
}

.multi-pay span {
    font-size: 0.9rem;
    font-weight: 300;
}

.start-now {
    background: url('../assets/booknow-bg.webp');
    background-position: center;
    background-size: cover;
    padding: 5rem 15rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    text-align: center;
    position: relative;
}

.start-now-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    z-index: 1;
}

.start-now h2, .start-now .section-description, .start-now .start-now-ctas {
    position: relative;
    z-index: 2;
}

.start-now h2 {
    font-size: 4rem;
    font-weight: 600;
}

.start-now h2 span {
    color: var(--color2);
}

.start-now h2::after {
    display: none;
}

.start-now .section-description {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.start-now-ctas .btn {
    text-transform: uppercase;
    padding: 1rem 3rem;
    letter-spacing: 1px;
}

/* Footer */
footer {
    display: flex;
    flex-direction: column;
}

.footer-top {
    display: flex;
    border-top: 10px solid var(--color2);
    border-bottom: 10px solid var(--color2);
}

.footer-top-content {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 1rem;
    background: var(--color2);
}

.footer-top h3 {
    font-size: 2.5rem;
    font-weight: 500;
}

.time-container {
    width: 75%;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
}

.time-container::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    bottom: -10px;
    background: linear-gradient(to right, var(--color2) 10%, white 50%, var(--color2) 90%);
}

.contact-info-container {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info-container svg {
    width: 10%;
}

.contact-info-container a {
    width: 90%;
    text-decoration: underline;
    color: black;
}

.footer-top iframe {
    width: 60%;
}

.footer-mid {
    padding: 2rem;
    background: var(--color1);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-mid-top {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.footer-mid-top::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -10px;
    background: linear-gradient(to right, var(--color1) 2%, white 50%, var(--color1) 98%);
}

.footer-mid-top a {
    text-decoration: none;
    color: black;
    font-family: 'Inspiration', sans-serif;
    font-size: 3rem;
    font-weight: 600;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-socials p {
    font-size: 1.2rem;
    height: 40px;
    font-weight: 600;
}

.footer-socials a {
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    opacity: 0.7;
    scale: 0.9;
}

.footer-mid-bot {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.footer-mid-bot a {
    text-decoration: underline;
    color: black;
    transition: all 0.3s ease;
}

.footer-mid-bot a:hover {
    font-weight: 600;
}

.footer-bot {
    background: var(--color1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-bot a {
    color: black;
}
@media (max-width: 1100px) {
    .hero-btn {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .aboutme-img {
        width: 45%;
    }

    .aboutme-img-text {
        bottom: -70px;
    }

    .process-img-container {
        width: 40%;
    }

    .benefits {
        flex-direction: column;
        gap: 2rem;
    }

    .benefits-contents {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .benefits-skills {
        width: 100%;
    }

    .prices-container {
        width: 100%;
    }

    .start-now {
        padding: 5rem;
    }
}

@media (max-width: 850px) {
    /* Responsive Navbar and mobile menu */
    #nav2 {
        padding: 2rem;
    }

    .nav.scrolled {
        padding: 2rem;
    }

    .nav-logo {
        font-size: 3.5rem;
    }

    .nav-toggle {
        display: flex;
        position: absolute;
        right: 1rem;
    }

    .socials-links {
        display: none;
    }

    .nav-menu {
        display: none;
    }

    /* Responsive main content */
    .hero {
        overflow: hidden;
    }

    .hero-right {
        position: absolute;
        right: 0;
        width: 70%;
        z-index: 1;
        opacity: 0.3;
    }

    .hero-left {
        width: 100%;
        z-index: 2;
    }

    .aboutme {
        flex-direction: column-reverse;
        gap: 7rem;
        padding: 2rem;
    }

    .aboutme-content, .aboutme-img {
        width: 100%;
    }

    .aboutme-content {
        align-items: flex-end;
    }

    .aboutme-content h2, .aboutme-content .section-description {
        text-align: end;
    }

    .aboutme-content h2::after {
        right: 0;
        left: inherit;
    }

    .aboutme-img {
        justify-content: center;
    }

    .abtme-img {
        width: 65%;
    }

    .aboutme-img-text {
        width: 50%;
        left: 50%;
        transform: translateX(-50%);
    }

    .stain {
        top: 0px;
        left: 70px;
        transform: translate(-50px, -80px) rotate(-45deg);
    }

    .services-contents {
        flex-direction: column;
        padding: 2rem;
    }

    .services-header, .services-list {
        width: 100%;
    }

    .freecall-card {
        width: 90%;
    }

    .process {
        flex-direction: column-reverse;
        position: relative;
        padding: 2rem;
    }

    .process-content {
        width: 100%;
        position: relative;
        z-index: 2;
    }

    .process-img-container {
        width: 45%;
        opacity: 0.2;
        position: absolute;
        left: 0;
        top: 0;
    }

    .timeline-number {
        font-weight: 700;
    }

    .timeline-title {
        font-weight: 600;
    }

    .timeline-text {
        font-weight: 500;
    }

    .benefits {
        padding: 5rem 2rem;
    }

    .benefits-contents h2 {
        font-size: 3.5rem;
    }

    .benefits-contents h2::after {
        left: 50%;
        bottom: -20px;
        transform: translate(-50%);
    }

    .youtube-chanel {
        flex-direction: column;
        padding: 2rem;
        padding-bottom: 10rem;
        gap: 2rem;
    }

    .youtube-chanel-content {
        width: 100%;
    }

    .youtube-chanel-img {
        width: 100%;
    }

    .youtube-chanel-img img {
        width: 100%;
        height: 300px;
        object-position: 70%;
    }

    .reviews {
        padding: 1rem;
    }

    .google-business {
        width: 100%;
    }
    
    .arrow-left, .arrow-right {
        display: none;
    }

    .review-card {
        border-bottom: 2px solid var(--color1);
    }

    .prices {
        padding: 2rem;
    }

    .prices-container {
        padding: 2rem 1rem;
    }

    .start-now {
        padding: 5rem 2rem;
    }

    .start-now h2 {
        font-size: 3.5rem;
    }

    .start-now-ctas {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    /* Responsive Footer */
    .footer-top {
        flex-direction: column;
    }

    .footer-top-content, .footer-top iframe {
        width: 100%;
        align-items: center;
    }

    .footer-top iframe {
        height: 300px;
    }

    .footer-mid-top {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .footer-socials .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-socials p {
        text-align: center;
    }

    .footer-bot {
        flex-direction: column;
        gap: 0;
    }

    .footer-bot a {
        padding: 14px;
    }

    .footer-bot p:nth-child(even) {
        display: none;
    }
}

@media (max-width: 650px) {
    .hero-right {
        width: 80%;
    }

    .hero-left {
        padding: 2rem;
    }

    .services {
        padding-bottom: 10rem;
    }

    .freecall-card {
        flex-direction: column;
        height: 300px;
    }

    .freecall-img {
        width: 100%;
        height: 50%;
        border-radius: 20px 20px 0 0;
    }

    .freecall-btn {
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .freecall-text {
        border-left: none;
        border-top: 1px solid var(--color2);
        justify-content: space-evenly;
        gap: 0.5rem;
        padding: 2rem;
        width: 100%;
        height: 50%;
    }

    .prices-container {
        padding: 2rem;
    }

    .price-item {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 500px) {
    .hero {
        min-height: 85vh;
    }

    .hero-right {
        width: 105%;
    }

    .hero-left {
        margin-top: 5rem;
        padding: 3rem 1rem;
    }

    .hero-left h2 {
        font-size: 3.5rem;
    }

    .abtme-img {
        width: 80%;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
    }

    .aboutme-img-text {
        width: 70%;
    }

    .stain {
        left: 0px;
    }

    .services-header h2 {
        font-size: 3.2rem;
        margin-bottom: 1rem;
    }

    .process h2 {
        font-size: 3.5rem;
    }

    .process-img-container {
        width: 90%;
    }

    .google-business {
        flex-direction: column;
        gap: 1rem;
    }

    .reviews-slider {
        width: 100%;
    }

    .review-card {
        padding: 0;
    }

    .prices {
        padding: 2rem 1rem;
    }

    .prices h2 {
        font-size: 3.2rem;
    }

    .prices-container {
        padding: 2rem 1rem;
    }

    .start-now {
        background-size: contain;
    }

    .start-now h2 {
        font-size: 3.2rem;
    }
}