html,
body {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Outfit", sans-serif;
    overflow-x: hidden;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.recaptcha-container {
    margin: 0px 0;
    text-align: center;
  }
  
  .recaptcha-container .g-recaptcha {
    display: inline-block;
    margin: 0px 0;
    border-radius: 20px;
    width: 302px;
    height: 76px;
    overflow: hidden;
  }
  
  .recaptcha-container .field-error {
    color: #dc3545;
    font-size: 14px;
    margin-top: 10px;
    display: block;
    text-align: center;
  }
  
  @media (max-width: 480px) {
    .recaptcha-container .g-recaptcha {
      transform: scale(0.85);
      -webkit-transform: scale(0.85);
      transform-origin: 0 0;
    }
  }
.cc-revoke { 
    display:none!important;
}
.burger-menu {
    display:none;
}
.cc-window {
    position: fixed !important;
    bottom: 38px !important;
    width: 80vw !important;
    border-radius: 10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: rgba(237, 239, 245, 0.9) !important;
    box-shadow: 0 12px 35px rgba(114, 46, 185, 0.4);
}

.cc-allow {
    position: static;
    background: linear-gradient(135deg, #722EB9, #C179C5);
    border: none;
    border-radius: 50px;
    padding: 12px 25px;
    color: white;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(114, 46, 185, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.cc-allow:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(114, 46, 185, 0.4);
    background: linear-gradient(135deg, #8a3fd4, #d692d8);
}

.hero-section {
    min-height: 100vh;
    /* Pleine hauteur */
    display: flex;
    align-items: center;
    justify-content: center;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.mobile-menu {
    display: none;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    background: rgba(177, 78, 205, 0.6);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.main-header.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    gap: 40px;
    transition: all 0.3s ease;
    min-height: 90px;
}

.main-header.scrolled .header-container {
    padding: 8px 30px;
    min-height: 60px;
}

.header-logo {
    flex-shrink: 0;
}

.header-logo img {
    width: 180px;
    height: auto;
    transition: all 0.3s ease;
}

.main-header.scrolled .header-logo img {
    width: 140px;
}

.header-logo:hover img {
    transform: scale(1.05);
}

.header-nav {
    flex-shrink: 0;
    display: flex;
    justify-content: flex-start;
    margin-left: 30px;
}

.main-header.scrolled .header-nav {
    margin-left: 20px;
}

.header-spacer {
    flex: 1;
}

.header-cta {
    flex-shrink: 0;
}

.navbar {
    position: static;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    font-size: 20px;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.main-header.scrolled .nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.nav-link.active,
.nav-item.open .nav-link {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.nav-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    margin-left: 5px;
}

.nav-item.open .nav-arrow {
    transform: rotate(180deg);
}

.nav-arrow i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-item.open .nav-arrow i {
    transform: rotate(180deg);
}

.call-button {
    position: static;
    background: linear-gradient(135deg, #722EB9, #C179C5);
    border: none;
    border-radius: 50px;
    padding: 12px 25px;
    color: white;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(114, 46, 185, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.call-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(114, 46, 185, 0.4);
    background: linear-gradient(135deg, #8a3fd4, #d692d8);
}

.call-button i {
    font-size: 16px;
    transition: font-size 0.3s ease;
}

.main-header.scrolled .dropdown-menu {
    top: calc(100% + 3px);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 800px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1500;
    overflow: hidden;
}

.nav-item.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-container {
    display: flex;
    align-items: stretch;
}

.dropdown-nav-left {
    width: 250px;
    background: rgba(114, 46, 185, 0.05);
    border-right: 1px solid rgba(114, 46, 185, 0.1);
    padding: 20px 0;
    display: flex;
    flex-direction: column;
}

.dropdown-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    position: relative;
    width: 78%;
}

.dropdown-tab:hover {
    background: rgba(114, 46, 185, 0.08);
    transform: translateX(3px);
}

.dropdown-tab.active {
    background: rgba(114, 46, 185, 0.15);
    border-left-color: #722EB9;
    transform: translateX(5px);
}

.tab-icon {
    font-size: 16px;
    min-width: 20px;
    color: #722EB9;
    transition: color 0.3s ease;
}

.dropdown-tab.active .tab-icon {
    color: #722EB9;
}

.tab-text {
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #333;
}

.dropdown-tab.active .tab-text {
    color: #722EB9;
    font-weight: 600;
}

.dropdown-content-right {
    flex: 1;
    position: relative;
    min-height: 380px;
}

.dropdown-content {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 40px);
    padding: 20px 25px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    pointer-events: none;
    display: flex;
    flex-direction: column;
}

.dropdown-content.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
    position: static;
}

.content-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(114, 46, 185, 0.1);
    flex-shrink: 0;
}

.content-header h3 {
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #722EB9;
    margin: 0 0 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.content-header h3 i {
    color: #722EB9;
}

.content-header p {
    font-family: "Outfit", sans-serif;
    font-weight: 300;
    font-size: 13px;
    color: #666;
    margin: 0;
}

.content-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    flex: 1;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #722EB9, #C179C5);
    transition: left 0.3s ease;
    z-index: -1;
}

.dropdown-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(114, 46, 185, 0.15);
}

.dropdown-item:hover::before {
    left: 0;
}

.dropdown-item:hover .item-name,
.dropdown-item:hover .item-desc,
.dropdown-item:hover .item-icon {
    color: white;
}

.item-icon {
    font-size: 16px;
    color: #722EB9;
    min-width: 17px;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.item-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 2px;
}

.item-name {
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #333;
    transition: color 0.3s ease;
}

.item-desc {
    font-family: "Outfit", sans-serif;
    font-weight: 300;
    font-size: 12px;
    color: #666;
    transition: color 0.3s ease;
}

.background--custom {
    background-color: #FFFFFF;
    width: 100vw;
    min-height: 100vh;
    position: absolute;
    overflow-x: hidden;
    z-index: -20;
    top: 0;
    left: 0;
    pointer-events: none;
}

canvas#canvas {
    z-index: -10;
    position: fixed;
    width: 100%;
    height: 100%;
    transform: rotate(0deg) scale(2) translateY(0%);
    --gradient-color-1: #C179C5;
    --gradient-color-2: #9733ff;
    --gradient-color-3: #ff9085;
    --gradient-color-4: #01B3E3;
    --gradient-speed: 0.000006;
    pointer-events: none;
    filter: saturate(130%);
}

.logo {
    position: absolute;
    top: 60px;
    left: calc(50%);
    transform: translateX(-50%);
    z-index: 1;
}

.logo img {
    width: 200px;
    height: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    opacity: 0.6;
    height: 300px;
    overflow: hidden;
}

.bottom-curve {
    position: relative;
    width: 100%;
    opacity: 0.6;
    overflow: hidden;
    height: 220px;
}

.bottom-curve svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.slogan-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slogan {
    position: absolute;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: white;
}

.slogan-title {
    position: absolute;
    top: calc(50% - 82px);
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    background: linear-gradient(135deg, #722EB9, #9a35b7);
    box-shadow: 0 8px 25px rgba(114, 46, 185, 0.3);
    color: #FFF;
    display: table-cell;
    border-radius: 30px;
    padding: 3px 14px 6px 14px;
    white-space: nowrap;
}

.slogan-part {
    display: block;
    opacity: 0;
    position: relative;
    text-align: center;
}

.part-left {
    margin-bottom: 25px;
    font-family: "Outfit", sans-serif;
    font-weight: 100;
    font-size: 40px;
    color: #FFF;
    display: block;
}

.part-right {
    margin-top: -50px;
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 80px;
    color: #FFF;
    display: block;
    text-align: right;
}

.services-section {
    position: relative;
    /*top: 100vh;*/
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 30px 0px 40px 0px;
    z-index: 10;
}

.websites-section {
    position: relative;
    /*top: 100vh;*/
    padding: 0px 0px 80px 0px;
    z-index: 10;
    /* margin-bottom: 100vh;*/
}

.services-container,
.websites-container {
    max-width: 1400px;
    margin: 0 auto;
}

.websites-container {
    display: flex;
}

.websites-left,
.websites-right {
    width: 50%;
    position: relative;
}

.websites-right {
    width: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 3/2;
}

.websites-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    min-height: 470px;
}

.websites-left-cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
}

.websites-left h2 {
    font-weight: 200;
    color: #FFF;
    font-size: 60px;
    text-align: right;
    margin: 0px 0px 10px 0px;
    padding: 0px 50px;
    text-shadow: 1px 1px 0px #B14ECD;
    opacity: 0;
    transition: all 0.6s ease;
}

.websites-left h3 {
    font-weight: 100;
    padding: 0px 50px 0px 100px;
    color: #FFF;
    font-size: 20px;
    text-align: right;
    margin: 0px;
    text-shadow: 1px 1px 0px #B14ECD;
    opacity: 0;
    transition: all 0.6s ease;
}

.websites-title {
    align-self: flex-end;
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    background: linear-gradient(135deg, #722EB9, #9a35b7);
    box-shadow: 0 8px 25px rgba(114, 46, 185, 0.3);
    color: #FFF;
    display: inline-block;
    border-radius: 30px;
    padding: 3px 14px 6px 14px;
    margin-right: 50px;
}

.websites-left h2.slide-in-from-right {
    animation: slideInFromRight 0.8s ease-out forwards;
}

.websites-left h3.slide-in-from-right {
    animation: slideInFromRight 0.8s ease-out forwards 0.2s;
}

.websites-left h2.slide-out-to-right {
    animation: slideOutToRight 0.6s ease-in forwards;
}

.websites-left h3.slide-out-to-right {
    animation: slideOutToRight 0.6s ease-in forwards;
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutToRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100px);
        opacity: 0;
    }
}

.websites-laptop-mockup {
    background: url('/images/mockup.png') no-repeat center center;
    width: 700px;
    height: 470px;
    background-size: contain;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 3;
}

.websites-site-pc {
    background: url('/images/ref/1.jpg') no-repeat center center #000;
    width: 495px;
    height: 300px;
    background-size: cover;
    background-position: top;
    transform: translate(1px, 2px) skew(-4deg, 1deg);
    transform-origin: bottom;
    position: absolute;
    top: 25px;
    left: 160px;
    z-index: 1;
    transition: opacity 0.8s ease;
}

.websites-site-mobile {
    background: url('/images/ref/tn_1.jpg') no-repeat center center #000;
    background-size: cover;
    width: 111px;
    height: 238px;
    position: absolute;
    top: 142px;
    left: 19px;
    z-index: 1;
    border-radius: 15px;
    background-position: top;
    transition: opacity 0.8s ease;
}

.websites-site-pc-overlay,
.websites-site-mobile-overlay {
    position: absolute;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}

.websites-site-pc-overlay {
    width: 495px;
    height: 300px;
    transform: translate(1px, 2px) skew(-4deg, 1deg);
    transform-origin: bottom;
    top: 25px;
    left: 160px;
    z-index: 2;
}

.websites-site-mobile-overlay {
    width: 111px;
    height: 238px;
    border-radius: 15px;
    top: 142px;
    left: 19px;
    z-index: 2;
}

.services-title {
    font-size: 58px;
    font-weight: 300;
    font-style: normal;
    color: #ffffff;
    background: linear-gradient(135deg, #722EB9, #C179C5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    padding: 10px 20px;
    border-radius: 12px;
    margin: 0 auto 10px auto;
}

.services-subtitle {
    margin: 0 auto 50px auto;
    padding: 0;
    width: 100%;
    text-align: center;
    font-weight: 300;
    font-size: 24px;
}

.services-subtitle span {
    font-style: italic;
    text-decoration: underline;
}

.services-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.imgstory-container {
    flex: 0 0 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 100px;
}

.imgstory-wrapper {
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.imgstory-wrapper:hover {
    transform: translateY(-5px);
}

.service-image {
    transition: all 0.3s ease;
    border-radius: 10px;
}

.service-image:hover {
    transform: scale(1.05);
}

.image-changing {
    opacity: 0;
    transform: scale(0.9);
}

.accordion {
    display: grid;
    gap: 20px;
}

.accordion-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(114, 46, 185, 0.15);
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 30px;
    cursor: pointer;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: linear-gradient(135deg, #722EB9, #C179C5);
    color: white;
}

.accordion-header.active {
    background: linear-gradient(135deg, #722EB9, #C179C5);
    color: white;
}

.accordion-number {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-weight: 600;
    min-width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #722EB9, #C179C5);
    color: white;
    margin-right: 20px;
}

.accordion-header:hover .accordion-number,
.accordion-header.active .accordion-number {
    background: rgba(255, 255, 255, 0.2);
}

.accordion-title {
    flex: 1;
    font-family: "Outfit", sans-serif;
    font-size: 20px;
    font-weight: 300;
    margin: 9px 0px;
    font-style: italic;
}

.accordion-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.accordion-icon.active {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.active {
    max-height: 360px;
}

.accordion-body {
    padding: 30px;
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #666;
}

.accordion-features {
    list-style: none;
    padding: 0;
    margin: 5px 0 0 0;
}

.accordion-features li {
    padding: 8px 0;
    padding-left: 45px;
    font-weight: 300;
    position: relative;
}

.accordion-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #722EB9;
    font-weight: bold;
    margin-left: 20px;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.slide-out-left {
    animation: slideOutLeft 0.6s ease-in forwards;
}

.slide-out-right {
    animation: slideOutRight 0.6s ease-in forwards;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(-100px);
        opacity: 0;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100px);
        opacity: 0;
    }
}

.footer {
    position: relative;
    padding: 0;
    z-index: 10;
}

.footer-wave {
    position: relative;
    width: 100%;
    opacity: 0.8;
    overflow: hidden;
    height: 220px;
    margin-top: -170px;
}

.footer-content {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    padding: 40px 0;
    color: white;
    display: flex;
    max-width: 1400px;
    gap: 60px;
    align-items: flex-start;
}

.footer-container {
    background: rgba(177, 78, 205, 0.8);
    width: 100%;
}

.footer-left {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 40px;
}

.footer-logo {
    margin: 0 auto 30px auto;
}

.footer-logo img {
    width: 150px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.4;
    color: white;
}

.footer-tagline strong {
    font-weight: 600;
    color: #ffffff;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-left: 30px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 200;
}

.footer-contact-item a {
    color: #FFF;
}

.footer-contact-item .icon {
    font-size: 16px;
    width: 25px;
    text-align: center;
    margin-top: 4px;
}

.footer-address {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.footer-right {
    flex: 1;
    padding: 0 40px;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 0px 30px 30px 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form-title {
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 0px;
    color: white;
    text-align: center;
}

.contact-form-subtitle {
    margin: 0 0 20px 0;
    padding: 0;
    font-weight: 100;
    font-size: 20px;
    text-align: center;
    line-height: 35px;
}

.contact-form-subtitle span {
    font-style: italic;
    text-decoration: underline;
}

.contact-form {
    text-align: left;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 5px;
}

.form-group {
    flex: 1;
    margin-bottom: 15px;
}

.form-group.full-width {
    flex: 1 1 100%;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: white;
    font-size: 13px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 14px;
    font-family: "Outfit", sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group select {
    cursor: pointer;
}

.file-input-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

.file-input {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.file-input-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 14px;
    border: 2px dashed rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.file-input-label:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
}

.file-input-label.has-file {
    border-style: solid;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.file-icon {
    font-size: 16px;
    padding-right: 10px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.4;
    gap: 12px;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 0;
}

.checkmark {
    position: relative;
    top: 2px;
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.checkbox-label:hover .checkmark {
    background: rgba(255, 255, 255, 1);
    border-color: #ffffff;
}

.checkbox-label input:checked~.checkmark {
    background: #722EB9;
    border-color: #722EB9;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 4px;
    top: 1px;
    width: 3px;
    height: 7px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label input:checked~.checkmark:after {
    display: block;
}

.submit-btn {
    background: linear-gradient(135deg, #722EB9 0%, #9733ff 50%, #C179C5 100%);
    border: none;
    border-radius: 60px;
    padding: 8px 20px;
    color: white;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0px auto 0 auto;
    width: 100%;
    max-width: 320px;
    min-height: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 0px solid transparent;
}

.submit-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.submit-btn:hover::after {
    width: 320px;
    height: 300px;
}

.submit-btn:hover {
    transform: translateY(-4px) scale(1.02);
    background: linear-gradient(135deg, #8a3fd4 0%, #b347ff 50%, #d692d8 100%);
    border: 0px;
}

.submit-btn:active {
    transform: translateY(-2px) scale(0.98);
}

.submit-btn .btn-text {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.submit-btn .btn-text i {
    font-size: 18px;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
}

.submit-btn:hover .btn-text i {
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.6));
    transform: scale(1.1);
}

.submit-btn .btn-icon {
    position: relative;
    z-index: 2;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.submit-btn:hover .btn-icon {
    transform: translateX(8px) scale(1.2);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.6));
}

.submit-btn:disabled {
    background: linear-gradient(135deg, #666 0%, #888 50%, #666 100%);
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: pulse-loading 1.5s ease-in-out infinite;
}

.submit-btn:disabled::before,
.submit-btn:disabled::after {
    display: none;
}

@keyframes pulse-loading {

    0%,
    100% {
        opacity: 0.7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.01);
    }
}

.submit-btn {
    animation: glowRotate 6s ease-in-out infinite;
}

@keyframes glowRotate {
    0% {
        box-shadow:
            8px 0 20px rgba(87, 202, 255, 0.4),
            4px 0 12px rgba(135, 206, 250, 0.2);
    }

    25% {
        box-shadow:
            0 8px 20px rgba(87, 202, 255, 0.4),
            0 4px 12px rgba(135, 206, 250, 0.2);
    }

    50% {
        box-shadow:
            -8px 0 20px rgba(87, 202, 255, 0.4),
            -4px 0 12px rgba(135, 206, 250, 0.2);
    }

    75% {
        box-shadow:
            0 -8px 20px rgba(87, 202, 255, 0.4),
            0 -4px 12px rgba(135, 206, 250, 0.2);
    }

    100% {
        box-shadow:
            8px 0 20px rgba(87, 202, 255, 0.4),
            4px 0 12px rgba(135, 206, 250, 0.2);
    }
}

.btn-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

.footer-bottom {
    background: rgba(177, 78, 205, 1);
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom a {
    color: #FFF;
}

.scrolldown {
    --color: #b14ecd;
    --sizeX: 30px;
    --sizeY: 50px;
    position: absolute;
    width: var(--sizeX);
    height: var(--sizeY);
    margin-left: var(--sizeX / 2);
    border: calc(var(--sizeX) / 10) solid var(--color);
    border-radius: 50px;
    box-sizing: border-box;
    margin-bottom: 16px;
    bottom: 30px;
    right: 30px;
    z-index: 10;
    background: none;
    cursor: pointer;
}

.scrolldown::before {
    content: "";
    position: absolute;
    bottom: 30px;
    left: 50%;
    width: 6px;
    height: 6px;
    margin-left: -3px;
    background-color: var(--color);
    border-radius: 100%;
    animation: scrolldown-anim 2s infinite;
    box-sizing: border-box;
    box-shadow: 0px -5px 3px 1px #ffffff66;
}

@keyframes scrolldown-anim {
    0% {
        opacity: 0;
        height: 6px;
    }

    40% {
        opacity: 1;
        height: 10px;
    }

    80% {
        transform: translate(0, 20px);
        height: 10px;
        opacity: 0;
    }

    100% {
        height: 3px;
        opacity: 0;
    }
}

.chevrons {
    padding: 6px 0 0 0;
    margin-left: -8px;
    margin-top: 48px;
    width: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chevrondown {
    margin-top: -6px;
    position: relative;
    border: solid var(--color);
    border-width: 0 3px 3px 0;
    display: inline-block;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
}

.chevrondown:nth-child(odd) {
    animation: pulse 500ms ease infinite alternate;
}

.chevrondown:nth-child(even) {
    animation: pulse 500ms ease infinite alternate 250ms;
}

@keyframes pulse {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.5;
    }
}

/* Styles supplémentaires pour le formulaire - À ajouter au styles.css existant */

/* Messages de retour du formulaire */
.form-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideInDown 0.3s ease-out;
}

.form-message i {
    font-size: 16px;
    flex-shrink: 0;
}

.form-message.success {
    background-color: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.form-message.error {
    background-color: rgba(244, 67, 54, 0.1);
    color: #c62828;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

/* Erreurs de champs */
.field-error {
    color: #dc3545 !important;
    font-size: 12px !important;
    margin-top: 5px !important;
    display: flex;
    align-items: center;
    gap: 5px;
}

.field-error::before {
    content: "⚠";
    font-size: 10px;
}

/* Champs en erreur - SEULEMENT quand la classe .error est ajoutée par JavaScript */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Honeypot field (caché) */
.honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* SUPPRESSION des validations CSS automatiques qui causent le problème */
/* Ces règles sont supprimées pour éviter la coloration automatique :
  .form-group input:valid:not(:placeholder-shown),
  .form-group select:valid,
  .form-group textarea:valid:not(:placeholder-shown) { ... }
  
  .form-group input:invalid:not(:placeholder-shown):not(:focus),
  .form-group select:invalid:not(:focus),
  .form-group textarea:invalid:not(:placeholder-shown):not(:focus) { ... }
  */

/* Loading state pour le bouton */
.submit-btn.loading {
    pointer-events: none;
    position: relative;
}

.submit-btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .form-message {
        padding: 12px;
        font-size: 14px;
        margin-bottom: 15px;
    }

    .field-error {
        font-size: 11px !important;
    }
}


.form-group input[aria-invalid="true"],
.form-group select[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] {
    border-color: #dc3545;
}


.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
    outline: 2px solid #722EB9;
    outline-offset: 2px;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    outline: none;
}

.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-overlay.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.success-overlay.show .success-content {
    transform: scale(1);
}

.success-content h3 {
    color: #28a745;
    margin-bottom: 15px;
    font-size: 24px;
}

.success-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.success-content button {
    background: linear-gradient(135deg, #722EB9, #C179C5);
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.success-content button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(114, 46, 185, 0.3);
}

.upload-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 10px;
    display: none;
}

.upload-progress-bar {
    height: 100%;
    background: linear-gradient(135deg, #722EB9, #C179C5);
    width: 0%;
    transition: width 0.3s ease;
}

.uploading .upload-progress {
    display: block;
}

@media (max-width: 1400px) {
    .scrolldown {
        --color: #FFF;
    }

    .header-container {
        padding: 10px 20px;
        min-height: 80px;
    }

    .main-header.scrolled .header-container {
        padding: 6px 20px;
        min-height: 50px;
    }

    .header-logo img {
        width: 160px;
    }

    .main-header.scrolled .header-logo img {
        width: 120px;
    }

    .navbar {
        gap: 20px;
    }

    .nav-link {
        font-size: 18px;
        padding: 8px 12px;
    }



    .call-button {
        padding: 10px 20px;
        font-size: 16px;
    }

    .dropdown-menu {
        min-width: 700px;
    }

    .dropdown-nav-left {
        width: 220px;
    }

    .content-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .websites-section {
        padding: 0px;
    }

    .services-container,
    .websites-container,
    .footer-content {
        max-width: 1100px;
    }

    .websites-container {
        padding-bottom: 50px;
    }

    .websites-right {
        margin-top: 100px;
    }

    .services-container {
        margin: 0 auto;
        padding-left: 30px;
        padding-right: 30px;
    }


    .services-subtitle {
        font-size: 18px;
    }

    .services-content {
        gap: 30px;
    }

    .imgstory-container,
    .accordion-container {
        flex: 1 1 45%;
    }

    .service-image {
        width: 100%;
        max-width: 500px;
    }

    .accordion-number {
        min-width: 40px;
        height: 40px;
        font-size: 14px;
        margin-right: 10px;
    }

    .accordion-title {
        font-size: 18px;
    }

    .accordion-body {
        padding: 20px;
        font-size: 16px;
    }

    .websites-left h2 {
        font-size: 35px;
        padding: 0 40px;
    }

    .websites-left h3 {
        font-size: 16px;
        padding: 0 40px 0 80px;
    }

    .websites-laptop-mockup {
        width: 600px;
        height: 400px;
    }

    .websites-site-pc {
        width: 425px;
        height: 260px;
        top: 20px;
        left: 140px;
    }

    .websites-site-mobile {
        width: 95px;
        height: 205px;
        top: 120px;
        left: 18px;
    }

    .websites-site-pc-overlay {
        width: 425px;
        height: 260px;
        top: 20px;
        left: 140px;
    }

    .websites-site-mobile-overlay {
        width: 95px;
        height: 205px;
        top: 120px;
        left: 18px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-left,
    .footer-right {
        width: 100%;
        text-align: center;
        padding: 0px;
    }

    .footer-left {
        order: 2;
        align-items: center;
    }

    .footer-right {
        order: 1;
    }

    .footer-contact-info {
        margin-left: 0;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .contact-form-container {
        padding: 20px;
    }

    .bottom,
    .bottom-curve,
    .footer-wave {
        display: none;
    }
}

@media (max-width: 1200px) {
    .header-container {
        padding: 10px 15px;
        min-height: 70px;
    }

    .main-header.scrolled .header-container {
        padding: 5px 15px;
        min-height: 50px;
    }

    .header-logo img {
        width: 140px;
    }

    .main-header.scrolled .header-logo img {
        width: 110px;
    }

    .navbar {
        gap: 15px;
    }

    .nav-link {
        font-size: 18px;
        padding: 6px 10px;
    }


    .call-button {
        padding: 8px 15px;
        font-size: 16px;
    }

    .dropdown-menu {
        min-width: 600px;
    }

    .dropdown-nav-left {
        width: 200px;
    }

    .content-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .services-container,
    .websites-container,
    .footer-content {
        max-width: 950px;
    }

    .websites-container {
        padding-bottom: 20px;
    }

    .services-container {
        margin: 0 auto;
        padding-left: 30px;
        padding-right: 30px;
    }

    .slogan {
        font-size: 2rem;
    }

    .part-left {
        font-size: 50px;
        margin-bottom: 20px;
    }

    .part-right {
        font-size: 80px;
        margin-top: -40px;
    }

    .services-title {
        font-size: 46px;
    }

    .services-subtitle {
        font-size: 16px;
    }

    .services-content {
        flex-direction: row;
        gap: 20px;
    }

    .imgstory-container,
    .accordion-container {
        flex: 1 1 48%;
    }

    .service-image {
        width: 100%;
        max-width: 400px;
    }

    .accordion-number {
        min-width: 35px;
        height: 35px;
        font-size: 13px;
        margin-right: 8px;
    }

    .accordion-title {
        font-size: 18px;
    }

    .accordion-body {
        padding: 15px;
        font-size: 15px;
    }

    .accordion-features li {
        padding-left: 40px;
        font-size: 13px;
    }

    .websites-container {
        flex-direction: row;
        gap: 20px;
    }

    .websites-left,
    .websites-right {
        flex: 1 1 48%;
    }

    .websites-left {
        align-items: flex-start;
        text-align: left;
        min-height: auto;
        padding: 20px 0;
    }

    .websites-title {
        margin: 0 20px 10px 0
    }

    .websites-left h2 {
        font-size: 28px;
        padding: 0 20px;
    }

    .websites-left h3 {
        font-size: 14px;
        padding: 0 20px 0 40px;
    }

    .websites-right {
        display: flex;
        justify-content: center;
    }

    .websites-laptop-mockup {
        width: 450px;
        height: 300px;
    }

    .websites-site-pc {
        width: 320px;
        height: 195px;
        top: 15px;
        left: 105px;
    }

    .websites-site-mobile {
        width: 72px;
        height: 155px;
        top: 90px;
        left: 14px;
    }

    .websites-site-pc-overlay {
        width: 320px;
        height: 195px;
        top: 15px;
        left: 105px;
    }

    .websites-site-mobile-overlay {
        width: 72px;
        height: 155px;
        top: 90px;
        left: 14px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-left,
    .footer-right {
        width: 100%;
        text-align: center;
    }

    .footer-left {
        order: 2;
        align-items: center;
    }

    .footer-right {
        order: 1;
    }

    .footer-contact-info {
        margin-left: 0;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .contact-form-container {
        padding: 20px;
    }

    .bottom,
    .bottom-curve,
    .footer-wave {
        display: none;
    }
}

@media (max-width: 768px) {
    .burger-menu {
        display:block;
    }
    .scrolldown {
        right: calc(50% - 30px);
        bottom:50px
    }

    .navbar,
    .header-cta,
    .header-nav {
        display: none;
    }

    .imgstory-container {
        display: none;
    }

    .header-container {
        padding: 10px 15px;
        position: relative;
        display: flex;
        justify-content: center;
    }

    .main-header {
        padding: 10px 0;
    }

    .header-logo img {
        width: 120px;
    }

    .main-header.scrolled .header-logo img {
        width: 100px;
    }

    .header-spacer {
        display: none;
    }

    .burger-menu {
        display: block;
        position: absolute;
        right: 40px;
        top: 50%;
        transform: translateY(-50%);
        width: 30px;
        height: 20px;
        cursor: pointer;
        z-index: 1001;
        background: none;
        border: none;
        padding: 0;
    }

    .burger-menu span {
        display: block;
        width: 100%;
        height: 3px;
        background: #fff;
        margin-bottom: 5px;
        transition: all 0.3s ease;
    }

    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .mobile-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        /* Force la hauteur complète même en sticky */
        background: rgba(0, 0, 0, 0.95);
        z-index: 1000;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0px;
        opacity: 0;
        transform: translateY(-100%);
        transition: all 0.3s ease;
    }

    .mobile-menu.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-menu .nav-link {
        font-size: 20px;
        color: #fff;
        padding: 15px;
        text-align: center;
        width: 100%;
        max-width: 300px;
        border-radius: 10px;
        margin: 10px 0;
        background: rgba(255, 255, 255, 0.1);
    }

    .mobile-menu .nav-link:hover {
        background: linear-gradient(135deg, #722EB9, #C179C5);
        transform: translateY(0);
    }

    .mobile-menu .call-button {
        margin-top: 20px;
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .call-button {
        position: static;
        padding: 12px 20px;
        font-size: 14px;
    }

    .dropdown-menu {
        display: none;
    }

    .slogan {
        padding: 0 20px;
    }

    .part-left {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .part-right {
        font-size: 58px;
        margin-top: -30px;
    }

    .slogan-title {
        font-size: 16px;
        padding: 3px 12px;
    }

    .services-section {
        padding: 50px 15px;
    }

    .services-container {
        margin: 0 auto;
        padding-left: 10px;
        padding-right: 10px;
    }

    .services-title {
        font-size: 42px;
    }

    .services-subtitle {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .accordion-number {
        min-width: 35px;
        height: 35px;
        font-size: 13px;
        margin-right: 8px;
    }

    .accordion-title {
        font-size: 22px;
    }

    .accordion-body {
        padding: 15px;
        font-size: 18px;
    }

    .accordion-features {
        margin-top: 20px;
    }

    .accordion-features li {
        padding-left: 50px;
        font-size: 18px;
    }

    .websites-container {
        flex-direction: column;
        max-width: 100%;
        overflow: hidden;
    }

    .websites-right {
        order: 1;
        width: 100%;
        aspect-ratio: 3/1;
    }

    .websites-left {
        order: 2;
        align-items: center;
        text-align: center;
        padding: 2rem 0;
        width: 100%;
    }

    .websites-left-cont {
        text-align: center;
        ;
    }

    .websites-laptop-mockup {
        width: 100%;
        max-width: 450px;
        height: 300px;
        left: calc(50vw - 225px);
    }

    .websites-left h2,
    .websites-left h3 {
        text-align: center;
    }

    .websites-site-pc {
        width: 320px;
        height: 195px;
        top: 15px;
        left: calc(50vw - 120px);
    }

    .websites-site-mobile {
        width: 72px;
        height: 155px;
        top: 90px;
        left: calc(50vw - 211px);
    }

    .websites-site-pc-overlay {
        width: 320px;
        height: 195px;
        top: 15px;
        left: calc(50vw - 120px);
    }

    .websites-site-mobile-overlay {
        width: 72px;
        height: 155px;
        top: 90px;
        left: calc(50vw - 211px);
    }

    .websites-title {
        align-self: center;
        margin: 10px 0px;
    }

    .footer-content {
        padding: 20px 15px;
    }


    .footer-left {
        order: 2;
    }

    .footer-right {
        order: 1;
    }

    .footer-logo img {
        width: 120px;
    }

    .footer-tagline {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .footer-contact-item {
        font-size: 21px;
    }

    .footer-contact-item .icon {
        font-size: 14px;
    }

    .contact-form-container {
        padding: 15px;
    }

    .contact-form-title {
        font-size: 34px;
        line-height: 26px;
        padding-bottom: 30px;
    }
    .contact-form-subtitle span {
        padding-bottom: 20px;
        display: block;
    }
    .contact-form-subtitle {
        font-size: 20px;
        line-height: 24px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: 300;
        color: white;
        font-size: 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 20px;
    }

    .accordion-content.active {
        max-height: 440px;
    }

    .submit-btn {
        max-width: 100%;
        padding: 10px;
        font-size: 20px;
    }

    .scrolldown {
        --sizeX: 25px;
        --sizeY: 40px;
        bottom: 30px;
            right: calc(50% - 30px);
            bottom:50px
    }

    .bottom,
    .bottom-curve,
    .footer-wave {
        display: none;
    }
}

@media (max-width: 480px) {

    .navbar,
    .header-cta,
    .header-nav {
        display: none;
    }

    .websites-right {
        aspect-ratio: 3/1.3;
    }

    .imgstory-container {
        display: none;
    }

    .header-container {
        padding: 8px 10px;
        display: flex;
        justify-content: center;
    }

    .header-logo img {
        width: 100px;
    }

    .main-header.scrolled .header-logo img {
        width: 90px;
    }

    .slogan {
        padding: 0 15px;
    }

    .part-left {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .part-right {
        font-size: 46px;
        margin-top: -20px;
    }

    .slogan-title {
        font-size: 16px;
        padding: 2px 10px;
    }

    .accordion-content.active {
        max-height: 550px;
    }

    .services-section {
        padding: 40px 10px;
    }

    .services-container {
        margin: 0 auto;
        padding-left: 10px;
        padding-right: 10px;
    }

    .services-title {
        font-size: 40px;
    }

    .services-subtitle {
        font-size: 20px;
    }

    .accordion-number {
        min-width: 30px;
        height: 30px;
        font-size: 15px;
    }

    .accordion-title {
        font-size: 20px;
    }

    .accordion-body {
        padding: 12px;
        font-size: 18px;
    }

    .websites-left h2 {
        font-size: 24px;
    }

    .websites-left h3 {
        font-size: 14px;
    }

    .websites-laptop-mockup {
        max-width: 350px;
        height: 230px;
        left: calc(50vw - 180px) !important;
    }

    .websites-site-pc {
        width: 245px;
        height: 150px;
        top: 12px;
        left: calc(50vw - 101px);
    }

    .websites-site-mobile {
        width: 55px;
        height: 120px;
        top: 70px;
        left: calc(50vw - 167px);
        border-radius: 8px;
    }

    .websites-site-pc-overlay {
        width: 245px;
        height: 150px;
        top: 12px;
        left: 80px;
        left: calc(50vw - 101px);
    }

    .websites-site-mobile-overlay {
        width: 55px;
        height: 120px;
        top: 70px;
        left: calc(50vw - 167px);
        border-radius: 8px;
    }

    .footer-left {
        order: 2;
    }

    .footer-right {
        order: 1;
    }

    .footer-tagline {
        font-size: 13px;
    }

    .footer-contact-item {
        font-size: 16px;
    }

    .contact-form-title {
        font-size: 27px;
    }

    .contact-form-subtitle {
        font-size: 21px;
    }

    .submit-btn {
        font-size: 13px;
        padding: 8px;
    }

    .bottom,
    .bottom-curve,
    .footer-wave {
        display: none;
    }
}