:root {
    --black: #0f0617;
    --white: white;
    --89ffc4: #89ffc4;
    --burlywood: #fac384;
    --secondary-color: #fbd2a3;
    --primary-color: #fac384;
}

/* ===== BASE RESET ===== */
* {
    box-sizing: border-box;
}

html {
    height: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100%;
    margin: 0;
    background-color: var(--black);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.66;
    position: relative;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block;
    border: 0;
}

a {
    text-decoration: underline;
    background-color: transparent;
}

a:active,
a:hover {
    outline: 0;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 10px;
    font-weight: bold;
}

h1 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 80px;
    font-weight: 400;
    line-height: 1;
}

h2 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 48px;
    font-weight: 400;
    line-height: 1;
}

h3 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.33333;
}

p {
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 100;
    line-height: 1.3;
}

.gradient-h1 {
    background-image: linear-gradient(120deg, var(--burlywood), white) !important;
    -webkit-text-fill-color: transparent !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    text-shadow: 0 2px 20px rgba(250, 195, 132, 0.3), 0 0 40px rgba(250, 195, 132, 0.2);
    position: relative;
    z-index: 2;
}

.gradient-h1.h1-top {
    padding-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title-main {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 32px;
    background: linear-gradient(120deg, #fac384, white);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 2px 20px rgba(250, 195, 132, 0.3), 0 0 40px rgba(250, 195, 132, 0.2);
    position: relative;
    z-index: 2;
}

.section-subtitle {
    font-size: 17px;
    line-height: 1.7;
    font-weight: 300;
    /* max-width: 900px; */
    position: relative;
    z-index: 2;
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1400px !important;
    margin-left: auto;
    margin-right: auto;
}

.container.nav-coontainer {
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.page-padding {
    z-index: 3;
    padding-left: 40px;
    padding-right: 40px;
    position: relative;
}

.page-padding.relative-top {
    z-index: 3;
    position: relative;
}

.page-wrapper {
    z-index: 10;
    position: relative;
    min-height: 100vh;
}

.main-wrapper {
    z-index: 3;
    position: relative;
}

/* ===== SPACING UTILITIES ===== */
.pt-100 {
    padding-top: 100px;
}

.vertical-spacing {
    padding-top: 100px;
    padding-bottom: 100px;
}

.vertical-spacing.footer-spacing {
    padding-top: 8px;
    padding-bottom: 10px;
}

.vertical-spacing.bottom-pattern {
    padding-bottom: 20px;
}

.margin-bottom-52 {
    margin-bottom: 52px;
}

.margin-bottom-60 {
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.margin-bottom-40 {
    margin-bottom: 40px;
}

.custom-image-gap {
    --bs-gutter-x: 5.5rem;
}

/* ===== NAVIGATION ===== */
.nav-bar {
    padding-top: 13px;
    padding-bottom: 13px;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(15, 6, 23, 0.219);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.brand {
    width: 132px;
    display: flex;
    order: 1;
    flex-shrink: 0;
}

.image-100 {
    width: 100%;
}

.nav-center {
    display: flex;
    gap: 25px;
    align-items: center;
    order: 2;
}

.nav-center a {
    color: var(--white);
    font-weight: 400;
    font-size: 16px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav-center a:hover {
    opacity: 0.7;
}

.nav-right {
    gap: 30px;
    align-items: center;
    display: flex;
    order: 3;
}

.nav-left {
    order: 1;
    flex-shrink: 0;
}

.devis-link {
    color: var(--white);
    font-weight: 400;
    font-size: 16px;
    text-decoration: none;
    padding-top: 10px;
    transition: all 0.3s;
}

.devis-link:hover {
    opacity: 0.7;
}

.phone-button {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 500px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.phone-button:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

.w-inline-block {
    max-width: 100%;
    display: inline-block;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-button {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 6px;
    z-index: 1002;
    position: relative;
    margin-left: auto;
    order: 10;
    flex-shrink: 0;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: linear-gradient(120deg, var(--burlywood), white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-button.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.mobile-menu-button.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-button.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 6, 23, 0.95);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 1001;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 340px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(15, 6, 23, 0.98) 0%, rgba(30, 15, 40, 0.98) 100%);
    backdrop-filter: blur(20px);
    padding: 80px 0 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1002;
    border-left: 1px solid rgba(250, 195, 132, 0.3);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
    z-index: 1003;
}

.mobile-menu-close:hover {
    transform: rotate(90deg);
    color: var(--burlywood);
}

.mobile-menu-close svg {
    display: block;
    filter: drop-shadow(0 0 10px rgba(250, 195, 132, 0.5));
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 24px;
}

.mobile-menu-link {
    color: var(--white);
    text-decoration: none;
    font-size: 17px;
    font-weight: 400;
    padding: 14px 18px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.mobile-menu-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(250, 195, 132, 0.15) 0%, rgba(137, 255, 196, 0.1) 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.mobile-menu-link:hover,
.mobile-menu-link:active {
    border-color: rgba(250, 195, 132, 0.3);
    transform: translateX(8px);
    color: var(--burlywood);
}

.mobile-menu-link:hover::before {
    left: 0;
}

.mobile-menu-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-devis-button {
    background: linear-gradient(135deg, rgba(250, 195, 132, 0.2) 0%, rgba(250, 195, 132, 0.1) 100%);
    border: 2px solid var(--burlywood);
    color: var(--white);
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 500px;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.mobile-devis-button:hover,
.mobile-devis-button:active {
    background: var(--burlywood);
    color: var(--black);
    transform: translateY(-2px);
}

.mobile-phone-button {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 500px;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.mobile-phone-button:hover,
.mobile-phone-button:active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.mobile-phone-button svg {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

/* ===== SECTIONS ===== */
.section_home-hero,
.section_feature,
.section_services,
#ruban-led,
#interieur,
#exterieur,
#professionnel,
.section_cta {
    position: relative;
    overflow: hidden;
}

.section_home-hero {
    margin-top: auto;
}

.section_home-hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.15) 2px, transparent 2px);
    background-size: 50px 50px;
    z-index: 0;
    pointer-events: none;
    top: 0;
    left: 0;
}

.section_feature::after,
#ruban-led::after,
#interieur::after,
#exterieur::after,
#professionnel::after {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    pointer-events: none;
    z-index: 0;
}

.section_feature::after {
    background: radial-gradient(ellipse at 120% 50%, rgba(250, 195, 132, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at -20% 80%, rgba(200, 150, 255, 0.2) 0%, transparent 40%);
    top: -25%;
    left: -25%;
}

#ruban-led::after {
    background: radial-gradient(ellipse at 150% 100%, rgba(200, 150, 255, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at -50% 0%, rgba(250, 195, 132, 0.3) 0%, transparent 50%);
    top: -30%;
    right: -30%;
}

#interieur::after {
    background: radial-gradient(ellipse at 120% 20%, rgba(250, 195, 132, 0.25) 0%, transparent 50%);
    top: -20%;
    left: -20%;
}

#exterieur::after {
    background: radial-gradient(ellipse at 150% 80%, rgba(200, 150, 255, 0.3) 0%, transparent 50%);
    top: -25%;
    right: -25%;
}

#professionnel::after {
    background: radial-gradient(ellipse at -20% 50%, rgba(250, 195, 132, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 120% 80%, rgba(200, 150, 255, 0.2) 0%, transparent 40%);
    top: -30%;
    left: -30%;
}

.section_home-hero>*,
.section_feature>*,
#ruban-led>*,
#interieur>*,
#exterieur>*,
#professionnel>*,
.section_cta>* {
    position: relative;
    z-index: 2;
}

.section_feature>*,
#ruban-led>*,
#interieur>*,
#exterieur>*,
#professionnel>*,
.section_cta>* {
    z-index: 1;
}

/* ===== CARDS & CONTENT ===== */
.title-wrapper {
    position: relative;
    display: inline-block;
    padding: 32px 100px;
    z-index: 3;
    overflow: hidden;
}

/* Diagonal stripe overlay - Figma design effect */
.title-wrapper::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 30%;
    width: 119px;
    height: 170%;
    background: linear-gradient(88deg, #160a18 0%, #190f1b 100%);
    transform: skewX(-15deg);
    z-index: -1;
    opacity: 1;
}

/* Ensure text is above the stripe */
.title-wrapper .gradient-h1 {
    position: relative;
    z-index: 1;
}

.features-cards {
    display: flex;
    justify-content: center;
}

.features-card {
    background: transparent;
    border: 0.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
    z-index: 2;
    padding: 40px 50px;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    height: auto;
}

.features-card p {
    margin-top: 0;
    text-align: center;
    line-height: 1.7;
    letter-spacing: normal;
    font-size: 17px;
}

/* ===== LED STRIP SECTION ===== */
.led-strip-section {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.led-content-box {
    background: transparent;
    border: 0.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
    z-index: 2;
    padding: 40px 50px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.led-content-box p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.led-content-box p:last-child {
    margin-bottom: 0;
}

.led-image-wrap {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid rgba(250, 195, 132, 0.4);
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ratio.led-image-wrap {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(250, 195, 132, 0.4);
}

.led-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ===== IMAGE GRIDS ===== */
.section-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.section-image-wrap {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(124, 124, 124, 0.3);
    position: relative;
    z-index: 2;
}

.ratio.section-image-wrap,
.ratio.led-image-wrap {
    border-radius: 10px;
    overflow: hidden;
}

.ratio.section-image-wrap {
    border: 1px solid rgba(124, 124, 124, 0.3);
}

.ratio.led-image-wrap {
    border: 1px solid rgba(128, 128, 128, 0.4);
}

.section-image-wrap::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 10px;
    z-index: -1;
    opacity: 0.6;
}

.section-image-wrap img,
.led-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ===== CONTACT SECTION ===== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: transparent;
    border: 0.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact-info-left {
    padding: 0;
}

.contact-info-left h2 {
    font-size: 3rem;
    font-weight: 400;
    color: #fbd2a3;
    margin-bottom: 30px;
    line-height: 1.1;
}

.contact-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 30px;
}

.phone-box {
    background: linear-gradient(135deg, #fbd2a3 0%, #f4b75f 100%);
    padding: 25px 30px;
    border-radius: 15px;
    width: fit-content;
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.phone-icon {
    width: 50px;
    height: 50px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phone-icon svg {
    color: #fbd2a3;
    width: 24px;
    height: 24px;
}

.phone-content {
    flex: 1;
}

.phone-label {
    font-size: 0.85rem;
    color: #000;
    margin-bottom: 5px;
    font-weight: 400;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    display: block;
    transition: opacity 0.3s ease;
}

.phone-number:hover {
    opacity: 0.8;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.form-group input,
.form-group textarea {
    width: 100%;
    height: 40px;
    padding: 0 15px;
    background: #ffffffde;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group textarea {
    height: 120px;
    padding: 12px 15px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

.btn-submit {
    padding: 12px 40px;
    height: 45px;
    background: linear-gradient(135deg, #fbd2a3 0%, #f4b75f 100%);
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 5px;
}

.btn-submit:hover {
    opacity: 0.9;
}

.btn-submit:active {
    transform: scale(0.98);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-loading svg {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ===== MODALS ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 16px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    animation: scaleIn 0.5s ease;
}

.modal-icon.error-icon {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff4444 100%);
    color: #fff;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
}

.modal-content p {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.btn-modal-close {
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: #000;
    border: none;
    border-radius: 11px;
    font-size: 0.95rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    /* max-width: 200px; */
}



/* ===== FOOTER ===== */
.footer {
    z-index: 11;
    position: relative;
}

.footer-flex {
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
    gap: 20px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-brand {
    width: 150px;
}

.social-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--white);
}

.social-icons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-icon:hover {
    background: rgba(250, 195, 132, 0.3);
    transform: translateY(-2px);
}

.footer-link-flex {
    grid-column-gap: 16px;
    align-items: center;
    display: flex;
}

.copyright-text {
    font-size: 14px;
    font-weight: 100;
    line-height: 1.71429;
    color: var(--white);
}

/* ===== BACKGROUND PATTERNS ===== */
.bg-pattern {
    z-index: 1;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-img-wrap {
    width: 100%;
    height: 100%;
    justify-content: center;
    display: flex;
    position: relative;
    overflow: hidden;
}

.pattern-image {
    width: 2550px;
    min-width: 2550px;
    height: auto;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
    object-fit: contain;
}

.noice {
    z-index: 2;
    background-image: url("https://assets-global.website-files.com/64845ff44619a4f77cbc530c/64df44ca6d67f48621b54a17_noise%20(2).png");
    background-position: 0 0;
    background-size: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    opacity: 0.6;
}

/* ===== ANIMATIONS ===== */
.fade-in-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-section .section-title-main,
.fade-in-section .gradient-h1 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out 0.2s, transform 0.6s ease-out 0.2s;
}

.fade-in-section.is-visible .section-title-main,
.fade-in-section.is-visible .gradient-h1 {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-section .section-subtitle,
.fade-in-section .led-content-box p {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out 0.4s, transform 0.6s ease-out 0.4s;
}

.fade-in-section.is-visible .section-subtitle,
.fade-in-section.is-visible .led-content-box p {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-section .section-image-wrap,
.fade-in-section .led-image-wrap {
    opacity: 0;
    transform: scale(0.95) translateY(30px);
    transition: opacity 0.8s ease-out 0.5s, transform 0.8s ease-out 0.5s;
}

.fade-in-section.is-visible .section-image-wrap,
.fade-in-section.is-visible .led-image-wrap {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.fade-in-section .section-image-wrap:nth-child(1) {
    transition-delay: 0.5s;
}

.fade-in-section .section-image-wrap:nth-child(2) {
    transition-delay: 0.7s;
}

.fade-in-section .features-card {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease-out 0.3s, transform 0.8s ease-out 0.3s;
}

.fade-in-section.is-visible .features-card {
    opacity: 1;
    transform: scale(1);
}

.fade-in-section form {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out 0.4s, transform 0.8s ease-out 0.4s;
}

.fade-in-section.is-visible form {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-section .led-content-box {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease-out 0.3s, transform 0.8s ease-out 0.3s;
}

.fade-in-section.is-visible .led-content-box {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-section .led-image-wrap {
    opacity: 0;
    transform: translateX(30px) scale(0.95);
    transition: opacity 0.8s ease-out 0.5s, transform 0.8s ease-out 0.5s;
}

.fade-in-section.is-visible .led-image-wrap {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* ===== CHROME AUTOFILL FIX ===== */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff;
    -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.1) inset;
    transition: background-color 5000s ease-in-out 0s;
}