/* =============================================================================
   Boka Cruises — home.css (Faza 9.3)
   Homepage sekcije: hero, featured tours, USP grid, popular destinations,
   testimonials, special offers, about teaser, blog teaser, newsletter CTA,
   stats counter.
   ============================================================================= */

/* =============================================================================
   1. Hero slideshow (full-bleed Swiper)
   ============================================================================= */
.home-hero {
    position: relative;
    min-height: clamp(520px, 75vh, 760px);
    color: #fff;
    overflow: hidden;
}
.home-hero__swiper {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.home-hero__slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    /* 2026-05-14: prikaz krece od dna slike (donji dio se vidi, gornji se crop-uje) */
    background-position: 50% 100%;
    background-repeat: no-repeat;
}
/* Vrlo suptilan scrim — jedva primjetan; pomaže čitljivosti teksta na dnu
   (CTA dugmad i subtitle), ali slika ostaje skoro netaknuta. */
.home-hero__slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(13, 30, 58, 0.05) 0%,
        rgba(13, 30, 58, 0.12) 50%,
        rgba(13, 30, 58, 0.25) 100%);
    pointer-events: none;
    z-index: 2;
}

.home-hero__content {
    position: relative;
    z-index: 2;
    min-height: clamp(520px, 75vh, 760px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: var(--bc-space-7) var(--bc-space-4);
    max-width: 1100px;
    margin: 0 auto;
}
.home-hero__eyebrow {
    color: var(--bc-primary-soft);
    text-transform: uppercase;
    font-size: var(--bc-fs-sm);
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: var(--bc-space-3);
}
.home-hero__title {
    color: #fff;
    font-size: var(--bc-fs-5xl);
    line-height: 1.05;
    margin-bottom: var(--bc-space-4);
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
    max-width: 900px;
}
.home-hero__subtitle {
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1.05rem, 1.6vw, 1.4rem);
    line-height: var(--bc-lh-relaxed);
    margin-bottom: var(--bc-space-6);
    max-width: 720px;
    font-weight: 400;
}
.home-hero__actions {
    display: flex;
    gap: var(--bc-space-3);
    flex-wrap: wrap;
    justify-content: center;
}

/* Swiper pagination dots */
.home-hero .swiper-pagination {
    position: absolute;
    bottom: var(--bc-space-5);
    z-index: 3;
}
.home-hero .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 10px; height: 10px;
    transition: background var(--bc-transition-fast),
                width var(--bc-transition-base);
}
.home-hero .swiper-pagination-bullet-active {
    background: var(--bc-primary);
    width: 32px;
    border-radius: 5px;
}

/* Swiper nav arrows */
.home-hero .swiper-button-next,
.home-hero .swiper-button-prev {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    width: 56px; height: 56px;
    border-radius: 50%;
    backdrop-filter: blur(8px);
    transition: background var(--bc-transition-fast);
}
.home-hero .swiper-button-next:hover,
.home-hero .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.2);
}
.home-hero .swiper-button-next::after,
.home-hero .swiper-button-prev::after {
    font-size: 1.1rem;
    font-weight: 800;
}
@media (max-width: 767.98px) {
    .home-hero .swiper-button-next,
    .home-hero .swiper-button-prev { display: none; }
}

/* Hero scroll indicator */
.home-hero__scroll {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: #fff;
    font-size: 1.5rem;
    animation: bc-bounce 2s infinite;
    text-decoration: none;
}
@keyframes bc-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(6px); }
}

/* =============================================================================
   2. Featured tours section
   ============================================================================= */
.home-featured {
    padding: var(--bc-section-y) 0;
    background: var(--bc-bg);
}
.home-featured__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--bc-space-5);
    margin-bottom: var(--bc-space-6);
}
/* Tablet (≤767px) — 2 kartice u redu. 3-col se zadržava do 768px (relaxed sa 1024px)
   tako da je više širina pokriveno sa "tri ture u jednoj liniji". */
@media (max-width: 767.98px) {
    .home-featured__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 539.98px) {
    .home-featured__grid { grid-template-columns: 1fr; }
}
.home-featured__cta {
    text-align: center;
    margin-top: var(--bc-space-6);
}

/* =============================================================================
   3. USP grid (Why choose us)
   ============================================================================= */
.home-usp {
    padding: var(--bc-section-y) 0;
    background: var(--bc-bg-soft);
}
.home-usp__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--bc-space-5);
}
@media (max-width: 1023.98px) {
    .home-usp__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 575.98px) {
    .home-usp__grid { grid-template-columns: 1fr; }
}
.home-usp__item {
    text-align: center;
    padding: var(--bc-space-5);
    background: var(--bc-bg);
    border-radius: var(--bc-radius-lg);
    border: 1px solid var(--bc-border);
    transition: transform var(--bc-transition-base),
                box-shadow var(--bc-transition-base),
                border-color var(--bc-transition-base);
}
.home-usp__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--bc-shadow-3);
    border-color: var(--bc-primary-soft);
}
.home-usp__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: var(--bc-gradient-sunset);
    color: #fff;
    font-size: 2rem;
    border-radius: 50%;
    margin-bottom: var(--bc-space-4);
}
.home-usp__item h3 {
    font-size: var(--bc-fs-lg);
    margin-bottom: var(--bc-space-2);
    color: var(--bc-secondary);
}
.home-usp__item p {
    color: var(--bc-text-muted);
    line-height: var(--bc-lh-relaxed);
    font-size: var(--bc-fs-sm);
    margin: 0;
}

/* =============================================================================
   4. Popular destinations (image grid sa overlay)
   ============================================================================= */
.home-destinations {
    padding: var(--bc-section-y) 0;
    background: var(--bc-bg);
}
.home-destinations__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: 280px 280px;
    gap: var(--bc-space-3);
}
.home-destinations__item {
    position: relative;
    border-radius: var(--bc-radius-lg);
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
}
.home-destinations__item:nth-child(1) { grid-column: 1; grid-row: 1 / span 2; }
.home-destinations__item:nth-child(4) { grid-column: 3; grid-row: 1 / span 2; }
@media (max-width: 1023.98px) {
    .home-destinations__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: 240px 240px 240px;
    }
    .home-destinations__item:nth-child(1) { grid-column: 1; grid-row: 1; }
    .home-destinations__item:nth-child(4) { grid-column: 2; grid-row: 3; }
}
@media (max-width: 575.98px) {
    .home-destinations__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .home-destinations__item:nth-child(1),
    .home-destinations__item:nth-child(4) {
        grid-column: 1;
        grid-row: auto;
    }
    .home-destinations__item { aspect-ratio: 16 / 10; }
}
.home-destinations__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--bc-ease-out);
}
.home-destinations__item:hover .home-destinations__img {
    transform: scale(1.05);
}
.home-destinations__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(15, 61, 84, 0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--bc-space-5);
}
.home-destinations__title {
    color: #fff;
    font-size: var(--bc-fs-xl);
    font-weight: 700;
    margin: 0 0 var(--bc-space-1);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.home-destinations__meta {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--bc-fs-sm);
    display: flex;
    align-items: center;
    gap: var(--bc-space-2);
}
.home-destinations__meta i { color: var(--bc-primary); }

/* =============================================================================
   5. Testimonials carousel
   ============================================================================= */
.home-testimonials {
    padding: var(--bc-section-y) 0;
    background: var(--bc-sand-soft);
    position: relative;
    overflow: hidden;
}
.home-testimonials::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: var(--bc-space-5);
    font-size: 18rem;
    line-height: 1;
    color: rgba(255, 140, 66, 0.08);
    font-family: Georgia, serif;
    pointer-events: none;
}
.home-testimonials__swiper {
    padding: var(--bc-space-3) 0;
}
.testimonial-card {
    background: var(--bc-bg);
    border-radius: var(--bc-radius-xl);
    padding: var(--bc-space-6);
    box-shadow: var(--bc-shadow-2);
    border: 1px solid var(--bc-border);
    height: auto;
    display: flex;
    flex-direction: column;
}
.testimonial-card__rating {
    color: #FBBF24;
    margin-bottom: var(--bc-space-3);
    font-size: 1.1rem;
}
.testimonial-card__rating i + i { margin-left: 2px; }
.testimonial-card__quote {
    color: var(--bc-text);
    font-size: var(--bc-fs-md);
    line-height: var(--bc-lh-relaxed);
    margin-bottom: var(--bc-space-5);
    flex-grow: 1;
    font-style: italic;
}
.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--bc-space-3);
    border-top: 1px solid var(--bc-border);
    padding-top: var(--bc-space-4);
}
.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--bc-primary-soft);
}
.testimonial-card__name {
    font-weight: 700;
    color: var(--bc-secondary);
    font-size: var(--bc-fs-base);
}
.testimonial-card__meta {
    color: var(--bc-text-muted);
    font-size: var(--bc-fs-xs);
    display: flex;
    align-items: center;
    gap: var(--bc-space-1);
}

.home-testimonials .swiper-pagination {
    position: static;
    margin-top: var(--bc-space-5);
}
.home-testimonials .swiper-pagination-bullet {
    background: var(--bc-secondary);
    opacity: 0.3;
}
.home-testimonials .swiper-pagination-bullet-active {
    background: var(--bc-primary);
    opacity: 1;
    width: 32px;
    border-radius: 5px;
}

/* =============================================================================
   6. Special offers (discount-marked tours)
   ============================================================================= */
.home-offers {
    padding: var(--bc-section-y) 0;
    background: var(--bc-gradient-sunset);
    color: #fff;
}
.home-offers .eyebrow { color: rgba(255, 255, 255, 0.85); }
.home-offers h2 { color: #fff; }
.home-offers .lead { color: rgba(255, 255, 255, 0.9); }

.home-offers__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--bc-space-5);
}
@media (max-width: 1023.98px) {
    .home-offers__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 639.98px) {
    .home-offers__grid { grid-template-columns: 1fr; }
}

.offer-card {
    background: var(--bc-bg);
    color: var(--bc-text);
    border-radius: var(--bc-radius-lg);
    overflow: hidden;
    position: relative;
    transition: transform var(--bc-transition-base),
                box-shadow var(--bc-transition-base);
}
.offer-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--bc-shadow-3);
}
.offer-card__badge {
    position: absolute;
    top: var(--bc-space-3);
    right: var(--bc-space-3);
    z-index: 2;
    background: var(--bc-coral);
    color: #fff;
    padding: var(--bc-space-2) var(--bc-space-3);
    border-radius: var(--bc-radius-pill);
    font-weight: 800;
    font-size: var(--bc-fs-sm);
    box-shadow: var(--bc-shadow-2);
}
.offer-card__img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    width: 100%;
}
.offer-card__body { padding: var(--bc-space-5); }
.offer-card__title {
    font-size: var(--bc-fs-lg);
    color: var(--bc-secondary);
    margin-bottom: var(--bc-space-2);
}
.offer-card__meta {
    color: var(--bc-text-muted);
    font-size: var(--bc-fs-sm);
    margin-bottom: var(--bc-space-3);
    display: flex;
    gap: var(--bc-space-3);
    flex-wrap: wrap;
}
.offer-card__meta i { color: var(--bc-primary); }
.offer-card__prices {
    display: flex;
    align-items: baseline;
    gap: var(--bc-space-2);
    margin-bottom: var(--bc-space-3);
}
.offer-card__price-old {
    color: var(--bc-text-faint);
    text-decoration: line-through;
    font-size: var(--bc-fs-sm);
}
.offer-card__price {
    color: var(--bc-primary);
    font-weight: 800;
    font-size: var(--bc-fs-2xl);
}

/* =============================================================================
   7. About teaser
   ============================================================================= */
.home-about {
    padding: var(--bc-section-y) 0;
    background: var(--bc-bg);
}
.home-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--bc-space-7);
    align-items: center;
}
@media (max-width: 991.98px) {
    .home-about__grid {
        grid-template-columns: 1fr;
        gap: var(--bc-space-5);
    }
}
.home-about__visual {
    position: relative;
    border-radius: var(--bc-radius-xl);
    overflow: hidden;
    aspect-ratio: 4 / 3;
}
.home-about__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 2026-05-14: prikaz "od dna ka gore" — donji dio slike (čamac/more)
       je sidro fokusa kad je slika kropovana po aspect-ratio-u 4:3. */
    object-position: center bottom;
}
.home-about__badge {
    position: absolute;
    bottom: var(--bc-space-5);
    left: var(--bc-space-5);
    background: var(--bc-bg);
    padding: var(--bc-space-4) var(--bc-space-5);
    border-radius: var(--bc-radius-lg);
    box-shadow: var(--bc-shadow-3);
    text-align: center;
}
.home-about__badge-num {
    color: var(--bc-primary);
    font-size: var(--bc-fs-3xl);
    font-weight: 800;
    line-height: 1;
    display: block;
}
.home-about__badge-label {
    color: var(--bc-text-muted);
    font-size: var(--bc-fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-top: var(--bc-space-1);
}
.home-about__features {
    list-style: none;
    padding: 0;
    margin: var(--bc-space-5) 0;
}
.home-about__features li {
    display: flex;
    align-items: flex-start;
    gap: var(--bc-space-3);
    margin-bottom: var(--bc-space-3);
}
.home-about__features i {
    color: var(--bc-primary);
    font-size: 1.2rem;
    margin-top: 0.15em;
    flex-shrink: 0;
}

/* =============================================================================
   8. Stats counter
   ============================================================================= */
.home-stats {
    padding: var(--bc-section-y) 0;
    background: var(--bc-gradient-sea);
    color: #fff;
}
.home-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--bc-space-5);
    text-align: center;
}
@media (max-width: 767.98px) {
    .home-stats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--bc-space-6); }
}
.home-stats__item h3 {
    color: var(--bc-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--bc-space-1);
    line-height: 1;
}
.home-stats__item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--bc-fs-sm);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* =============================================================================
   9. Blog teaser
   ============================================================================= */
.home-blog {
    padding: var(--bc-section-y) 0;
    background: var(--bc-bg-soft);
}
.home-blog__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--bc-space-5);
    margin-bottom: var(--bc-space-6);
}
@media (max-width: 1023.98px) {
    .home-blog__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 639.98px) {
    .home-blog__grid { grid-template-columns: 1fr; }
}

.blog-card {
    background: var(--bc-bg);
    border-radius: var(--bc-radius-lg);
    overflow: hidden;
    border: 1px solid var(--bc-border);
    transition: transform var(--bc-transition-base),
                box-shadow var(--bc-transition-base);
}
.blog-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--bc-shadow-3);
}
.blog-card__link {
    color: inherit;
    text-decoration: none;
    display: block;
}
.blog-card__img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}
.blog-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--bc-ease-out);
}
.blog-card:hover .blog-card__img {
    transform: scale(1.04);
}
.blog-card__body { padding: var(--bc-space-5); }
.blog-card__meta {
    color: var(--bc-text-muted);
    font-size: var(--bc-fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: var(--bc-space-2);
    display: flex;
    align-items: center;
    gap: var(--bc-space-2);
}
.blog-card__meta i { color: var(--bc-primary); }
.blog-card__title {
    color: var(--bc-secondary);
    font-size: var(--bc-fs-lg);
    margin-bottom: var(--bc-space-3);
    line-height: var(--bc-lh-snug);
    transition: color var(--bc-transition-fast);
}
.blog-card:hover .blog-card__title { color: var(--bc-primary); }
.blog-card__excerpt {
    color: var(--bc-text-muted);
    font-size: var(--bc-fs-sm);
    line-height: var(--bc-lh-relaxed);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* =============================================================================
   10. Newsletter CTA section
   ============================================================================= */
.home-newsletter {
    padding: var(--bc-section-y-sm) 0;
    background: var(--bc-secondary);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.home-newsletter::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--bc-primary);
    opacity: 0.1;
    pointer-events: none;
}
.home-newsletter::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--bc-coral);
    opacity: 0.08;
    pointer-events: none;
}
.home-newsletter__inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.home-newsletter h2 { color: #fff; margin-bottom: var(--bc-space-3); }
.home-newsletter p { color: rgba(255, 255, 255, 0.85); margin-bottom: var(--bc-space-5); }
.home-newsletter__form {
    display: flex;
    gap: var(--bc-space-2);
    max-width: 480px;
    margin: 0 auto;
}
.home-newsletter__input {
    flex: 1;
    padding: 0.85rem 1.1rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--bc-radius-pill);
    color: #fff;
    font-size: var(--bc-fs-base);
}
.home-newsletter__input::placeholder { color: rgba(255, 255, 255, 0.55); }
.home-newsletter__input:focus {
    outline: 0;
    background: rgba(255, 255, 255, 0.18);
    border-color: var(--bc-primary);
}
.home-newsletter__btn {
    padding: 0.85rem 1.5rem;
    background: var(--bc-primary);
    color: #fff;
    border: 0;
    border-radius: var(--bc-radius-pill);
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--bc-transition-base);
}
.home-newsletter__btn:hover {
    background: var(--bc-primary-dk);
    color: #fff;
}
@media (max-width: 575.98px) {
    .home-newsletter__form { flex-direction: column; }
}


/* =============================================================================
   13. Universal page section (#122, 2026-06-01)
   ============================================================================= */
.home-universal { padding: var(--bc-section-y) 0; }
.home-universal--stats { background: var(--bc-gradient-sea); color: #fff; }
.home-universal--stats .eyebrow,
.home-universal--stats h2 { color: #fff; }
.home-universal--blocks { background: var(--bc-bg); }
.home-universal--contact { background: var(--bc-surface); }
.home-universal--gallery { background: var(--bc-bg); }

/* Group wrapper — kada admin čekira više tabova, oni se renderuju jedan
   ispod drugog. Smanjujemo dupli vertical padding između njih da bi tok
   bio kompaktan, ali ostavljamo punu vertikalu na vrhu i dnu grupe. */
.home-universal-group > .home-universal + .home-universal {
    padding-top: calc(var(--bc-section-y) * 0.5);
}
/* Susjedne sekcije sa kontrastnim background-om — vrati pun padding da
   se vizuelno ne stope. */
.home-universal-group > .home-universal--stats + .home-universal:not(.home-universal--stats),
.home-universal-group > .home-universal:not(.home-universal--stats) + .home-universal--stats {
    padding-top: var(--bc-section-y);
}

/* Content tab — 2-col split (paritet sa .home-about__grid) */
.home-universal__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--bc-space-7);
    align-items: center;
}
@media (max-width: 991.98px) {
    .home-universal__content-grid { grid-template-columns: 1fr; gap: var(--bc-space-5); }
}
.home-universal__visual {
    position: relative;
    border-radius: var(--bc-radius-xl);
    overflow: hidden;
    aspect-ratio: 4 / 3;
}
.home-universal__visual img { width: 100%; height: 100%; object-fit: cover; }
.home-universal__text .prose { color: var(--bc-text); line-height: 1.7; }
.home-universal__text .prose p { margin-bottom: var(--bc-space-3); }

/* Blocks tab — kartica grid (paritet sa .home-services / usp-grid) */
.home-universal__blocks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--bc-space-5);
    margin-top: var(--bc-space-6);
}
.home-universal__block-card {
    background: var(--bc-surface);
    border-radius: var(--bc-radius-lg);
    padding: var(--bc-space-5);
    box-shadow: var(--bc-shadow-2);
    transition: transform var(--bc-transition-base), box-shadow var(--bc-transition-base);
}
.home-universal__block-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--bc-shadow-3);
}
.home-universal__block-icon {
    color: var(--bc-primary);
    font-size: 2rem;
    margin-bottom: var(--bc-space-3);
    display: inline-flex;
}
.home-universal__block-icon svg { width: 40px; height: 40px; }
.home-universal__block-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: var(--bc-radius);
    margin-bottom: var(--bc-space-3);
}
.home-universal__block-image img { width: 100%; height: 100%; object-fit: cover; }
.home-universal__block-card h3 {
    font-size: var(--bc-fs-lg);
    margin: 0 0 var(--bc-space-2);
    color: var(--bc-text);
}
.home-universal__block-card p { color: var(--bc-text-muted); margin: 0; line-height: 1.6; }

/* Contact-Map tab — info kartica + mapa */
.home-universal__contact-grid {
    display: grid;
    grid-template-columns: minmax(260px, 380px) 1fr;
    gap: var(--bc-space-6);
    margin-top: var(--bc-space-6);
    align-items: stretch;
}
@media (max-width: 767.98px) {
    .home-universal__contact-grid { grid-template-columns: 1fr; gap: var(--bc-space-4); }
}
.home-universal__contact-card {
    background: var(--bc-bg);
    border-radius: var(--bc-radius-lg);
    padding: var(--bc-space-5);
    box-shadow: var(--bc-shadow-1);
}
.home-universal__contact-rows {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--bc-space-4);
}
.home-universal__contact-row { display: flex; gap: var(--bc-space-3); align-items: flex-start; }
.home-universal__contact-icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    border-radius: var(--bc-radius-pill);
    background: rgba(10, 90, 115, 0.10);
    color: var(--bc-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}
.home-universal__contact-icon[data-tone="gold"] { color: #C9A871; background: rgba(201, 168, 113, 0.12); }
.home-universal__contact-icon[data-tone="navy"] { color: #1f2a44; background: rgba(31, 42, 68, 0.10); }
.home-universal__contact-label {
    display: block;
    font-size: var(--bc-fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--bc-text-muted);
    font-weight: 600;
}
.home-universal__contact-value {
    display: block;
    color: var(--bc-text);
    font-weight: 500;
    text-decoration: none;
    margin-top: 2px;
}
.home-universal__contact-value:hover { color: var(--bc-primary); }
.home-universal__map {
    border-radius: var(--bc-radius-lg);
    overflow: hidden;
    min-height: 300px;
    box-shadow: var(--bc-shadow-2);
}
.home-universal__map iframe { display: block; width: 100%; min-height: 300px; border: 0; }

/* Gallery tab — Fancybox grid */
.home-universal__gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--bc-space-3);
    margin-top: var(--bc-space-6);
}
.home-universal__gallery-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--bc-radius);
    display: block;
    box-shadow: var(--bc-shadow-1);
    transition: transform var(--bc-transition-base), box-shadow var(--bc-transition-base);
}
.home-universal__gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--bc-shadow-3);
}
.home-universal__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--bc-transition-slow);
}
.home-universal__gallery-item:hover img { transform: scale(1.06); }