/* ===== HERO SECTION - SLIDER ===== */

.menu-link-with-arrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.menu-link-with-arrow span {
    flex: 1;
}

.hero {
    /*height: 100vh;                */
    /*height: calc(100svh - 135px); */
    /*height: auto;*/
    height: var(--hero-height, 100vh);
    max-width: 1920px;
    max-height: 1080px;;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    width: 400%;
    height: 100%;
    display: flex;
    transition: transform 0.8s ease-in-out;
}

.hero-slide {
    width: 25%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

picture.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

picture.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-content {
    max-width: 500px;
    color: white;
    position: relative;
    z-index: 2;
    margin-top: 140px;

}

@media (min-aspect-ratio: 21/9) {
    .hero-content {

        margin-top: 370px !important;
    }
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 30px;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}


.hero-cta {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    white-space:nowrap;
    background:#c00;
    color:#fff;
    border-radius:20px;
    padding:12px 20px;
    text-decoration:none;
    font-weight:700;
    font-size: 16px;
    transition:background .25s, color .25s, transform .25s;
}

.hero-cta:hover {
    filter:brightness(.96);
}

@media (min-width:381px) {
    .hero-cta {
        padding:12px 28px;
        font-size:16px;
    }
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: white;
}


@media (min-width: 768px) {

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-content {
        max-width: 600px;
        margin-top: 300px;

    }
}

@media (min-width: 1090px) {

    .hero {
        height: calc(100vh - 200px);
    }
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .hero-content {
        max-width: 1000px;

        margin-top: 400px;

    }
}

@media (min-width: 1490px) {
    .hero-content {
        max-width: 1200px;

        margin-top: 450px;

    }
}

.custom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: transform .3s ease;
    z-index: 10;
}

.custom-arrow--prev {
    left: 1rem;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20100%20100'%3E%3Cpath%20d='M65%2015%20L25%2050%20L65%2085'%20stroke='%23ffffff'%20stroke-width='3'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 100% 100%;
}

.custom-arrow--next {
    right: 1rem;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20100%20100'%3E%3Cpath%20d='M35%2015%20L75%2050%20L35%2085'%20stroke='%23ffffff'%20stroke-width='3'%20fill='none'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 100% 100%;
}


.custom-arrow--prev:hover {
    transform: translateY(-50%) translateX(-8px);
}

.custom-arrow--next:hover {
    transform: translateY(-50%) translateX(8px);
}

@media (max-width: 1100px) {
    .custom-arrow {
        display: none;
    }
}

.container {
    max-width: 1700px;
    margin:0 auto;
    width: 100%;
}


.hero-slider {
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.hero-slide {
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/*.hero {*/
/*    position:relative;*/
/*    width:100%;*/
/*    height:var(--hero-height,600px);*/
/*    max-width:1920px;*/
/*    margin:0 auto;*/
/*    overflow:hidden;*/
/*    display:flex;*/
/*    align-items:flex-end;*/
/*    padding:0 16px;*/
/*}*/

/*.hero-bg {*/
/*    position:absolute;*/
/*    inset:0;*/
/*    z-index:0;*/
/*}*/

/*.hero-bg img {*/
/*    width:100%;*/
/*    height:100%;*/
/*    object-fit:cover;*/
/*    object-position:center;*/
/*    display:block;*/
/*}*/

/*.hero::before {*/
/*    content:"";*/
/*    position:absolute;*/
/*    inset:0;*/
/*    background:rgba(0,0,0,0.45);*/
/*    z-index:1;*/
/*}*/

/*.hero-inner {*/
/*    position:relative;*/
/*    z-index:2;*/
/*    width:100%;*/
/*    max-width:1320px;*/
/*    margin:0 auto;*/
/*}*/

/*.hero-content {*/
/*    max-width:100%;*/
/*    color:#fff;*/
/*    display:flex;*/
/*    flex-direction:column;*/
/*    align-items:flex-start;*/
/*    gap:16px;*/
/*    margin:32px 0;*/
/*}*/

/*.hero-title {*/
/*    font-size:1.8rem;*/
/*    font-weight:400;*/
/*    margin:0;*/
/*}*/

/*.hero-subtitle {*/
/*    font-size:1rem;*/
/*    line-height:1.7;*/
/*    color:#e6e6e6;*/
/*    margin:0;*/
/*}*/

/*.hero-cta {*/
/*    display:inline-flex;*/
/*    align-items:center;*/
/*    justify-content:center;*/
/*    white-space:nowrap;*/
/*    background:#c00;*/
/*    color:#fff;*/
/*    border-radius:20px;*/
/*    padding:12px 20px;*/
/*    text-decoration:none;*/
/*    font-weight:700;*/
/*    font-size: 16px;*/
/*    transition:background .25s, color .25s, transform .25s;*/
/*}*/

/*.hero-cta:hover {*/
/*    filter:brightness(.96);*/
/*}*/

/*@media (min-width:381px) {*/
/*    .hero-cta {*/
/*        padding:12px 28px;*/
/*        font-size:16px;*/
/*    }*/
/*}*/

/*@media (min-width:769px) {*/
/*    .hero {*/
/*        height:var(--hero-height,80vh);*/
/*        padding:0 20px;*/
/*    }*/
/*    .hero-title {*/
/*        font-size:2.2rem;*/
/*    }*/
/*    .hero-subtitle {*/
/*        font-size:1.05rem;*/
/*    }*/
/*    .hero-content {*/
/*        max-width:520px;*/
/*        margin:40px 0;*/
/*    }*/
/*}*/

/*@media (min-width:1025px) {*/
/*    .hero {*/
/*        padding:0 20px;*/
/*    }*/
/*}*/

/* Benefits */
.container { max-width:1400px; margin:0 auto; padding: 80px 20px 0; }
.section-title { font-size: 28px; font-weight:400; text-align:center; margin-bottom:40px; }
.benefits {  background:#f4f4f4; max-width: 1920px; margin: auto; }

.benefit__grid { display:grid;  }
.benefit-item {  display: flex; padding-bottom: 20px; flex-direction: column; align-items: center;justify-content: flex-start; text-align: center;}
@media(min-width: 768px) {
    .benefits__grid {   display:grid;  grid-template-columns:repeat(4,1fr); gap:40px; text-align:center; }
    .benefit-item {padding-bottom: 0;}
    .container {padding: 80px 40px 20px}
    .section-title { font-size: 32px; margin-bottom:80px;}

}

.benefit-item svg {
    height: 80px;
}

.benefit-item {  display: flex; flex-direction: column; align-items: center;justify-content: flex-start; text-align: center;}
.benefit-item h3 { font-size:1.1rem; font-weight:600; margin-bottom:8px; }
.benefit-item p { font-size:0.95rem; color:#333; line-height:1.6; max-width: 350px; }


/* How-to  */
.howto {
    padding: 80px 20px;
    background:#f4f4f4;
    max-width: 1920px;
    margin: auto;
}

.howto__inner {
    display: grid;
    max-width: 1320px;
    background: #fff;
    margin: auto;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    align-items: center;
    border-radius:0  0 10px  10px;
}

.howto__image img {
    width: 100%;
    border-radius: 10px 10px 0 0 ;
    display: block;
}

.howto_a {
    display: block;
    margin-bottom: 15px;
}

.howto__text {
    padding: 20px 20px 40px ;
}

.howto__text h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.howto__text h4 {
    font-size: 1.2rem;
}

.howto__text p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.howto__text ul {
    margin-top: 16px;
    padding-left: 20px;
    list-style: disc;
    list-style-position: outside;
    display: block;
    text-align: left;
}

.howto__text li {
    margin-top: 16px;


}

.howto__text a {
    color: #000;
    text-decoration: underline;
    font-weight: 500;
}

@media (min-width: 768px) {
    .howto {
        padding: 80px 40px;
    }

    .howto__text h3 {
        font-size: 28px;
    }
}
@media (min-width: 1025px) {

    .howto__inner {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        text-align: left;
    }
    .howto__image img {
        border-radius: 10px 0 0 10px;
    }

    .howto__inner {
        border-radius: 0 10px  10px 0;
    }

    .howto__text ul {
        text-align: left;
    }
}

/* ABOUT */
.about {
    padding: 80px 20px 0;
    background: #fff;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1320px;
    margin: auto;
    text-align: center;
}

.about__text p.about-label {
    color: #c00;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.about__text h3 {
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 18px;
    color: #111;
}

.about__text p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about__text ul {
    margin: 20px 0 32px;
    padding-left: 20px;
    list-style: disc;
    color: #333;
    text-align: left;
    display: inline-block;
}

.about__text ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.about__image img {
    width: 100%;
    border-radius: 12px;
    display: block;
    object-fit: cover;
}

.btn-red {
    font-size: 16px;
    display: inline-block;
    background: #c00;
    color: #fff;
    text-decoration: none;
    padding: 12px 28px;
    font-weight: 700;
    border-radius: 20px;
    transition: filter 0.2s ease;
}

.btn-red:hover {
    filter: brightness(0.96);
}

@media (min-width: 768px) {
    .about {
        padding: 80px 40px;
    }
}

@media (min-width: 1025px) {

    .about__grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        text-align: left;
    }
}

/* BLOG */
.blog {
    padding: 80px 20px 0;
    background: #fff;
    max-width: 1400px;
    margin: auto;
}

.blog-label {
    color: #c00;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    text-align: center;
    margin-bottom: 8px;
}

.blog-title {
    font-size: 28px;
    font-weight: 400;
    color: #111;
    text-align: center;
    margin-bottom: 40px;
}

.blog__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.blog-card {
    background: #fafafa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease;
}

.blog-card:hover {
    box-shadow:0 10px 24px rgba(0,0,0,0.12);
}
.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.blog-card__body {
    padding: 18px 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.blog-card__date {
    display: inline-block;
    background: #f3f3f3;
    color: #444;
    font-size: 0.85rem;
    padding: 4px 10px;
    border-radius: 6px;
}

.blog-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
    margin: 6px 0;
}

.blog-card p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
    flex-grow: 1;
}

.blog-card__link {
    font-weight: 400;
    color: #000;
    text-decoration: none;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-card__link:hover {
    text-decoration: underline;
}

.blog-card__arrow {
    display: inline-block;
    width: 0.6rem;
    height: 0.6rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg); 
    margin-left: 0.25rem;
}

.text-marg {
    margin-bottom: 30px;
}


@media (min-width: 601px) {
    .blog__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .blog {
        padding: 80px 40px;
    }
}
@media (min-width: 1025px) {

    .blog-title {
        font-size: 32px;
        margin-bottom: 60px;
    }
    .blog__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* CONTACT / FORM BLOCK */
.contact-section{
    padding:80px 20px 0;
    background:#ffffff;
}

.contact-wrap{
    max-width:1320px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr;
    gap:40px;
    align-items:start;
}

.contact-text p {
    font-size: 18px;

}
.contact-text li {
    font-size: 18px;

}

.contact-title{
    margin:0 0 14px;
    font-size:28px;
    line-height:1.2;
    font-weight:400;
    letter-spacing:.2px;
}

.contact-lead{
    margin:0 0 10px;
    color:#374151;
}


.contact-bullets{
    list-style:none;
    padding:0;
    margin:14px 0 0;
}

.contact-bullets li{
    position:relative;
    padding-left:28px;
    margin:10px 0;
    color:#1f2937;
}

.contact-bullets li::before{
    content:"";
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
    width:22px;
    height:22px;
    border-radius:50%;
    background:#d51e2b;
    -webkit-mask:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="white" d="M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z"/></svg>') center/16px 16px no-repeat;
    mask:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="white" d="M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z"/></svg>') center/16px 16px no-repeat;
}

.form{
    max-width:520px;
    margin-left:0;
}

.form__grid{
    display:grid;
    grid-template-columns:1fr;
    gap:14px;
}

.form__row--full{
    grid-column:1 / -1;
}

.input,
.textarea{
    width:100%;
    border:1px solid #e5e7eb;
    background:#f4f4f4;
    padding:14px 16px;
    border-radius:14px;
    font-size:15px;
    color:#0f172a;
    outline:none;
    transition:border-color .2s, box-shadow .2s;
}

.textarea{
    min-height:120px;
    resize:vertical;
}

.input:focus,
.textarea:focus{
    border-color:#d1d5db;
    box-shadow:0 0 0 4px rgba(213,30,43,.12);
}

.form__note{
    margin:6px 0 0;
    font-size:12.5px;
    color:#6b7280;
}

p.contact-label{
    color:#c00;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:8px;
    font-size:0.95rem;
    letter-spacing:0.3px;
}

.form__submit{
    margin-top:12px;
    display:flex;
    justify-content:flex-start;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:50px;
    padding:0 28px;
    border:0;
    font-weight:700;
    border-radius:999px;
    cursor:pointer;
    transition:transform .05s ease, filter .2s ease;
}

.btn--red{
    font-size: 16px;
    background:#c00;
    color:#ffffff;
}

.btn--red:hover{
    filter:brightness(.96);
}

.btn--red:active{
    transform:translateY(1px);
}

@media (min-width:561px){
    .form__grid{
        grid-template-columns:1fr 1fr;
    }
}
@media (min-width:768px) {
    .contact-section{
        padding:80px 40px;
    }
}
@media (min-width:1101px){

    .contact-wrap{
        grid-template-columns:1fr 1fr;
        gap:80px;
    }
    .form{
        margin-left:auto;
    }
    .contact-title{
        font-size:32px;
    }
}

/* Form message styles */
.form-message {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.5;
    animation: slideDown 0.3s ease-out;
    display: flex;
    align-items: center;
}

.form-message--success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form-message--error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading state for submit button */
.btn.loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
    to { transform: rotate(360deg); }
}

/* Smooth transition for messages */
.form-message {
    transition: opacity 0.3s ease-out;
}


/* BRANDS */
.brands { padding:80px 10px 0; }
.brands__container { max-width:1320px; margin:0 auto; }
.brands__title { font-size:28px; font-weight:400; color:#111; letter-spacing:.3px; margin-bottom:30px; text-align:center; }

.brands__scroller {
    --arrow-w:30px;
    display:grid;
    grid-template-columns:var(--arrow-w) 1fr var(--arrow-w);
    align-items:center;
    gap:5px;
}

.brands__track {
    grid-column:2;
    display:flex;
    gap:10px;
    overflow-x:auto;
    scroll-behavior:smooth;
    -ms-overflow-style:none;
    scrollbar-width:none;
    padding:10px 8px;
}

p.brands-label {
    color:#c00;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:8px;
    font-size:0.95rem;
    letter-spacing:.3px;
    text-align:center;
}

.brands__track::-webkit-scrollbar { display:none; }

.brand-logo { flex:0 0 260px; max-width: 210px; }
.brand-logo img { width:200px; height:90px; object-fit:contain; }

.review-card {
    background:#fff;
    border-radius:26px;
    padding:28px;
    box-shadow:0 8px 20px rgba(0,0,0,0.05);
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.review-card p { font-size:1rem; color:#333; margin-bottom:12px; }
.review-card span { font-weight:700; font-size:0.95rem; color:#111; }

.brands__arrow, .reviews__arrow {
    all:unset;
    display:grid;
    place-items:center;
    width:var(--arrow-w);
    height:72px;
    cursor:pointer;
    padding:4px;
}

.brands__arrow svg, .reviews__arrow svg {
    width:24px;
    height:24px;
    stroke:#000;
}


.promos {
    padding: 80px 20px 0;
    background:#fff;
    max-width: 1400px;
    margin: auto;
}

.promos__title {
    font-size:28px;
    font-weight:400;
    text-align:center;
    margin:0 0 40px;
    color:#111;
    letter-spacing:.2px;
}

.promos__grid {
    display:grid;
    grid-template-columns:1fr;
    gap:26px;
}

.promo {

    border-radius: 6px;
    padding: 18px 18px 20px;
    color:#111;
}


.promo__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.promo__name {
    margin: 0;
    font-size: 20px;
    font-weight: 400;
}

.promo__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.promo__stars {
    font-size: 14px;
    letter-spacing: 2px;
    color: #404040;
}

.promo__date {
    font-size: 13px;
    color:#111;
}

.promo__text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color:#111;
}

@media (min-width:641px) {
    .promos__grid {
        grid-template-columns:repeat(2,1fr);
        gap:40px;
    }
    .promos__title {
        font-size:1.9rem;
        margin-bottom:40px;
    }
}

@media (min-width:768px) {
    .brands {
        padding: 80px 40px;
    }
    .promos {
        padding: 80px 40px !important;
    }
}

@media (min-width:1025px) {
    .brands__title { font-size:32px; margin-bottom:40px; }
    .brand-logo { flex:0 0 310px; }
    .promos { padding:80px 20px; }
    .promos__grid { grid-template-columns:repeat(3,1fr); gap:60px; }
}

/* PRICING */
.pricing {
    padding: 80px 20px 0;
    background:#fff;
    max-width: 1400px;
    margin: auto;
}

.pricing__label {
    color:#c00;
    font-weight:700;
    text-transform:uppercase;
    font-size:0.95rem;
    letter-spacing:0.3px;
    text-align:center;
    margin-bottom:6px;
}

.pricing__title {
    font-size:28px;
    font-weight:400;
    color:#111;
    text-align:center;
    margin-bottom:40px;
    line-height:1.3;
}

.pricing__grid {
    display:grid;
    grid-template-columns:1fr;
    gap:30px;
}

.pricing-card {
    background:#fafafa;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 4px 10px rgba(0,0,0,0.05);
    transition:transform 0.25s ease;
    display:flex;
    flex-direction:column;
}

.pricing-card:hover {
    transform:translateY(-4px);
}

.pricing-card img {
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
}

.pricing-card__body {
    padding:20px;
    display:flex;
    flex-direction:column;
    flex-grow:1;
    gap:8px;
}

.pricing-card__body h3 {
    font-size:1.3rem;
    font-weight:600;
    color:#111;
    margin:0 0 6px;
}

.pricing-card__body p {
    font-size:0.95rem;
    color:#333;
    line-height:1.6;
    flex-grow:1;
}

.pricing-card__link {
    font-weight:400;
    color:#000;
    text-decoration:none;
    margin-top:10px;
    display:inline-flex;
    align-items:center;
    gap:6px;
    transition:color 0.2s;
}

.pricing-card__link:hover {
    text-decoration:underline;
    color:#c00;
}

@media (min-width:641px) {
    .pricing__grid {
        grid-template-columns:repeat(2,1fr);
        gap:40px;
    }
    .pricing__title {
        font-size:1.9rem;
        margin-bottom:40px;
    }
}

@media (min-width:768px) {
    .pricing {
        padding: 80px 40px;
    }
}

@media (min-width:1025px) {
    .pricing__grid {
        grid-template-columns:repeat(3,1fr);
    }
    .pricing__title {
        font-size:32px;
        margin-bottom:60px;
    }
}

/* CONTACT US */
.container-contact {
    padding: 80px 20px;
}
.contactus {
    max-width: 1920px;
    margin: auto;
    background:#f4f4f4;
    text-align:center;
}

.contactus__label {
    color:#c00;
    font-weight:700;
    text-transform:uppercase;
    font-size:0.95rem;
    margin-bottom:8px;
    letter-spacing:0.3px;
}

.contactus__title {
    font-size:1.7rem;
    font-weight:400;
    color:#111;
    line-height:1.4;
    margin:0 auto 20px;
    max-width:900px;
}

.contactus__desc {
    font-size:1rem;
    color:#333;
    line-height:1.7;
    max-width:900px;
    margin:0 auto 14px;
}

.contactus__note {
    font-size:0.95rem;
    color:#555;
    margin-bottom:40px;
}

.contactus__grid {
    display:grid;
    grid-template-columns:1fr;
    gap:24px;
    justify-items:center;
    align-items:center;
    max-width: 1400px;
    margin: auto;
}

.contactus-card {
    background:#fff;
    border-radius:10px;
    padding:28px 18px;
    width:100%;
    height:100%;
    box-shadow:0 4px 10px rgba(0,0,0,0.05);
    transition:transform .25s ease, box-shadow .25s ease;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
    text-align:center;
}

.contactus-card:hover {
    transform:translateY(-4px);
    box-shadow:0 8px 16px rgba(0,0,0,0.08);
}

.contactus-card__icon {
    width:40px;
    height:40px;
    margin-bottom:16px;
}

.contactus-card h3 {
    font-size: 18px;
    font-weight:700;
    color:#111;
    margin-bottom:8px;
}

.contactus-card p {
    font-size: 16px;
    color:#444;
    margin-bottom: 8px;
}

.contactus-card__link {
    margin-top:auto;
    display:inline-flex;
    align-items:center;
    gap:10px;
    width:auto;
    white-space:normal;
    font-size:0.9rem;
    text-transform:uppercase;
    font-weight:600;
    color:#000;
    text-decoration:none;
    letter-spacing:0.4px;
    line-height:1.1;
    transition:color .2s ease;
}

.contactus-card__link > span {
    display:inline;
}

.contactus-card__link-icon {
    flex:0 0 auto;
    display:block;
    transition:transform .2s ease;
}

.contactus-card__link:hover {
    text-decoration:underline;
}

.contactus-card__link:hover .contactus-card__link-icon {
    transform:translateX(2px);
}

.contactus-card svg {
    height: 60px;
}

@media (min-width:701px) {
    .contactus__grid {
        grid-template-columns:repeat(2,1fr);
        gap:24px;
    }
}
@media (min-width:768px) {
    .container-contact {
        padding: 80px 40px;
    }
}

@media (min-width:1171px) {
    .contactus__title {
        font-size:2rem;
        margin-bottom:24px;
    }

    .contactus__note {
        margin-bottom:50px;
    }

    .contactus__grid {
        grid-template-columns:repeat(3,1fr);
        gap:30px;
    }

    .contactus-card {
        max-width:340px;
        min-width:340px;
        padding:32px 20px;
    }

    .contactus-card__link {
        white-space:nowrap;
    }
}

/* MAP LOCATOR */
.map-locator {
    position:relative;
    width:100%;
    height:420px;
    overflow:hidden;
    background:#e9e9e9;
    max-width:1920px;
    margin:auto;
}

.map-locator__bg {
    position:absolute;
    inset:0;
    z-index:1;
}

.map-locator__bg iframe {
    width:100%;
    height:100%;
    border:0;
    pointer-events:none;
    filter:brightness(0.65);
    transition:filter .35s ease;
}

.map-locator__activator {
    position:absolute;
    inset:0;
    z-index:2;
    cursor:pointer;
    border:0;
    background:transparent;
}

.map-locator__overlay {
    position:relative;
    z-index:3;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    pointer-events:none;
}

.map-locator__text {
    font-size:18px;
    color:#fff;
    margin-bottom:8px;
}

.map-locator__title {
    font-size:1.7rem;
    font-weight:400;
    color:#fff;
    margin-bottom:24px;
}

.map-locator__btn {
    pointer-events:auto;
    display:inline-block;
    background:#c00;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    border-radius:999px;
    padding:14px 30px;
    transition:filter .2s;
}

.map-locator__btn:hover {
    filter:brightness(.9);
}

.map-locator__hint {
    position:absolute;
    left:50%;
    bottom:20px;
    margin-top: 10px;
    transform:translateX(-50%);
    background:rgba(0,0,0,0.6);
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:.9rem;
    pointer-events:none;
    opacity:.95;
    transition:opacity .35s ease, visibility .35s ease;
}

.map-locator.is-active .map-locator__bg iframe {
    pointer-events:auto;
    filter:brightness(1);
}

.map-locator.is-active .map-locator__text {
    opacity:0;
    visibility:hidden;
}
.map-locator.is-active .map-locator__title {
    opacity:0;
    visibility:hidden;
}

.map-locator.is-active .map-locator__btn {
    opacity:0;
    visibility:hidden;
}

.map-locator.is-active .map-locator__hint {
    opacity:0;
    visibility:hidden;
}

.map-locator.is-active .map-locator__activator {
    display:none;
}

@media (min-width:701px) {
    .map-locator {
        height:600px;
    }
    .map-locator__text {
        font-size:22px;
    }
    .map-locator__title {
        font-size:2rem;
    }
    .map-locator__btn {
        padding:14px 36px;
    }
}
