/* =========================================================
   VILLA NATALI
   FINAL CSS ONLY FOR: apartamenty-podaca-chorwacja.html
   MOBILE PERFECT HERO VERSION
========================================================= */

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

:root{
    --primary:#3498db;
    --primary-dark:#217dbb;
    --secondary:#1e293b;
    --accent:#e67e22;
    --accent-dark:#d35400;
    --whatsapp:#25D366;
    --bg:#f5f7fb;
    --card:#ffffff;
    --text:#334155;
    --muted:#64748b;
    --border:#e2e8f0;
    --shadow:0 12px 30px rgba(15,23,42,0.08);
    --shadow-hover:0 18px 42px rgba(15,23,42,0.13);
    --container:1240px;
    --header-h:84px;
}

html{
    scroll-behavior:smooth;
    overflow-x:hidden;
}

body{
    font-family:'Poppins',sans-serif;
    color:var(--text);
    background:var(--bg);
    line-height:1.7;
    overflow-x:hidden;
    width:100%;
}

img{
    max-width:100%;
    display:block;
    height:auto;
}

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

/* HEADER */
header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:rgba(255,255,255,0.97);
    box-shadow:0 2px 18px rgba(0,0,0,0.06);
    z-index:1000;
}

.nav-container{
    width:100%;
    max-width:var(--container);
    margin:0 auto;
    min-height:var(--header-h);
    padding:14px 22px;
    display:grid;
    grid-template-columns:auto 1fr;
    align-items:center;
    gap:22px;
}

.logo{
    display:flex;
    align-items:center;
    min-width:0;
    z-index:1002;
}

.logo img{
    height:58px;
    width:auto;
    object-fit:contain;
}

.nav-group{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:14px;
    min-width:0;
    margin-left:auto;
}

.desktop-menu{
    display:flex;
    align-items:center;
    gap:24px;
}

.desktop-menu a{
    color:#334155;
    font-weight:600;
    font-size:0.98rem;
    white-space:nowrap;
    transition:.25s ease;
}

.desktop-menu a:hover,
.desktop-menu a.active{
    color:var(--accent-dark);
}

.mobile-cta{
    display:none;
}

.language-dropdown{
    position:relative;
    flex:0 0 auto;
}

.lang-btn{
    border:none;
    background:var(--primary);
    color:#fff;
    border-radius:999px;
    padding:10px 16px;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    gap:8px;
    cursor:pointer;
    white-space:nowrap;
}

.lang-options{
    display:none;
    position:absolute;
    right:0;
    top:calc(100% + 8px);
    min-width:110px;
    background:#fff;
    border-radius:14px;
    box-shadow:0 12px 32px rgba(15,23,42,0.16);
    padding:8px 0;
    z-index:1100;
}

.lang-options a{
    display:block;
    padding:10px 14px;
    color:#334155;
    font-weight:600;
}

.lang-options a:hover{
    background:#f8fafc;
    color:var(--accent-dark);
}

.language-dropdown.active .lang-options{
    display:block;
}

.hamburger{
    display:none;
    width:42px;
    height:42px;
    border:none;
    background:transparent;
    color:#1e293b;
    cursor:pointer;
    align-items:center;
    justify-content:center;
    margin-left:0;
}

.hamburger i{
    font-size:24px;
}

/* HERO */
.swiper{
    width:100%;
    height:72vh;
    min-height:520px;
    margin-top:var(--header-h);
    position:relative;
    overflow:hidden;
}

.swiper-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(15,23,42,.18) 0%, rgba(15,23,42,.68) 100%);
    z-index:2;
    pointer-events:none;
}

.hero-content{
    position:absolute;
    inset:0;
    z-index:3;
    max-width:860px;
    margin:auto;
    height:max-content;
    text-align:center;
    color:#fff;
    padding:0 24px;
}

.hero-content h1{
    font-size:clamp(2.2rem, 4vw, 3.4rem);
    line-height:1.15;
    margin-bottom:16px;
    color:#fff;
    text-shadow:0 6px 22px rgba(0,0,0,.32);
}

.hero-content p{
    max-width:760px;
    margin:0 auto 22px;
    font-size:1.08rem;
    color:#f8fafc;
    text-shadow:0 4px 18px rgba(0,0,0,.32);
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 24px;
    border-radius:999px;
    font-weight:700;
    transition:.25s ease;
}

.btn-primary{
    background:linear-gradient(135deg,var(--accent),var(--accent-dark));
    color:#fff;
    box-shadow:0 12px 28px rgba(211,84,0,.24);
}

.btn-primary:hover,
.booking-btn:hover{
    transform:translateY(-2px);
}

.btn-secondary{
    background:rgba(255,255,255,.94);
    color:var(--secondary);
    border:1px solid rgba(255,255,255,.7);
}

.btn-secondary:hover,
.details-btn:hover{
    transform:translateY(-2px);
}

/* SECTIONS */
.seo-intro,
.features,
.apartments,
.content-section,
.mapa,
.borea-banner{
    max-width:var(--container);
    margin:46px auto;
    padding:0 20px;
}

.seo-box,
.content-box{
    background:#fff;
    border-radius:28px;
    box-shadow:var(--shadow);
    border:1px solid #e9eef5;
    padding:38px;
    text-align:center;
}

.section-title{
    font-size:clamp(1.8rem, 3vw, 2.35rem);
    color:var(--secondary);
    text-align:center;
    margin-bottom:12px;
}

.section-subtitle{
    max-width:760px;
    margin:0 auto 28px;
    text-align:center;
    color:var(--muted);
}

.seo-box h2,
.content-box h2{
    font-size:clamp(1.75rem, 3vw, 2.25rem);
    line-height:1.25;
    margin-bottom:16px;
    color:var(--secondary);
}

.seo-box p,
.content-box p,
.content-box li{
    color:#475569;
    font-size:1rem;
}

.seo-links{
    display:flex;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
    margin-top:22px;
}

.seo-links a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:44px;
    padding:0 18px;
    border-radius:999px;
    background:#f8fafc;
    border:1px solid var(--border);
    color:#334155;
    font-weight:600;
    transition:.25s ease;
}

.seo-links a:hover{
    color:var(--accent-dark);
    border-color:#f3c58f;
    background:#fff7ed;
}

/* FEATURES */
.features-grid{
    display:grid;
    grid-template-columns:repeat(4, minmax(0,1fr));
    gap:22px;
}

.feature-card{
    background:#fff;
    border-radius:24px;
    padding:26px 22px;
    box-shadow:var(--shadow);
    border:1px solid #e9eef5;
    text-align:center;
}

.feature-card i{
    font-size:2rem;
    color:var(--primary);
    margin-bottom:12px;
}

.feature-card h3{
    color:var(--secondary);
    margin-bottom:10px;
    font-size:1.15rem;
}

.feature-card p{
    color:var(--muted);
    margin:0;
}

/* APARTMENT CARDS */
.apartments-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:26px;
}

.apartment-card{
    background:#fff;
    border-radius:26px;
    overflow:hidden;
    box-shadow:var(--shadow);
    border:1px solid #e9eef5;
    display:flex;
    flex-direction:column;
    transition:.28s ease;
}

.apartment-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow-hover);
}

.apartment-card img{
    width:100%;
    height:245px;
    object-fit:cover;
}

.apartment-card h3{
    color:var(--secondary);
    font-size:1.45rem;
    line-height:1.25;
    margin:20px 20px 10px;
    text-align:center;
}

.apartment-card p{
    color:var(--muted);
    margin:0 20px 18px;
    text-align:center;
    min-height:54px;
}

.card-buttons{
    display:grid;
    gap:10px;
    padding:0 20px 22px;
    margin-top:auto;
}

.details-btn,
.booking-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:100%;
    min-height:48px;
    padding:0 18px;
    border-radius:14px;
    font-weight:700;
    transition:.25s ease;
}

.details-btn{
    background:#eef6fc;
    color:#1f5f9b;
    border:1px solid #cfe4f8;
}

.booking-btn{
    background:linear-gradient(135deg,var(--accent),var(--accent-dark));
    color:#fff;
    box-shadow:0 10px 22px rgba(211,84,0,.20);
}

/* TEXT */
.content-box{
    text-align:left;
}

.content-box h3{
    color:var(--secondary);
    margin:20px 0 10px;
    font-size:1.15rem;
}

.content-box ul{
    margin:0 0 14px 18px;
}

.content-box li{
    margin-bottom:8px;
}

.content-box a{
    color:var(--accent-dark);
    font-weight:600;
}

/* BANNERS / MAP / FOOTER */
.borea-banner{
    background:#fff;
    border-radius:24px;
    box-shadow:var(--shadow);
    border:1px solid #e9eef5;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:22px;
    padding:22px;
    flex-wrap:wrap;
}

.borea-banner img{
    height:74px;
    width:auto;
    object-fit:contain;
}

.mapa iframe{
    width:100%;
    height:430px;
    border:0;
    border-radius:26px;
    box-shadow:var(--shadow);
}

footer{
    background:var(--secondary);
    color:#fff;
    margin-top:46px;
    padding:54px 0 20px;
}

.footer-content{
    max-width:var(--container);
    margin:0 auto;
    padding:0 20px;
    display:grid;
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:28px;
}

.footer-column h3{
    margin-bottom:14px;
    font-size:1.08rem;
}

.footer-column p,
.footer-column a{
    color:#cbd5e1;
    margin-bottom:10px;
    display:block;
}

.footer-column a:hover{
    color:#fff;
}

.social-icons{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.copyright{
    max-width:var(--container);
    margin:22px auto 0;
    padding:14px 20px 0;
    text-align:center;
    color:#94a3b8;
    border-top:1px solid rgba(255,255,255,.08);
}

.whatsapp-float{
    position:fixed;
    right:18px;
    bottom:18px;
    width:56px;
    height:56px;
    border-radius:50%;
    background:var(--whatsapp);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    box-shadow:0 12px 24px rgba(0,0,0,.18);
    z-index:999;
}

/* RESPONSIVE */
@media (max-width:1100px){
    .features-grid{
        grid-template-columns:repeat(2, minmax(0,1fr));
    }

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

@media (max-width:900px){
    :root{
        --header-h:74px;
    }

    .nav-container{
        grid-template-columns:minmax(0,1fr) auto;
        min-height:var(--header-h);
        padding:12px 16px;
        gap:10px;
    }

    .logo img{
        height:42px;
    }

    .nav-group{
        gap:10px;
    }

    .desktop-menu{
        position:absolute;
        top:var(--header-h);
        right:16px;
        left:auto;
        width:min(270px, calc(100vw - 32px));
        display:none;
        flex-direction:column;
        align-items:stretch;
        gap:0;
        background:#fff;
        padding:14px 16px;
        border-radius:16px;
        box-shadow:0 16px 34px rgba(15,23,42,.16);
        z-index:1200;
    }

    .desktop-menu.active{
        display:flex;
    }

    .desktop-menu a{
        width:100%;
        padding:12px 0;
        border-bottom:1px solid #eef2f7;
    }

    .desktop-menu a:last-child{
        border-bottom:none;
    }

    .mobile-cta{
        display:inline-flex;
        align-items:center;
        justify-content:center;
        margin-top:10px;
        padding:12px 14px;
        background:linear-gradient(135deg,var(--accent),var(--accent-dark));
        color:#fff !important;
        border-radius:12px;
    }

    .hamburger{
        display:inline-flex;
    }

    .swiper{
        height:76vh;
        min-height:520px;
        margin-top:var(--header-h);
    }

    .hero-overlay{
        background:linear-gradient(180deg, rgba(15,23,42,.30) 0%, rgba(15,23,42,.76) 100%);
    }

    .hero-content{
        padding:0 22px;
        max-width:760px;
    }

    .hero-content h1{
        font-size:2rem;
        line-height:1.22;
        margin-bottom:14px;
    }

    .hero-content p{
        font-size:1rem;
        line-height:1.55;
        margin-bottom:14px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:stretch;
        max-width:360px;
        margin:8px auto 0;
        gap:10px;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        min-height:50px;
    }

    .seo-intro,
    .features,
    .apartments,
    .content-section,
    .mapa,
    .borea-banner{
        padding:0 16px;
    }

    .seo-box,
    .content-box{
        padding:26px 20px;
        border-radius:22px;
    }

    .footer-content{
        grid-template-columns:1fr 1fr;
    }
}

/* MOBILE PERFECT HERO */
@media (max-width:640px){
    :root{
        --header-h:68px;
    }

    .nav-container{
        padding:10px 12px;
        min-height:var(--header-h);
    }

    .logo img{
        height:36px;
    }

    .lang-btn{
        padding:8px 10px;
        font-size:.84rem;
    }

    .hamburger{
        width:38px;
        height:38px;
    }

    .hamburger i{
        font-size:22px;
    }

    .desktop-menu{
        top:var(--header-h);
        right:12px;
        width:min(255px, calc(100vw - 24px));
    }

    .swiper{
        height:auto;
        min-height:0;
        margin-top:var(--header-h);
        display:flex;
        align-items:center;
        padding:54px 0 42px;
    }

    .swiper-wrapper,
    .swiper-slide{
        position:absolute;
        inset:0;
        height:100%;
    }

    .swiper-slide img{
        height:100%;
        object-fit:cover;
        object-position:center;
    }

    .hero-overlay{
        background:linear-gradient(180deg, rgba(15,23,42,.42) 0%, rgba(15,23,42,.84) 100%);
    }

    .hero-content{
        position:relative;
        inset:auto;
        width:100%;
        max-width:420px;
        height:auto;
        margin:0 auto;
        padding:0 22px;
        display:block;
    }

    .hero-content h1{
        font-size:1.45rem;
        line-height:1.25;
        margin:0 auto 12px;
        max-width:340px;
        text-shadow:0 4px 16px rgba(0,0,0,.45);
    }

    .hero-content p{
        font-size:.92rem;
        line-height:1.55;
        margin:0 auto 14px;
        max-width:340px;
        text-shadow:0 4px 14px rgba(0,0,0,.45);
    }

    .hero-content p:nth-of-type(2){
        display:none;
    }

    .hero-buttons{
        max-width:320px;
        width:100%;
        margin:12px auto 0;
        gap:10px;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        min-height:48px;
        padding:12px 18px;
        font-size:.95rem;
        border-radius:999px;
    }

    .swiper-button-next,
    .swiper-button-prev{
        display:none;
    }

    .swiper-pagination{
        bottom:12px !important;
    }

    .seo-intro,
    .features,
    .apartments,
    .content-section,
    .mapa,
    .borea-banner{
        margin:34px auto;
        padding:0 14px;
    }

    .seo-box,
    .content-box{
        padding:24px 18px;
        border-radius:20px;
    }

    .seo-box h2,
    .content-box h2{
        font-size:1.55rem;
    }

    .section-title{
        font-size:1.65rem;
    }

    .features-grid,
    .apartments-grid,
    .footer-content{
        grid-template-columns:1fr;
    }

    .apartment-card img{
        height:220px;
    }

    .apartment-card h3{
        font-size:1.3rem;
    }

    .apartment-card p{
        min-height:auto;
    }

    .borea-banner img{
        height:60px;
    }

    .mapa iframe{
        height:300px;
    }

    .whatsapp-float{
        width:52px;
        height:52px;
        font-size:24px;
        bottom:14px;
        right:14px;
    }
}

@media (max-width:390px){
    .hero-content h1{
        font-size:1.32rem;
        max-width:310px;
    }

    .hero-content p{
        font-size:.86rem;
        line-height:1.5;
        max-width:310px;
    }

    .swiper{
        padding:46px 0 38px;
    }

    .btn-primary,
    .btn-secondary{
        min-height:46px;
        font-size:.9rem;
    }
}


/* =========================================================
   FINAL NORMAL MENU FIX – BEZ BLUR / BEZ BACKDROP / BEZ STICKY CTA
========================================================= */

@media (max-width:900px){
    .desktop-menu{
        position:absolute !important;
        top:var(--header-h) !important;
        right:16px !important;
        left:auto !important;
        width:min(270px, calc(100vw - 32px)) !important;
        display:none !important;
        flex-direction:column !important;
        align-items:stretch !important;
        gap:0 !important;
        background:#fff !important;
        padding:14px 16px !important;
        border-radius:16px !important;
        box-shadow:0 16px 34px rgba(15,23,42,.16) !important;
        z-index:1200 !important;
    }

    .desktop-menu.active{
        display:flex !important;
    }

    .desktop-menu a{
        display:block !important;
        width:100% !important;
        padding:12px 0 !important;
        border-bottom:1px solid #eef2f7 !important;
        color:#334155 !important;
        background:transparent !important;
        text-align:left !important;
        text-decoration:none !important;
        font-weight:600 !important;
    }

    .desktop-menu a:last-child{
        border-bottom:none !important;
    }

    .mobile-cta{
        display:inline-flex !important;
        align-items:center !important;
        justify-content:center !important;
        margin-top:10px !important;
        padding:12px 14px !important;
        background:linear-gradient(135deg,var(--accent),var(--accent-dark)) !important;
        color:#fff !important;
        border-radius:12px !important;
        text-align:center !important;
        border-bottom:none !important;
        font-weight:700 !important;
    }

    .hamburger{
        display:inline-flex !important;
    }

    .lang-options{
        display:none !important;
        position:absolute !important;
        right:0 !important;
        top:calc(100% + 8px) !important;
        min-width:110px !important;
        background:#fff !important;
        border-radius:14px !important;
        box-shadow:0 12px 32px rgba(15,23,42,0.16) !important;
        padding:8px 0 !important;
        z-index:1300 !important;
    }

    .language-dropdown.active .lang-options{
        display:block !important;
    }

    .lang-options a{
        display:block !important;
        padding:10px 14px !important;
        color:#334155 !important;
        font-weight:600 !important;
        text-decoration:none !important;
    }
}

.menu-backdrop,
.sticky-cta{
    display:none !important;
}


/* =========================================================
   STATIC HERO – ONE IMAGE (NO SWIPER)
========================================================= */

.hero-static{
    width:100%;
    height:72vh;
    min-height:520px;
    margin-top:var(--header-h);
    position:relative;
    overflow:hidden;
}

.hero-static-img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-static .hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(15,23,42,.20) 0%, rgba(15,23,42,.62) 100%);
    z-index:2;
    pointer-events:none;
}

.hero-static .hero-content{
    position:absolute;
    inset:0;
    z-index:3;
    max-width:860px;
    margin:auto;
    height:max-content;
    text-align:center;
    color:#fff;
    padding:0 24px;
    transform:none;
    left:0;
    top:0;
}

.hero-static .hero-content h1{
    font-size:clamp(2.2rem, 4vw, 3.4rem);
    line-height:1.15;
    margin-bottom:16px;
    color:#fff;
    text-shadow:0 6px 22px rgba(0,0,0,.28);
}

.hero-static .hero-content p{
    max-width:760px;
    margin:0 auto 22px;
    font-size:1.08rem;
    color:#f8fafc;
    text-shadow:0 4px 18px rgba(0,0,0,.28);
}

@media (max-width:900px){
    .hero-static{
        height:76vh;
        min-height:520px;
        margin-top:var(--header-h);
    }

    .hero-static .hero-content{
        padding:0 18px;
    }

    .hero-static .hero-content h1{
        font-size:1.95rem;
    }

    .hero-static .hero-content p{
        font-size:1rem;
    }
}

@media (max-width:640px){
    .hero-static{
        height:72vh;
        min-height:500px;
    }

    .hero-static .hero-content h1{
        font-size:1.6rem;
        margin-bottom:12px;
    }

    .hero-static .hero-content p{
        font-size:.95rem;
        margin-bottom:16px;
    }

    .hero-static .hero-content p:nth-of-type(2){
        display:none;
    }
}
/* =========================
   CLEAN BUTTON STYLE (NO ORANGE)
========================= */

.seo-links a,
.content-box a.btn,
.content-box a {
  display:inline-block;
  margin:6px 4px;
  padding:10px 18px;

  background:#f1f5f9;           /* svijetlo sivo */
  color:#334155;               /* tamni tekst */

  border:1px solid #e2e8f0;
  border-radius:999px;

  font-weight:600;
  font-size:14px;

  text-decoration:none;
  text-align:center;

  transition:all 0.2s ease;
}

/* hover efekt */
.seo-links a:hover,
.content-box a:hover{
  background:#e2e8f0;
  color:#0f172a;
}

/* =========================================================
   FINAL FIX: APARTMANI HERO + MOBILE CTA ONLY
   - Bez Swiper slidera
   - Desktop: samo WhatsApp
   - Mobilno: WhatsApp iznad, CTA Provjeri dostupnost na dnu
========================================================= */

/* sakrij stare swiper elemente ako su ostali u cacheu */
.swiper,
.swiper-wrapper,
.swiper-slide,
.swiper-button-next,
.swiper-button-prev,
.swiper-pagination,
.sticky-cta {
    display: none !important;
}

.hero-static {
    width: 100%;
    height: 72vh;
    min-height: 520px;
    margin-top: var(--header-h);
    position: relative;
    overflow: hidden;
    background: #dce6f2;
}

.hero-static picture,
.hero-static-img,
.hero-static img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-static-img,
.hero-static img {
    object-fit: cover;
    object-position: center center;
}

.hero-static .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,23,42,.16) 0%, rgba(15,23,42,.62) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-static .hero-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    max-width: 860px;
    margin: auto;
    height: max-content;
    text-align: center;
    color: #fff;
    padding: 0 24px;
}

.hero-static .hero-content h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.15;
    margin-bottom: 16px;
    color: #fff;
    text-shadow: 0 6px 22px rgba(0,0,0,.30);
}

.hero-static .hero-content p {
    max-width: 760px;
    margin: 0 auto 22px;
    font-size: 1.08rem;
    color: #f8fafc;
    text-shadow: 0 4px 18px rgba(0,0,0,.30);
}

.cta-fixed {
    display: none;
}

.whatsapp-float {
    right: 18px;
    bottom: 18px;
    z-index: 1300;
}

@media (max-width: 900px) {
    .hero-static {
        height: 76vh;
        min-height: 520px;
        margin-top: var(--header-h);
    }

    .hero-static .hero-content {
        padding: 0 18px;
    }

    .hero-static .hero-content h1 {
        font-size: 1.95rem;
    }

    .hero-static .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .hero-static {
        height: 430px;
        min-height: 430px;
        margin-top: var(--header-h);
    }

    .hero-static-img,
    .hero-static img {
        object-fit: cover;
        object-position: center center;
    }

    .hero-static .hero-overlay {
        background: linear-gradient(180deg, rgba(15,23,42,.28) 0%, rgba(15,23,42,.76) 100%);
    }

    .hero-static .hero-content {
        width: 100%;
        max-width: 420px;
        padding: 0 20px;
    }

    .hero-static .hero-content h1 {
        font-size: 1.55rem;
        line-height: 1.22;
        margin-bottom: 12px;
    }

    .hero-static .hero-content p {
        font-size: .92rem;
        line-height: 1.5;
        margin-bottom: 14px;
    }

    .hero-buttons {
        max-width: 320px;
        width: 100%;
        margin: 12px auto 0;
        gap: 10px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        min-height: 46px;
        padding: 11px 18px;
        font-size: .92rem;
        border-radius: 999px;
    }

    .cta-fixed {
        position: fixed;
        left: 14px;
        right: 14px;
        bottom: 14px;
        z-index: 1290;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 52px;
        padding: 13px 18px;
        border-radius: 999px;
        background: linear-gradient(135deg, var(--accent), var(--accent-dark));
        color: #fff !important;
        font-weight: 800;
        text-align: center;
        box-shadow: 0 12px 28px rgba(0,0,0,.24);
    }

    .whatsapp-float {
        right: 16px;
        bottom: 82px;
        width: 52px;
        height: 52px;
        font-size: 24px;
        z-index: 1300;
    }

    body {
        padding-bottom: 84px;
    }
}

@media (max-width: 390px) {
    .hero-static {
        height: 400px;
        min-height: 400px;
    }

    .hero-static .hero-content h1 {
        font-size: 1.38rem;
    }

    .hero-static .hero-content p {
        font-size: .86rem;
    }
}


/* =========================================================
   HERO FIX + MOBILE CTA FINAL
   - Static hero image, no Swiper
   - Desktop: only WhatsApp
   - Mobile: WhatsApp + Provjeri dostupnost
========================================================= */

.swiper,
.swiper-wrapper,
.swiper-slide,
.swiper-button-next,
.swiper-button-prev,
.swiper-pagination {
  display: none !important;
}

.hero-static {
  width: 100%;
  height: 72vh;
  min-height: 520px;
  margin-top: var(--header-h);
  position: relative;
  overflow: hidden;
  background: #e5edf7;
}

.hero-static picture,
.hero-static-img,
.hero-static img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-static-img,
.hero-static img {
  object-fit: cover;
  object-position: center center;
}

.hero-static .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,.18) 0%, rgba(15,23,42,.66) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-static .hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  max-width: 860px;
  height: max-content;
  margin: auto;
  padding: 0 24px;
  text-align: center;
  color: #fff;
}

.hero-static .hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 16px;
  color: #fff;
  text-shadow: 0 6px 22px rgba(0,0,0,.30);
}

.hero-static .hero-content p {
  max-width: 760px;
  margin: 0 auto 22px;
  font-size: 1.08rem;
  color: #f8fafc;
  text-shadow: 0 4px 18px rgba(0,0,0,.30);
}

/* Desktop: CTA hidden, only WhatsApp visible */
.cta-fixed {
  display: none !important;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1300;
}

@media (max-width: 900px) {
  .hero-static {
    height: 76vh;
    min-height: 520px;
  }

  .hero-static .hero-content {
    padding: 0 18px;
  }

  .hero-static .hero-content h1 {
    font-size: 1.95rem;
  }

  .hero-static .hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .hero-static {
    height: 430px;
    min-height: 430px;
    margin-top: var(--header-h);
  }

  .hero-static-img,
  .hero-static img {
    object-position: center center;
  }

  .hero-static .hero-overlay {
    background: linear-gradient(180deg, rgba(15,23,42,.28) 0%, rgba(15,23,42,.76) 100%);
  }

  .hero-static .hero-content {
    width: 100%;
    max-width: 420px;
    padding: 0 20px;
  }

  .hero-static .hero-content h1 {
    font-size: 1.55rem;
    line-height: 1.22;
    margin-bottom: 12px;
  }

  .hero-static .hero-content p {
    font-size: .92rem;
    line-height: 1.5;
    margin-bottom: 14px;
  }

  .hero-buttons {
    max-width: 320px;
    width: 100%;
    margin: 12px auto 0;
    gap: 10px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    min-height: 46px;
    padding: 11px 18px;
    font-size: .92rem;
    border-radius: 999px;
  }

  /* Mobile: CTA visible at bottom, WhatsApp above it */
  .cta-fixed {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 1290;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 13px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff !important;
    font-weight: 800;
    text-align: center;
    box-shadow: 0 12px 28px rgba(0,0,0,.24);
  }

  .whatsapp-float {
    right: 16px;
    bottom: 82px;
    width: 52px;
    height: 52px;
    font-size: 24px;
    z-index: 1300;
  }

  body {
    padding-bottom: 84px;
  }
}

@media (max-width: 390px) {
  .hero-static {
    height: 410px;
    min-height: 410px;
  }

  .hero-static .hero-content h1 {
    font-size: 1.38rem;
  }

  .hero-static .hero-content p {
    font-size: .86rem;
    line-height: 1.5;
  }
}
