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

body {
    font-family: var(--font-text);
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 600;
}

.header nav a {
    font-family: var(--font-ui);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.btn-primary,
.btn-submit {
    font-family: var(--font-ui);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.font-montserrat-semibold {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 50px;
}

.font-playfair-reguralitalic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 32px;
    color: #907c5f;
    margin-top: -18px;
}

.tucnymalytext {
    font-family: "montserrat", sans-serif;
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 15px;
}

.price-value {
    font-family: "montserrat", sans-serif;
    font-weight: 800;
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: auto;
}

.price-text {
    font-family: "judson", sans-serif;
    font-weight: 400;
    font-size: 24px;
}

.normal_small {
    font-family: "montserrat", sans-serif;
    font-weight: 200;
    font-size: 16px
}

.checkbox li {
    font-family: "montserrat", sans-serif;
    font-weight: 200;
    font-size: 18px;
    margin-top: 17px;
}

.normal_medium_1st {
    font-family: "montserrat", sans-serif;
    font-weight: 650;
    font-size: 17px;
    margin-bottom: 15px;
}

.header_large {
    font-family: "Playfair Display", sans-serif;
    font-weight: 600;
    font-size: 5vw;
    margin-bottom: 15px;
    display: inline;
}

.header_large_cursive {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 5vw;
    color: #907c5f;
    margin-left: 1%;
}


.sluzby_nadpis {
    font-family: "montserrat", sans-serif;
    font-weight: 800;
    font-size: 22px;
    margin-bottom: 15px;
}

.hero-left h2 {
    font-family: var(--font-heading);
    font-size: 38px;
}

.hero-left p {
    font-family: var(--font-text);
    font-size: 16px;
}

.step-box h3 {
    font-family: var(--font-heading);
    font-size: 20px;
}


.form-row input,
.textarea,
.gdpr-text {
    font-family: var(--font-ui);
}

.footer-column h4 {
    font-family: var(--font-ui);
    font-weight: 600;
}

.footer-column a,
.footer-column p,
.footer-copy {
    font-family: var(--font-ui);
}

.logo {
    width: 350px;
    height: auto;
}

/* COLORS FROM DESIGN */
:root {
    --font-ui: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --font-text: 'Judson', serif;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    background: #ffffff00;
}

.header-left {
    display: flex;
    align-items: center;
    flex: 3;
    /* mezera mezi logem a menu */
}

.header nav {
    flex: 7;
    display: flex;
    justify-content: space-evenly
}

.header nav a {
    margin-right: 25px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
}

.header nav a:hover {
    text-decoration: underline;


}

.header .header-right img {
    width: 40px;

}

.header .header-right .btn-login {
    background-color: #b3a389;
    padding: 10px 25px;
    color: black;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

/* HAMBURGER (mobile) */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.menu-toggle .bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
}

.menu-toggle.open .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* SLIDE-OUT NAV */
.mobile-nav {
    position: fixed;
    right: -320px;
    top: 0;
    height: 100vh;
    width: 280px;
    background: #fff;
    z-index: 1200;
    box-shadow: -12px 0 30px rgba(0, 0, 0, 0.12);
    padding: 60px 22px;
    transition: right .32s cubic-bezier(.2, .9, .2, 1);
    display: flex;
    flex-direction: column;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mobile-nav nav a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    padding: 8px 6px;
    border-radius: 8px;
}

.mobile-nav .mobile-login {
    margin-top: 18px;
    align-self: flex-start;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease;
    z-index: 1100;
}

.nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* prevent background scroll when open */
body.nav-open {
    overflow: hidden;
}

.btn-primary {
    background-color: #8b7a61;
    padding: 10px 25px;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

/* HERO */

.hero-section {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 8%;
}

.hero-right {
    position: relative;
}

.info-box {
    position: absolute;
    bottom: -5%;
    left: 5%;
    width: 60%;
    background: rgb(0 0 0 / 32%);
    ;
    /* hnědá + průhlednost */
    padding: 28px 35px;
    border-radius: 28px;

    color: white;
    backdrop-filter: blur(3px);

}


.info-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box ul li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 28px;
    font-size: 16px;
}

/* ikona “✓” vlevo */
.info-box ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: white;
    font-size: 16px;
}

/* VLNA */


body {
    background-image: url("assets/vektor/wavenew.png");
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 45vw;
    /* vlna zabere cca 40–50 % šířky */
}




/* LEVÁ STRANA */
.hero-left {
    max-width: 45%;
}

.carousel {
    position: relative;
    margin-top: 40px;
}

.carousel-viewport {
    height: 230px;
    overflow: hidden;
    border-radius: 15px;
    box-sizing: border-box;
    background: transparent;
}

.slides {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    align-items: center;
    will-change: transform;
    transition: transform 0.45s cubic-bezier(.2, .9, .2, 1);
}

.slides img {
    flex: 0 0 auto;
    width: auto;
    height: 230px;
    object-fit: cover;
    border-radius: 10px;
    user-select: none;
    pointer-events: none;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: #8b7a61;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
}


.carousel-btn:hover svg {
    transform: scale(1.15);
    transition: transform .15s ease;
}

.carousel-btn.left {
    left: -50px;
}

.carousel-btn.right {
    right: -50px;
}

@media (max-width: 600px) {

    .carousel-viewport {
        padding: 0 16px;
    }

    .carousel-btn.left {
        left: 6px;
    }

    .carousel-btn.right {
        right: 6px;
    }
}

/* PRAVÁ STRANA – MASKA */
.hero-right {
    position: relative;
    max-width: 45%;
    display: flex;
    justify-content: center;
}

.shape-mask {
    position: relative;
}

.mask {
    max-width: 70%;
}

.masked-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    /* Maskování obrázku tvarem */
    mask-image: url("assets/mask-shape.png");
    mask-size: contain;
    mask-repeat: no-repeat;
}

.hero-text h1 {
    font-size: 40px;
    font-weight: 600;
}

.hero-text h2 {
    font-size: 28px;
    margin: 15px 0;
}

.hero-text span {
    color: var(--brown);
}

.hero-text p {
    max-width: 450px;
    margin-bottom: 20px;
}

.hero-image img {
    width: 350px;
    border-radius: 15px;
    object-fit: cover;
}

.contact-box {
    margin-top: 15px;
    padding: 15px;
    background: var(--brown);
    color: white;
    border-radius: 10px;
    width: 220px;
}

/* HOW IT WORKS */
.how-it-works {
    text-align: center;
    padding: 80px 8%;
}

.how-it-works h1,
.services-full h1 {
    line-height: 1;
    display: block;
    text-align: center;
}

.services-full p#sluzbaP {
    line-height: 5px;
    color: #b7a689;
}

.steps-boxes {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    justify-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.step-box {
    background: white;
    border: 2px solid #b7a689;
    border-radius: 22px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 20%;
    min-width: 300px;
}

.step-icon {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.step-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("assets/vektor/pattern-001.svg") no-repeat center/contain;
    background-size: 100% auto;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.step-icon img {
    width: 88px;
    height: auto;
    position: relative;
    z-index: 1;
}


.step-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}



.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.step img {
    width: 60px;
    margin-bottom: 15px;
}

/* SERVICES */

/* kontejner */
.services-full {
    width: 100%;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.service-row {
    display: flex;
    align-items: flex-start;
    gap: 150px;
    margin: 80px 0;
}


/* Přepínač pořadí */


/* Ikona + text */
.service-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.service-icon {
    width: 85px;
    height: auto;
    flex-shrink: 0;
    margin-top: 6px;
}

/* Texty */
.service-text {
    width: 45%;
    /* pevný podíl - stabilní layout */
}

.service-text h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.service-text p {
    max-width: 470px;
    line-height: 1.55;
    margin-bottom: 30px;
}

/* Hnědý box */
.service-image-box {
    width: 48%;
    /* ~ 48% - druhý sloupec */
    max-width: 520px;
    min-width: 420px;
    height: 380px;
    background: #b3a389;
    border-radius: 28px;
    padding: 28px;
    position: relative;
    /* důležité pro absolute img */
    overflow: visible;
    /* aby obrázek mohl přesahovat */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Foto uvnitř */
.service-image-box img {
    width: 100%;
    height: 100%;
    border-radius: 26px;
    object-fit: cover;
    position: absolute;
}

/* Horní foto — směr doprava dolů */
.photo-right img {
    top: 40px;
    left: 40px;
}

/* Dolní foto — směr doleva dolů */
.photo-left img {
    top: 40px;
    right: 40px;
}


/* PRICING */
/* ===== PRICING SECTION ===== */

.pricing-section {
    text-align: center;
    padding: 80px 0;
}

.pricing-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.pricing-icon img {
    width: 60px;
    margin: 0 auto 25px;
}

.pricing-text {
    max-width: 45%;
    margin: 0 auto 50px;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    font-family: "montserrat", sans-serif;
    font-weight: 220;
}

/* ===== ROW ===== */

.pricing-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

/* SYMBOLY + A = A + B = C */

.pricing-symbol {
    font-size: 50px;
    font-weight: 700;
    color: #8b7a61;
}


/* ===== BOXY ===== */

.pricing-box {
    width: 240px;
    height: 300px;
    /* PEVNÁ VÝŠKA podle designu */
    border: 2px solid #b7a689;
    border-radius: 20px;
    padding: 25px 20px;
    background: #fff;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    justify-content: flex-start;
    /* vyrovná obsah nahoru */
    gap: 10px;
    /* mezi elementy pravidelné mezery */
}



/* === FLEK ZA IKONOU === */

/*.pricing-flek {
    background: url("assets/vektor/pattern-001.svg") no-repeat center/contain;
    width: 170px;
    height: 130px;
    margin-bottom: 5px !important;*/
/* MENŠÍ MEZERA */
/*
    display: flex;
    align-items: center;
    justify-content: center;
}*/
.pricing-flek {
    position: relative;
    width: 70px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.pricing-flek::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("assets/vektor/pattern-001.svg") no-repeat center/contain;
    background-size: 100% auto;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.pricing-flek img {
    width: 45px;
    height: auto;
    position: relative;
    z-index: 1;
}


/* zvětšené ikony */
/*.pricing-flek img {
    width: 80px;
}*/

/* ===== TEXTY V BOXY ===== */

.pricing-box h3 {
    margin-top: 0;
    margin-bottom: 8px;
}




/* Box s výpočtem */
.pricing-section {
    text-align: center;
    padding: 80px 0;
}

.pricing-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-icon img {
    width: 60px;
    margin: 0 auto 25px;
}


.pricing-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.price-value {
    font-size: 22px;
    font-weight: 700;
    margin-top: 10px;
}

.pricing-symbol {
    font-size: 45px;
    font-weight: 800;
    color: #8b7a61;
    margin: 0 20px;
}


/* CONTACT */
.contact {
    padding: 80px 8%;
    background: white;
}

.contact-form {
    display: grid;
    gap: 15px;
    max-width: 500px;
    margin: auto;
}


/* MAPA */
.map-section {
    text-align: center;
    padding: 80px 0;
}

.map-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
}

.map-wrapper {
    width: 80%;
    max-width: 1100px;
    height: 430px;
    margin: 0 auto;
    border: 3px solid #b7a689;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    background: #f8f5f0;
}

.gmap {
    width: 100%;
    height: 100%;
    border: 0;
    filter: brightness(0.95);
    /* jemné ztlumení pro elegantní look */
}

/* modální okno */
.form-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 9999;
}

.form-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.form-modal-content {
    background: #fff;
    padding: 32px 28px;
    border-radius: 14px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    transform: translateY(20px);
    transition: transform .3s ease;
}

.form-modal.active .form-modal-content {
    transform: translateY(0);
}

.form-modal-content h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.form-modal-content p {
    margin-bottom: 20px;
    line-height: 1.5;
}

/* varianty */
.form-modal.success h3 {
    color: #2e7d32;
}

.form-modal.error h3 {
    color: #c62828;
}




.map-address {
    margin-top: 25px;
    font-size: 16px;
    color: #4b4b4b;
}

/* formulář */
/* ================================
   KONTAKTNÍ FORMULÁŘ – TABLET DESIGN
   ================================ */

.contact-section {
    text-align: center;
    padding: 80px 0 -50px;
}

.contact-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-subtitle {
    font-size: 15px;
    color: #555;
    margin-bottom: 40px;
}

/* Wrapper držící tablet */
.tablet-wrapper {
    position: relative;
    width: 70vw;
    max-width: 1300px;
    margin: 0 auto;
}

.tablet-image {
    width: 100%;
    display: block;
}

/* VNITŘNÍ OBSAH NA DISPLEJI TABLETU */
.tablet-inner {
    position: absolute;
    top: 33%;
    left: 13%;
    width: 73%;
    height: 71%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
}

/* Horní řádek polí */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 5px;
}

.form-row input {
    flex: 1;
    padding: 10px 16px;
    border-radius: 16px;
    border: 2px solid #b7a689;
    background: transparent;
    font-size: 14px;
}

/* Textové pole */

.textarea {


    width: 100%;
    height: 176px;
    border-radius: 16px;
    padding: 12px 16px;
    border: 2px solid #b7a689;
    background: transparent;
    resize: none;
    font-size: 14px;
}

/* GDPR text */
.gdpr-text {
    font-size: 10px;
    margin: 4px 0 10px;
    color: #555;
}

/* ODESLAT tlačítko */
.btn-submit {
    background: #b7a689;
    color: white;
    padding: 10px 28px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    width: fit-content;
    margin: 0 auto;
    /* zarovnání doprostřed */
    transition: 0.2s ease;
}

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








/* CELÝ FOOTER */
.footer {
    background: url("assets/vektor/pattern-003.svg") no-repeat top center;
    background-size: cover;
    /* zmenšený top padding pro lepší proporce */
    padding-top: 8%;
    padding-bottom: 48px;
    color: white;
    overflow: hidden;
}


/* VLNA NAHOŘE */
.footer-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
    padding: 0 20px;
}

.footer-column {
    width: 13%;
    display: flex;
    text-align: left;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-icon {
    width: 24px;
    margin-bottom: 12px;
}

.footer-column a {
    color: white;
    opacity: 0.95;
    text-decoration: none;
    transition: opacity .15s ease, text-decoration .15s ease;
}

.footer-column a:hover {
    text-decoration: underline;
    opacity: 1;
}

.footer-copy {
    margin-top: 12px;
    opacity: 0.95;
}

.footer-column h4 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

.footer-column a,
.footer-column p {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
    color: white;
    text-decoration: none;
}

.footer-copy {
    text-align: center;
    opacity: 0.9;
    font-size: 14px;
}









/* RESPONZIVITA */
@media (max-width: 1300px) {
    .tablet-image {
        display: none;
    }

    .tablet-inner {
        position: static;
        width: 90%;
        max-width: 720px;
        margin: 18px auto 40px;
        background: #fff;
        border: 2px solid var(--brown);
        border-radius: 18px;
        padding: 18px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        height: auto;
        box-sizing: border-box;
    }

    .tablet-inner .form-row {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .tablet-inner input,
    .tablet-inner textarea {
        width: 100%;
        padding: 12px 14px;
        border-radius: 12px;
        border: 2px solid #b7a689;
        background: transparent;
        font-size: 15px;
    }

    .tablet-inner .btn-submit {
        width: 100%;
        padding: 12px 16px;
        border-radius: 12px;
    }

}

@media (max-width: 1200px) {
    .hero-section {
        flex-direction: column;
        padding: 0;
        padding-top: 10%;

    }

    .hero-left {
        width: 100%;
        max-width: 100%;
        padding: 40px 6% 20px;
        box-sizing: border-box;
        text-align: center;
    }

    .hero-left h1 {
        font-size: 36px;
        margin-bottom: 6px;
    }

    .hero-left h2 {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .hero-left p {
        margin: 0 auto 18px;
        max-width: 50%;
    }

    .hero-left .btn-primary {
        margin: 0 auto 18px;
    }

    .carousel {
        max-width: 520px;
        height: auto;
        margin: 20px auto 0;
    }

    .slides {
        width: 200%;
    }

    .slides img {
        width: 100%;
        height: auto;
    }

    .hero-right {
        max-width: 960px;
        width: 60%;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .shape-mask {
        width: 100%;
        max-width: 720px;
        height: auto;
        display: flex;
        flex-direction: column;
        align-content: center;
        align-items: center;
    }

    .mask,
    .masked-img {
        width: 0%;
        height: auto;
        object-fit: cover;
    }

    .info-box {
position: relative;
        background: rgb(0 0 0 / 32%);
        padding: 28px 35px;
        border-radius: 28px;
        color: white;
        backdrop-filter: blur(3px);
        width: 150%;
        left: 0%;
    }
}

@media (max-width: 900px) {

    /* Footer adjustments for tablet */
    .footer {
        padding-bottom: 40px;
    }

    .footer-content {
        gap: 48px;
    }

    .footer-column {
        text-align: center;
        min-width: 160px;
    }

    .footer-column a {
        display: inline-block;
    }


    .header nav {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .header-right .btn-primary {
        display: none;
    }


    .info-box h3 {
        font-size: 16px;
    }

    .how-it-works {
        padding: 140px 6%;
    }

    .steps,
    .steps-boxes {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .step-box {
        min-height: auto;
        padding: 22px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-icon {
        width: 120px;
        height: 120px;
        margin-bottom: 12px;
        background-size: 90% auto;
    }

    .step-icon img {
        width: 64px;
    }

    .step-box h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }



    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-row {
        flex-direction: column;
        gap: 36px;
        margin: 40px 0;
    }

    .service-row.reverse {
        flex-direction: column-reverse;
    }

    .service-text {
        width: 100%;
        padding: 0 6%;
    }

    .service-text p {
        max-width: 100%;
    }

    .service-image-box {
        width: 100%;
        max-width: none;
        min-width: auto;
        height: auto;
        padding: 18px;
        border-radius: 18px;
    }

    .service-image-box img {
        position: relative;
        width: 100%;
        height: auto;
        border-radius: 12px;
        top: auto;
        left: auto;
        right: auto;
    }

    .pricing-box {
        flex-direction: column;
    }

    .pricing-row {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .pricing-symbol {
        display: none;
    }

    .pricing-box {
        width: 100%;
        max-width: 420px;
        height: auto;
        padding: 20px;
    }

    .pricing-flek {
        width: 120px;
        height: 90px;
    }


    .tablet-image {
        display: none;
    }

    .tablet-inner {
        position: static;
        width: 90%;
        max-width: 720px;
        margin: 18px auto 40px;
        background: #fff;
        border: 2px solid var(--brown);
        border-radius: 18px;
        padding: 18px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        height: auto;
        box-sizing: border-box;
    }

    .tablet-inner .form-row {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .tablet-inner input,
    .tablet-inner textarea {
        width: 100%;
        padding: 12px 14px;
        border-radius: 12px;
        border: 2px solid #b7a689;
        background: transparent;
        font-size: 15px;
    }

    .tablet-inner .btn-submit {
        width: 100%;
        padding: 12px 16px;
        border-radius: 12px;
    }
}

@media (max-width: 600px) {

    .steps,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .logo {
        width: 160px;
    }

    .mobile-nav {
        width: 100%;
        right: -100%;
    }

    .mobile-nav.open {
        right: 0;
        width: 100%;
    }

    .mobile-nav {
        padding-top: 70px;
    }

    .hero-left {
        padding: 24px 6% 12px;
    }

    .hero-left h1 {
        font-size: 30px;
    }

    .hero-left h2 {
        font-size: 18px;
    }



    .steps,
    .steps-boxes {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .step-icon {
        width: 100px;
        height: 100px;
    }

    .step-icon img {
        width: 56px;
    }

    .step-box {
        padding: 16px;
    }

    .step-box h3 {
        font-size: 17px;
    }

    .service-row {
        gap: 22px;
        margin: 28px 0;
    }

    .service-text {
        padding: 0 5%;
    }

    .service-image-box {
        padding: 12px;
        border-radius: 14px;
    }

    .service-image-box img {
        border-radius: 10px;
    }

    .pricing-row {
        flex-direction: column;
        gap: 18px;
    }

    .pricing-symbol {
        display: none;
    }

    .pricing-box {
        max-width: 360px;
        padding: 14px;
    }

    .pricing-flek {
        width: 100px;
        height: 80px;
    }

    .pricing-flek img {
        width: 60px;
    }

    .price-value {
        font-size: 18px;
    }
}

@media (max-width: 400px) {
.footer {

    padding-top: 30%;

}
}