﻿:root {
    --cream: #FDF6EE;
    --blush: #F2C4CE;
    --rose: #D4637A;
    --deep-rose: #A8394F;
    --gold: #C9A96E;
    --gold-light: #E8D5B0;
    --brown: #6B3A2A;
    --text: #3D2020;
}

/* SKIP LINK */
.skip-link {
    position: absolute;
    top: -100px;
    right: 0;
    background: var(--rose);
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    z-index: 9999;
    border-radius: 0 0 0 6px;
    text-decoration: none;
    transition: top .2s
}

.skip-link:focus {
    top: 0
}

/* FOCUS INDICATORS */
*:focus-visible {
    outline: 3px solid var(--rose);
    outline-offset: 3px;
    border-radius: 3px
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--rose);
    outline-offset: 3px;
    border-radius: 3px
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Fredoka', sans-serif;
    background: var(--cream);
    color: var(--text);
    direction: rtl;
    overflow-x: hidden
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(253, 246, 238, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gold-light);
    padding: 12px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

nav img.logo {
    height: 80px;
    width: auto
}

nav ul {
    list-style: none;
    display: flex;
    gap: 36px;
    flex: 1;
    justify-content: center
}

nav ul a {
    text-decoration: none;
    color: var(--brown);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: .05em;
    transition: color .3s;
    position: relative
}

nav ul a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--rose);
    transition: width .3s
}

nav ul a:hover {
    color: var(--rose)
}

nav ul a:hover::after {
    width: 100%
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
    z-index: 200
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--brown);
    border-radius: 2px;
    transition: all .35s cubic-bezier(.23, 1, .32, 1);
    transform-origin: center
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0)
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 84px;
    right: 0;
    width: 100%;
    background: rgba(253, 246, 238, 0.97);
    backdrop-filter: blur(20px);
    z-index: 150;
    flex-direction: column;
    align-items: center;
    padding: 20px 0 28px;
    border-bottom: 1px solid var(--gold-light);
    box-shadow: 0 12px 40px rgba(100, 40, 40, .12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .3s ease, transform .3s ease;
    display: none
}

.mobile-menu.open {
    display: flex;
    opacity: 1;
    pointer-events: all;
    transform: translateY(0)
}

.mobile-menu a {
    text-decoration: none;
    color: var(--brown);
    font-family: 'Suez One', serif;
    font-size: 22px;
    padding: 12px 0;
    transition: color .2s;
    opacity: 0;
    animation: menuItemIn .35s forwards
}

.mobile-menu.open a:nth-child(1) {
    animation-delay: .04s
}

.mobile-menu.open a:nth-child(2) {
    animation-delay: .08s
}

.mobile-menu.open a:nth-child(3) {
    animation-delay: .12s
}

.mobile-menu.open a:nth-child(4) {
    animation-delay: .16s
}

@keyframes menuItemIn {
    from {
        opacity: 0;
        transform: translateY(8px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.mobile-menu a:hover {
    color: var(--rose)
}

.mobile-divider {
    width: 30px;
    height: 1px;
    background: var(--gold-light);
    margin: 4px 0
}

/* HERO */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: -20%;
    background-image: url("images/cover1.jpg");
    background-size: cover;
    background-position: center;
    filter: brightness(.65);
    will-change: transform
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(168, 57, 79, .4) 0%, rgba(50, 20, 20, .6) 100%)
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 80px 80px;
    animation: fadeUp 1.2s ease forwards
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero-logo {
    display: block;
    height: 250px;
    width: auto;
    margin-bottom: 28px;
    /* filter: brightness(0) invert(1) drop-shadow(0 4px 16px rgba(0, 0, 0, .35)); */
}

.hero-tag {
    display: inline-block;
    background: var(--gold);
    color: white;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .15em;
    padding: 6px 18px;
    border-radius: 2px;
    margin-bottom: 24px;
    text-transform: uppercase
}

.hero h1 {
    font-family: 'Noto Serif Hebrew', serif;
    font-weight: 800;
    font-size: clamp(48px, 7vw, 88px);
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 6px 40px rgba(0, 0, 0, .45), 0 2px 8px rgba(168, 57, 79, .4)
}

.hero h1 em {
    color: var(--blush);
    font-style: italic
}

.hero p {
    color: rgba(255, 255, 255, .85);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 300
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

/* BUTTONS */
.btn-primary {
    background: var(--rose);
    color: white;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all .3s;
    letter-spacing: .05em;
    box-shadow: 0 8px 30px rgba(164, 57, 79, .4)
}

.btn-primary:hover {
    background: var(--deep-rose);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(164, 57, 79, .5)
}

.btn-outline {
    background: transparent;
    color: white;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 500;
    border: 2px solid rgba(255, 255, 255, .6);
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all .3s
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, .1)
}

/* SECTION HEADER */
.section-header {
    text-align: center;
    margin-bottom: 60px
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .25em;
    color: var(--rose);
    text-transform: uppercase;
    margin-bottom: 12px
}

.section-header h2 {
    font-family: 'Suez One', serif;
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--brown);
    line-height: 1.2
}

.section-header p {
    color: #8B6355;
    font-size: 17px;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 560px;
    margin-inline: auto;
    font-weight: 300
}

.gold-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 20px auto 0
}

/* ABOUT */
.about {
    padding: 100px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto
}

.about-images {
    position: relative;
    height: 500px
}

.about-images img {
    border-radius: 4px;
    object-fit: cover;
    position: absolute;
    box-shadow: 0 20px 60px rgba(100, 40, 40, .2)
}

.about-images img:first-child {
    width: 65%;
    height: 70%;
    top: 0;
    right: 0;
    animation: floatA 6s ease-in-out infinite
}

.about-images img:last-child {
    width: 55%;
    height: 60%;
    bottom: 0;
    left: 0;
    animation: floatB 6s ease-in-out infinite;
    border: 6px solid var(--cream)
}

@keyframes floatA {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

@keyframes floatB {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(10px)
    }
}

.about-text .section-label {
    text-align: right;
    display: block
}

.about-text h2 {
    font-family: 'Suez One', serif;
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--brown);
    line-height: 1.2;
    margin-bottom: 24px
}

.about-text p {
    color: #8B6355;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 20px;
    font-weight: 300
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--gold-light)
}

.stat-num {
    font-family: 'Suez One', serif;
    font-size: 38px;
    color: var(--rose);
    font-weight: 400;
    display: block
}

.stat-label {
    font-size: 13px;
    color: #8B6355;
    font-weight: 500
}

/* PRODUCTS */
.products {
    padding: 100px 80px;
    background: linear-gradient(180deg, var(--cream) 0%, #FEF0F3 100%)
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(100, 40, 40, .18)
}

.product-card:hover .card-img img {
    transform: scale(1.08)
}

.card-img {
    height: 260px;
    overflow: hidden;
    position: relative
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--rose);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    padding: 5px 12px;
    border-radius: 2px;
    text-transform: uppercase
}

.card-body {
    padding: 28px;
    flex: 1
}

.card-body h3 {
    font-family: 'Suez One', serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: var(--brown);
    margin-bottom: 10px
}

.card-body p {
    color: #9B7465;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 300
}

.card-footer {
    padding: 0 28px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.card-price {
    font-family: 'Suez One', serif;
    font-size: 19px;
    color: var(--rose);
    font-weight: 400
}

.card-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: .05em;
    transition: color .2s;
    display: flex;
    align-items: center;
    gap: 5px
}

.card-link:hover {
    color: var(--rose)
}

/* PARALLAX BANNER */
.parallax-banner {
    height: 420px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center
}

.parallax-banner .p-bg {
    position: absolute;
    inset: -25%;
    background-size: cover;
    background-position: center;
    will-change: transform
}

.parallax-banner .p-overlay {
    position: absolute;
    inset: 0;
    background: rgba(100, 30, 50, .55)
}

.parallax-banner .banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 40px
}

.parallax-banner .banner-content h2 {
    font-family: 'Suez One', serif;
    font-size: clamp(26px, 3.5vw, 46px);
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, .3)
}

.parallax-banner .banner-content p {
    font-size: 18px;
    opacity: .9;
    font-weight: 300;
    margin-bottom: 30px
}

/* GALLERY */
.gallery-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 380px
}

.gallery-item {
    overflow: hidden;
    position: relative;
    cursor: pointer
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    filter: brightness(.85)
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(.7)
}

.gallery-item .overlay-text {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: white;
    font-family: 'Suez One', serif;
    font-size: 18px;
    font-style: italic;
    opacity: 0;
    transition: opacity .3s
}

.gallery-item:hover .overlay-text {
    opacity: 1
}

/* PROCESS */
.process {
    padding: 100px 80px;
    max-width: 1300px;
    margin: 0 auto
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
    position: relative
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    right: 12%;
    left: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light), var(--gold-light), transparent)
}

.step {
    text-align: center
}

.step-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--cream);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Suez One', serif;
    font-size: 24px;
    color: var(--rose);
    font-weight: 400;
    box-shadow: 0 4px 20px rgba(201, 169, 110, .2);
    position: relative;
    z-index: 1
}

.step h3 {
    font-family: 'Suez One', serif;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: var(--brown);
    margin-bottom: 10px
}

.step p {
    font-size: 14px;
    color: #9B7465;
    line-height: 1.6;
    font-weight: 300
}

/* TESTIMONIALS */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--deep-rose) 0%, #7A2838 100%);
    position: relative;
    overflow: hidden
}

.testimonials::before {
    content: '"';
    font-family: 'Suez One', serif;
    font-size: 400px;
    color: rgba(255, 255, 255, .05);
    position: absolute;
    top: -80px;
    left: 40px;
    line-height: 1;
    pointer-events: none
}

.testimonials .section-label {
    color: var(--gold)
}

.testimonials .section-header {
    padding: 0 80px;
}

.testimonials-marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
    z-index: 1;
    margin-top: 60px;
    direction: ltr;
    /* force LTR so translateX math works correctly in RTL page */
    /* fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.testimonials-marquee:hover .testimonials-belt {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonials-belt {
    display: flex;
    gap: 28px;
    width: max-content;
    animation: marquee-scroll 48s linear infinite;
}

.testimonial-card {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 6px;
    padding: 36px;
    width: 340px;
    flex-shrink: 0;
    direction: rtl;
    /* restore RTL text inside each card */
    transition: background .3s, transform .3s;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, .18);
    transform: translateY(-4px)
}

.stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px
}

.testimonial-card p {
    color: rgba(255, 255, 255, .9);
    font-size: 15px;
    line-height: 1.8;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 24px
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Suez One', serif;
    font-size: 18px;
    color: white;
    font-weight: 400
}

.author-name {
    color: white;
    font-weight: 600;
    font-size: 15px
}

.author-sub {
    color: rgba(255, 255, 255, .6);
    font-size: 12px
}

/* CONTACT */
.contact {
    padding: 100px 80px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center
}

.contact h2 {
    font-family: 'Suez One', serif;
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--brown);
    margin-bottom: 20px;
    line-height: 1.2
}

.contact>p {
    color: #8B6355;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 50px
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 30px;
    margin-top: 20px;
}

.contact-card {
    background: white;
    border-radius: 8px;
    padding: 20px 20px;
    box-shadow: 0 4px 30px rgba(100, 40, 40, .08);
    transition: transform .3s
}

.contact-card:hover {
    transform: translateY(-5px)
}

.contact-icon {
    font-size: 32px;
    margin-bottom: 14px;
    display: block
}

.contact-card strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 6px
}

.contact-card span {
    font-size: 15px;
    color: #8B6355
}

.contact-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all .3s;
    box-shadow: 0 8px 30px rgba(37, 211, 102, .35);
    letter-spacing: .05em
}

.contact-wa-btn:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(37, 211, 102, .5)
}

.contact-wa-btn svg {
    width: 26px;
    height: 26px;
    fill: white;
    flex-shrink: 0
}

/* FOOTER */
footer {
    background: var(--brown);
    color: rgba(255, 255, 255, .7);
    text-align: center;
    padding: 40px 80px;
    font-size: 14px
}

footer img.logo-footer {
    height: 85px;
    margin-bottom: 20px;
    opacity: .9
}

footer p {
    line-height: 1.8
}

footer strong {
    color: white
}

footer a {
    color: var(--cream);
    text-decoration: none;
    font-weight: bold;
    transition: color .2s
}

footer a:hover {
    color: var(--gold)
}

/* SOCIAL LINKS */
.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 16px 0 8px;
}

.footer-social a {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 15px;
    font-weight: 500;
    opacity: .85;
    text-decoration: none;
    transition: opacity .2s, color .2s, transform .2s;
}

.footer-social a:hover {
    opacity: 1;
    color: var(--gold);
    transform: translateY(-2px);
}

/* LEGAL LINKS */
.footer-legal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 16px 0 8px;
    flex-wrap: wrap
}

.footer-legal a {
    font-size: 14px;
    font-weight: 500;
    opacity: .9;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity .2s, color .2s
}

.footer-legal a:hover {
    opacity: 1;
    color: var(--gold)
}

.footer-legal span {
    opacity: .4;
    font-size: 13px
}

/* WA FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, .4);
    z-index: 999;
    transition: all .3s;
    text-decoration: none;
    animation: waPulse 3s ease-in-out infinite
}

@keyframes waPulse {

    0%,
    100% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, .4)
    }

    50% {
        box-shadow: 0 8px 50px rgba(37, 211, 102, .7)
    }
}

.whatsapp-float:hover {
    transform: scale(1.1)
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white
}

/* BACK TO TOP */
.back-to-top {
    position: fixed;
    bottom: 100px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--rose);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(168, 57, 79, .4);
    z-index: 998;
    transition: all .3s;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    border: none;
    cursor: pointer
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0)
}

.back-to-top:hover {
    background: var(--deep-rose);
    transform: scale(1.1) translateY(0)
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    fill: white
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all .7s cubic-bezier(.25, .46, .45, .94)
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

.reveal-delay-1 {
    transition-delay: .1s
}

.reveal-delay-2 {
    transition-delay: .2s
}

.reveal-delay-3 {
    transition-delay: .3s
}

.reveal-delay-4 {
    transition-delay: .4s
}

.reveal-delay-5 {
    transition-delay: .5s
}

/* Product cards: slide up + fade from bottom */
.product-card {
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(100, 40, 40, .08);
    opacity: 0;
    transform: translateY(50px);
    transition: opacity .6s ease, transform .6s ease, box-shadow .4s ease;
    display: flex;
    flex-direction: column
}

.product-card.card-visible {
    opacity: 1;
    transform: translateY(0)
}

.product-card.card-visible:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(100, 40, 40, .18)
}

/* MOBILE */
@media(max-width:768px) {
    nav {
        padding: 12px 20px
    }

    nav ul {
        display: none
    }

    .hamburger {
        display: flex
    }

    .hero-content {
        padding: 120px 24px 60px
    }

    .hero h1 {
        font-size: 36px
    }

    .hero p {
        font-size: 15px
    }

    .hero-cta {
        flex-direction: column
    }

    .btn-primary,
    .btn-outline {
        text-align: center
    }

    .about {
        grid-template-columns: 1fr;
        padding: 60px 24px;
        gap: 40px
    }

    .about-images {
        height: 280px
    }

    .products {
        padding: 60px 24px
    }

    .products-grid {
        grid-template-columns: 1fr
    }

    .gallery-strip {
        grid-template-columns: repeat(2, 1fr);
        height: 300px
    }

    .process {
        padding: 60px 24px
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr)
    }

    .process-steps::before {
        display: none
    }

    .testimonials {
        padding: 60px 0
    }

    .testimonials .section-header {
        padding: 0 24px;
    }

    .testimonials-marquee {
        -webkit-mask-image: linear-gradient(to left, transparent 0%, black 5%, black 95%, transparent 100%);
        mask-image: linear-gradient(to left, transparent 0%, black 5%, black 95%, transparent 100%);
    }

    .testimonial-card {
        width: 280px;
        padding: 24px;
    }

    .contact {
        padding: 60px 24px
    }

    .contact h2 {
        font-size: 32px
    }

    .contact-cards {
        grid-template-columns: 1fr
    }

    .contact-wa-btn {
        padding: 16px 32px;
        font-size: 16px
    }

    footer {
        padding: 40px 24px
    }

    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 52px;
        height: 52px
    }

    .parallax-banner .p-bg {
        background-attachment: scroll
    }
}

@media(max-width:480px) {
    .hero h1 {
        font-size: 28px
    }

    .gallery-strip {
        grid-template-columns: 1fr;
        height: auto
    }

    .gallery-item {
        height: 200px
    }

    .process-steps {
        grid-template-columns: 1fr
    }
}