/* ==========================================================================
   ODTah Tatry – Main Styles
   Cleaned: duplicates removed, grouped by sections, commented.
   ========================================================================== */

/* ==========================================================================
   1) CSS Variables
   ========================================================================== */
:root{
    --orange:#ff5a00;
    --dark:#141414;
    --dark2:#1c1c1c;
    --gray:#3a3434;
    --text:#ffffff;
    --muted:rgba(255,255,255,.75);
    --line:rgba(255,255,255,.18);
}

/* ==========================================================================
   2) Base / Reset
   ========================================================================== */
*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
    margin:0;
    font-family:"Exo 2", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color:var(--text);
    background:#0f0f0f;
}

a{color:inherit;text-decoration:none}

.container{
    width:min(1200px, calc(100% - 40px));
    margin:0 auto;
}

/* ==========================================================================
   3) Buttons
   ========================================================================== */
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:18px 22px;
    font-weight:900;
    letter-spacing:.4px;
    border:0;
    cursor:pointer;
    text-transform:uppercase;
}

.btn--small{padding:14px 18px}

.btn--orange{
    background:var(--orange);
    color:#fff;
}

.btn--ghost{
    background:transparent;
    border:2px solid var(--line);
    color:#fff;
}

/* ==========================================================================
   4) Header – Topbar + Mainnav
   ========================================================================== */
.topbar{
    background:#000;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.topbar__inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    padding:18px 0;
}

.topbar__brand img{
    height:65px;
    width:auto;
    display:block;
}

.topbar__info{
    display:flex;
    gap:28px;
    align-items:center;
}

.info__title{
    font-size:12px;
    font-weight:900;
    letter-spacing:.6px;
    opacity:.85;
}

.info__value{
    font-size:14px;
    font-weight:700;
    opacity:.95;
}

/* Main navigation */
.mainnav{
    background:var(--dark2);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.mainnav__inner{
    display:flex;
    gap:22px;
    align-items:center;
    padding:14px 0;
}

.mainnav a{
    font-weight:800;
    text-transform:capitalize;
    color:var(--muted);
}

.mainnav a:hover,
.mainnav a.is-active{
    color:var(--orange);
}

/* ==========================================================================
   5) Sticky Header (scroll state)
   - Goal: ALWAYS 2 rows (topbar + nav), never merged into one row
   ========================================================================== */
.site-header{
    position:relative;
    z-index:1000;
}

.site-header.is-sticky{
    position:fixed;
    top:0;
    left:0;
    right:0;
}

body.has-sticky-header{
    padding-top:var(--stickyHeaderH, 0px);
}

/* Sticky topbar: compact, but still a separate row */
.site-header.is-sticky .topbar{
    background:#000;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.site-header.is-sticky .topbar__inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    padding:12px 0;         /* compact */
}

.site-header.is-sticky .topbar__brand img{
    height:42px;            /* smaller logo in sticky */
    width:auto;
}

/* info môžeš schovať, ale neovplyvní to 2-row layout */
.site-header.is-sticky .topbar__info{
    display:none;
}

/* Call button stays on the right */
.site-header.is-sticky .topbar__call{
    margin-left:auto;
    align-self:center;
    padding:10px 16px;
    font-size:14px;
    line-height:1.2;
}

/* Sticky nav: MUST stay below topbar (no overlay, no absolute) */
.site-header.is-sticky .mainnav{
    position:static;
    background:var(--dark2);
    border-bottom:1px solid rgba(255,255,255,.08);
    pointer-events:auto;
}

.site-header.is-sticky .mainnav__inner{
    height:auto;
    display:flex;
    align-items:center;
    justify-content:flex-start; /* alebo center, ako chceš */
    gap:22px;
    padding:12px 0;
    flex-wrap:nowrap;
}

.site-header.is-sticky .mainnav a{
    color:rgba(255,255,255,.85);
    font-size:15px;
    font-weight:800;
    letter-spacing:.4px;
    white-space:nowrap;
}

.site-header.is-sticky .mainnav a:hover,
.site-header.is-sticky .mainnav a.is-active{
    color:var(--orange);
}


/* ==========================================================================
   6) Hero (OwlCarousel)
   ========================================================================== */
.hero{
    position:relative;
    margin-bottom:70px;
}

/* If <div class="hero__overlay"> exists in HTML, keep it hidden */
.hero__overlay{display:none}

.hero__carousel{position:relative}

.hero__slide{
    background-image: var(--bg);
    position:relative;
    min-height:78vh;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

/* Background overlay */
.hero__slide::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.5);
    z-index:1;
    pointer-events:none;
}

.hero__inner{
    position:relative;
    z-index:2;
    min-height:78vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:70px 0 120px;
}

.hero__kicker{
    font-size:16px;
    font-weight:800;
    letter-spacing:.4px;
    text-transform:uppercase;
    margin-bottom:14px;
}

.hero__title{
    font-size:64px;
    line-height:1.02;
    font-weight:900;
    letter-spacing:.6px;
    margin:0;
    text-transform:uppercase;
}

.hero__title span{color:var(--orange)}

.hero__line{
    width:54px;
    height:4px;
    background:#fff;
    margin-top:18px;
}

/* Fixed call box below hero */
.hero__call{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-44px;
    z-index:3;
    width:min(780px, calc(100% - 40px));
    background:var(--orange);
    padding:26px 28px;
    box-shadow:0 18px 40px rgba(0,0,0,.45);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero__call-right {
    text-align: right;
}

.hero__price-value a {
    font-size: 1.2rem;
    font-weight: 700;
}

.hero__call-top{
    font-weight:900;
    letter-spacing:.5px;
    text-transform:uppercase;
    opacity:.95;
    margin-bottom:8px;
}

.hero__call-number{
    font-weight:900;
    font-size:46px;
    letter-spacing:.6px;
}

/* ==========================================================================
   7) Services Grid
   ========================================================================== */
.services{background:#1b1b1b}

.services-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    grid-template-rows:repeat(2, 1fr);
    height:600px;
}

.service-item{
    position:relative;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:flex-end;
    padding:30px;
    cursor:pointer;
}

.service-item--accident { background-image: url('/img/service-1.jpg'); }
.service-item--wheel    { background-image: url('/img/service-2.jpg'); }
.service-item--start    { background-image: url('/img/service-3.jpg'); }
.service-item--fuel     { background-image: url('/img/service-4.png'); }

.service-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
    transition:.25s;
}

.service-item span{
    position:relative;
    z-index:2;
    color:#fff;
    font-size:28px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.service-item:hover .service-overlay{
    background:rgba(255,90,0,.65);
}

/* ==========================================================================
   8) Generic Sections (About / Testimonials / Pricing / Contact)
   ========================================================================== */
.section{padding:90px 0}

.section--dark{background:var(--dark2)}

.section__head h2{
    margin:0;
    font-size:44px;
    font-weight:900;
    letter-spacing:.8px;
    text-transform:uppercase;
}

.section__head--center{text-align:center}

.section__line{
    width:44px;
    height:4px;
    background:#fff;
    margin:14px 0 22px;
}

.section__head--center .section__line{
    margin:14px auto 22px;
}

.section__subtitle{
    font-weight:900;
    letter-spacing:.4px;
    text-transform:uppercase;
    margin:0 0 12px;
}

.section__text{
    color:var(--muted);
    line-height:1.8;
    font-weight:600;
    max-width:80ch;
    margin:0 0 24px;
}

/* ==========================================================================
   9) About Tiles
   ========================================================================== */
.about-tiles{
    margin-top:60px;
    display:grid;
    grid-template-columns:1fr 1fr;
    min-height:320px;
}

.about-tile{
    position:relative;
    background-size:cover;
    background-position:center;
    min-height:320px;
}

.about-tile__overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.about-tile--orange .about-tile__overlay{
    background:rgba(255,90,0,.60);
}

.about-tile__title{
    position:absolute;
    left:22px;
    bottom:22px;
    font-weight:900;
    font-size:28px;
    letter-spacing:.7px;
    text-transform:uppercase;
}

/* ==========================================================================
   10) Testimonials
   ========================================================================== */
.testimonials{
    display:grid;
    grid-template-columns:1fr;
    gap:0;
    max-width:980px;
    margin:0 auto;
    border-top:1px solid rgba(255,255,255,.10);
}

.testimonial{
    display:grid;
    grid-template-columns:140px 1fr;
    gap:26px;
    padding:34px 0;
    border-bottom:1px solid rgba(255,255,255,.10);
    align-items:center;
}

.testimonial__avatar{
    width:88px;
    height:88px;
    border-radius:999px;
    background:rgba(255,255,255,.12);
    margin-left:12px;
}

.testimonial__name{
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.4px;
    margin-bottom:10px;
}

.testimonial__text{
    color:var(--muted);
    font-weight:600;
    line-height:1.7;
    max-width:75ch;
}

/* ==========================================================================
   11) Promo Strip
   ========================================================================== */
.promo{
    position:relative;
    min-height:220px;
    background-size:cover;
    background-position:center;
}

.promo__overlay{
    position:absolute;
    inset:0;
    background:rgba(255,90,0,.78);
}

.promo__inner{
    position:relative;
    min-height:220px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.promo__kicker{
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.6px;
    opacity:.95;
}

.promo__title{
    font-weight:900;
    font-size:54px;
    text-transform:uppercase;
    letter-spacing:.8px;
    margin-top:10px;
}

/* ==========================================================================
   12) Pricing
   ========================================================================== */
.pricing{
    max-width:720px;
    border-top:1px solid rgba(255,255,255,.10);
}

.pricing__row{
    display:flex;
    justify-content:space-between;
    padding:18px 0;
    border-bottom:1px solid rgba(255,255,255,.10);
    font-weight:800;
}

.pricing__name{color:var(--muted)}
.pricing__val{color:#fff}

/* ==========================================================================
   13) Contact
   ========================================================================== */
.contact{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:26px;
    align-items:start;
}

.contact__box{
    padding-top:18px;
    color:var(--muted);
    font-weight:700;
    line-height:1.8;
}

.contact__form{
    background:rgba(255,255,255,.06);
    padding:28px;
    border-radius:6px;
}

.contact__form input{
    width:100%;
    padding:16px 12px;
    margin-bottom:16px;
    border:0;
    border-bottom:2px solid rgba(0,0,0,.18);
    background:#e9e9e9;
    font-weight:700;
    outline:none;
}

.contact__form input:focus{
    border-bottom-color:var(--orange);
}

/* Contact section background image */
.contact-section{
    position:relative;
    background-image:url('/img/contact-bg.jpg');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.contact-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.50);
    pointer-events:none;
}

.contact-section > .container{
    position:relative;
    z-index:1;
}

/* ==========================================================================
   14) Footer
   ========================================================================== */
.footer{
    background:#000;
    padding:22px 0;
    color:rgba(255,255,255,.78);
    font-weight:600;
}

.footer__inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.to-top{
    width:34px;
    height:34px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--orange);
    color:#111;
    font-weight:900;
}

/* ==========================================================================
   15) Gallery – Cards list / Photos / Filter / Lightbox
   ========================================================================== */
/* Gallery cards list */
.gal-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:18px;
}

.gal-card{
    display:block;
    border:1px solid rgba(255,255,255,.10);
    background:rgba(255,255,255,.03);
    border-radius:8px;
    overflow:hidden;
}

.gal-card__media{
    position:relative;
    height:220px;
    background:#111;
    background-size:cover;
    background-position:center;
}

.gal-card__overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.50);
    transition:.25s;
}

.gal-card__title{
    padding:14px 16px;
    font-weight:900;
    letter-spacing:.6px;
    text-transform:uppercase;
    color:#fff;
}

.gal-card:hover .gal-card__overlay{
    background:rgba(255,90,0,.55);
}

/* Gallery photos grid */
.gal-photos{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:12px;
}

.gal-photo{
    display:block;
    border-radius:8px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.10);
    background:#111;
}

.gal-photo img{
    width:100%;
    height:190px;
    object-fit:cover;
    display:block;
    transition:transform .25s ease;
}

.gal-photo:hover img{
    transform:scale(1.03);
}

/* Gallery filter */
.gal-filter{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin:10px 0 22px;
}

.gal-filter__item{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 14px;
    border:1px solid rgba(255,255,255,.14);
    border-radius:999px;
    font-weight:900;
    letter-spacing:.5px;
    text-transform:uppercase;
    color:rgba(255,255,255,.80);
    background:rgba(255,255,255,.03);
}

.gal-filter__item:hover{
    border-color:rgba(255,90,0,.55);
    color:#fff;
}

.gal-filter__item.is-active{
    background:var(--orange);
    color:#111;
    border-color:var(--orange);
}

/* Lightbox */
.lb{
    position:fixed;
    inset:0;
    z-index:9999;
    display:none;
}

.lb.is-open{display:block}

.lb__backdrop{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.85);
}

.lb__content{
    position:relative;
    z-index:2;
    width:min(1100px, calc(100% - 40px));
    margin:5vh auto 0;
    max-height:90vh;
    display:flex;
    align-items:center;
    justify-content:center;
}

.lb__img{
    max-width:100%;
    max-height:85vh;
    border-radius:10px;
    background:#000;
}

.lb__close{
    position:absolute;
    top:-14px;
    right:-14px;
    width:36px;
    height:36px;
    border-radius:999px;
    border:0;
    background:var(--orange);
    color:#111;
    font-size:22px;
    font-weight:900;
    cursor:pointer;
}

/* ==========================================================================
   16) Homepage – Gallery (3 tiles)
   ========================================================================== */
.home-gallery{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:18px;
    margin-top:18px;
}

.home-gallery__item{
    display:block;
    border-radius:8px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.10);
    background:#111;
}

.home-gallery__bg{
    background-image: var(--bg);
    position:relative;
    height:240px;
    background-size:cover;
    background-position:center;
}

.home-gallery__overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.22);
    transition:.25s;
}

.home-gallery__item:hover .home-gallery__overlay{
    background:rgba(255,90,0,.16);
}

.home-gallery__cta{
    margin-top:22px;
}

.home-gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.home-gallery__item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform .4s ease;
}

.home-gallery__item:hover img {
    transform: scale(1.05);
}

.home-gallery__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    transition: background .3s ease;
}

.home-gallery__item:hover::after {
    background: rgba(0,0,0,0.15);
}
/* ==========================================================================
   17) Responsive
   ========================================================================== */
@media (max-width: 980px){
    /* Header */
    .topbar__info{display:none}
    .mainnav__inner{flex-wrap:wrap}

    /* Hero */
    .hero__title{font-size:44px}
    .hero__call-number{font-size:34px}

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

    /* Layout blocks */
    .contact{grid-template-columns:1fr}
    .about-tiles{grid-template-columns:1fr}

    /* Gallery */
    .gal-grid{grid-template-columns:repeat(2, 1fr)}
    .gal-photos{grid-template-columns:repeat(3, 1fr)}

    /* Homepage gallery */
    .home-gallery{grid-template-columns:repeat(2, 1fr)}

    /* Sticky header on mobile: allow wrap */
    .site-header.is-sticky .mainnav__inner{
        justify-content:center;
        flex-wrap:wrap;
        row-gap:10px;
    }
    .site-header.is-sticky .topbar__call{
        margin-left:0;
    }
}

@media (max-width: 640px){
    /* Services */
    .services-grid{grid-template-columns:1fr}

    /* Hero */
    .hero__call{bottom:-56px}

    /* Promo */
    .promo { background-image: var(--bg); }
    
    .promo__title{font-size:38px}

    /* Gallery */
    .gal-grid{grid-template-columns:1fr}
    .gal-photos{grid-template-columns:repeat(2, 1fr)}
    .gal-card__media{height:200px}
    .gal-photo img{height:160px}

    /* Homepage gallery */
    .home-gallery{grid-template-columns:1fr}
    .home-gallery__bg{height:210px}
}

/* ==========================================================================
   ODTah Tatry – Main Styles (NAV CLEAN)
   - duplicates removed
   - desktop hover dropdown
   - mobile hamburger + submenu toggle
   ========================================================================== */

/* ==========================================================================
   Lang selector
   ========================================================================== */
.lang-dd { position: relative; display: inline-block; margin-left: auto; }

.lang-dd__btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:8px;
  border:1px solid rgba(0,0,0,.15);
  background:#fff;
  cursor:pointer;
}

.lang-dd__menu{
  position:absolute;
  right:0;
  top:calc(100% + 8px);
  min-width:120px;
  border:1px solid rgba(0,0,0,.15);
  border-radius:10px;
  background:#fff;
  box-shadow:0 10px 30px rgba(0,0,0,.12);
  padding:6px;
  display:none;
  z-index:999;
}
.lang-dd.is-open .lang-dd__menu{ display:block; }

.lang-dd__item{
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px 10px;
  border-radius:8px;
  text-decoration:none;
  color:inherit;
}
.lang-dd__item:hover{ background:rgba(0,0,0,.06); }
.lang-dd__item.is-active{ background:rgba(0,0,0,.08); font-weight:600; }

.lang-dd__flag{ width:1.2em; text-align:center; }
.lang-dd__chev{ opacity:.7; }

/* ==========================================================================
   Main navigation
   Expected HTML structure:
   .mainnav
     .container.mainnav__inner
       button.mainnav__mobileToggle (mobile only)
       div.mainnav__items
         div.mainnav__item(.has-dropdown)
           div.mainnav__row
             a.mainnav__link
             button.mainnav__subToggle (only if dropdown)
           div.mainnav__dropdown (children)
       .lang-dd
   ========================================================================== */

.mainnav{
  background:var(--dark2);
  border-bottom:1px solid rgba(255,255,255,.08);
  position:relative;
}

/* layout: left group (burger+items) + right (lang) */
.mainnav__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.mainnav__items{
  display:flex;
  align-items:center;
  gap:26px;
}

.mainnav__item{ position:relative; }

.mainnav__row{
  display:flex;
  align-items:center;
  gap:8px;
}

.mainnav__link{
  font-weight:800;
  text-transform:capitalize;
  color:var(--muted);
  padding:14px 0;
  display:inline-flex;
  align-items:center;
  gap:8px;
  white-space:nowrap;
}

.mainnav__link:hover,
.mainnav__link.is-active{
  color:var(--orange);
}

/* arrow icon (used in toggle button on mobile, optional on desktop) */
.mainnav__arrow{
  display:inline-block;
  width:6px;
  height:6px;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform:rotate(45deg);
  transition:transform .2s ease;
}

/* Desktop arrow visibility */
.mainnav__arrow{
  width:7px;
  height:7px;
  border-right:2px solid #fff;
  border-bottom:2px solid #fff;
  opacity:.9;
  margin-left:6px;
}
.mainnav__link:hover .mainnav__arrow{
  border-color: var(--orange);
}

/* desktop dropdown */
.mainnav__dropdown{
  position:absolute;
  top:100%;
  left:0;
  min-width:220px;
  background:#111;
  border-radius:6px;
  box-shadow:0 10px 25px rgba(0,0,0,.4);
  padding:10px 0;
  display:none;
  flex-direction:column;
  z-index:50;
}

.mainnav__dropdown-link{
  color:#fff;
  padding:10px 18px;
  display:block;
}
.mainnav__dropdown-link:hover{ background:var(--white); color:#111; }

.mainnav__item.has-dropdown:hover .mainnav__dropdown{ display:flex; }

/* optional: rotate arrow on hover (if you show arrow on desktop too) */
.mainnav__item.has-dropdown:hover .mainnav__arrow{ transform:rotate(-135deg); }

/* ==========================================================================
   Mobile hamburger + submenu toggle
   ========================================================================== */
.mainnav__mobileToggle{
  display:none;
  background:transparent;
  border:0;
  color:#fff;
  cursor:pointer;
  padding:10px 0;
  align-items:center;
  gap:10px;
}

.mainnav__burger span{
  display:block;
  width:24px;
  height:2px;
  background:#fff;
  margin:5px 0;
}

.mainnav__mobileLabel{
  font-weight:700;
  letter-spacing:.06em;
}

/* submenu toggle button (only used on mobile) */
.mainnav__subToggle{
  display:none;
  background:transparent;
  border:0;
  color:#fff;
  cursor:pointer;
  padding:14px 18px;
  align-items:center;
  justify-content:center;
}

/* ==========================================================================
   MOBILE layout
   ========================================================================== */
@media (max-width: 992px){
  .mainnav__mobileToggle{ display:inline-flex; }

  /* menu panel hidden until opened */
  .mainnav__items{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:#111;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:10px 0;
    z-index:100;
  }
  .mainnav__items.is-open{ display:flex; }

  .mainnav__item{ width:100%; }

  /* row becomes: link left + chevron button right */
  .mainnav__row{
    width:100%;
    justify-content:space-between;
    gap:0;
  }

  .mainnav__link{
    width:100%;
    padding:14px 18px;
    display:block;
  }

  .mainnav__subToggle{ display:inline-flex; }

  /* mobile dropdown inline (not absolute) */
  .mainnav__dropdown{
    position:static;
    display:none;
    border-radius:0;
    box-shadow:none;
    padding:0;
    background:#0d0d0d;
  }
  .mainnav__item.is-open .mainnav__dropdown{
    display:flex;
    flex-direction:column;
  }

  .mainnav__dropdown-link{ padding:12px 30px; }

  /* rotate arrow when submenu open */
  .mainnav__item.is-open .mainnav__arrow{ transform:rotate(-135deg); }

  /* disable hover dropdown on mobile */
  .mainnav__item.has-dropdown:hover:not(.is-open) .mainnav__dropdown{ display:none; }
}
@media (min-width: 993px){
  .mainnav__subToggle{ display:none; }
}

.contact--grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.contact__map {
    border-radius: 12px;
    overflow: hidden;
    min-height: 350px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.contact__map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* button */
.btn-map {
    display: inline-block;
    padding: 10px 18px;
    background: #ff6a00;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
}

.btn-map:hover {
    background: #e55d00;
}

/* responsive */
@media (max-width: 768px) {
    .contact--grid {
        grid-template-columns: 1fr;
    }

    .contact__map {
        height: 300px;
    }
}