.roboto-<uniquifier> {
             font-family: "Roboto", sans-serif;
             font-optical-sizing: auto;
             font-weight: 400;
             font-style: normal;
             font-variation-settings:
                     "wdth" 100;
         }

:root {
    --color-primary: #2d6a4f;
    --color-primary-light: #C0CEAB;
    --color-primary-dark: #798763;
    --color-accent: #f4a261;
    --color-bg: #f8f9f4;
    --color-card-bg: #ffffff;
    --color-text: #1b1b1b;
    --color-text-muted: #6c757d;
    --color-border: #e8ede5;
    --color-star-filled: #f4a261;
    --color-star-empty: #d0d0d0;
    --color-olive: #6b7c59;
    --color-olive-dark: #5a6a4a;
    --color-olive-light: #a8b59a;
    --font-display: "Roboto", sans-serif;
    --font-body: "Roboto", sans-serif;
    --radius-card: 16px;
    --shadow-card: 0 2px 16px rgba(45, 106, 79, 0.08);
    --shadow-card-hover: 0 8px 32px rgba(45, 106, 79, 0.16);
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

.main-header {
    width: 100%;
    padding: 15px 0;
    background: #6b7c59;
}

.logo-img {
    height: 45px;
    width: auto;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 10px 15px;
}

.navbar-nav .nav-link:hover {
    color: #f0f0f0 !important;
}

.navbar-toggler {
    color: #fff;
    box-shadow: none !important;
}

.btn-success {
    background-color: var(--color-olive-dark);
    border: 1px solid var(--color-olive-dark);
}

.btn-success:hover {
    background-color: var(--color-olive-dark);
    border-color: #fff;
}

@media (max-width: 767.98px) {

    .navbar-collapse {
        text-align: center;
    }

    .navbar-nav {
        margin-bottom: 1rem;
    }

    .navbar-nav .nav-link {
        padding: 12px 0;
    }

    .navbar-collapse .btn {
        width: 100%;
        max-width: 250px;
    }
}

.hero-section {
    width: 100%;
    min-height: 90vh;
    background: #f5f5f5 url("Images/Hero.jpg") no-repeat right center;
    background-size: cover;
    display: flex;
    align-items: center;
}

.hero-content {
    width: 100%;
}

.hero-text {
    max-width: 540px;
    padding: 100px 0 60px;
}

.hero-text h1 {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--color-olive-dark);
    line-height: 1.2;
}

.hero-text p {
    margin: 20px 0 28px;
    color: #555555;
    font-size: 1.05rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-buttons .btn-success {
    background-color: var(--color-olive);
    border-color: var(--color-olive);
    padding: 10px 24px;
    font-weight: 500;
    border-radius: 8px;
}

.hero-buttons .btn-success:hover {
    background-color: var(--color-olive-dark);
    border-color: var(--color-olive-dark);
}

.hero-buttons .btn-outline-secondary {
    color: var(--color-olive);
    border-color: var(--color-olive);
    padding: 10px 24px;
    font-weight: 500;
    border-radius: 8px;
}

.hero-buttons .btn-outline-secondary:hover {
    background-color: var(--color-olive);
    border-color: var(--color-olive);
    color: #fff;
}

@media (max-width: 992px) {
    .hero-section {
        background-position: center;
    }

    .hero-text {
        max-width: 100%;
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        justify-content: center;
    }

    .hero-text {
        padding: 70px 15px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 1.7rem;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 260px;
    }
}

.search-section {
    background-color: var(--color-olive);
    padding: 0;
}

.search-bar {
    display: flex;
    align-items: center;
    background-color: var(--color-olive);
    padding: 14px 20px;
    width: 100%;
    box-sizing: border-box;
}

.search-bar input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 6px 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    color: #ffffff;
}

.search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.75);
}

.search-bar button {
    border: none;
    background: transparent;
    padding: 6px 10px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-bar button:hover {
    color: #ffffff;
    transform: scale(1.1);
}

.filter-strip {
    background-color: #ffffff;
    padding: 18px 0;
    width: 100%;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-item {
    flex: 1 1 180px;
}

.filter-item label {
    display: block;
    color: #3a3a3a;
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.filter-item input,
.filter-item select {
    width: 100%;
    padding: 10px 18px;
    border-radius: 30px;
    border: none;
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: #ffffff;
    background-color: var(--color-olive);
    outline: none;
    transition: box-shadow 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
}

.filter-item select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 38px;
    cursor: pointer;
}

.filter-item input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.filter-item input:focus,
.filter-item select:focus {
    box-shadow: 0 0 0 3px rgba(90, 107, 74, 0.35);
}

.search-results-container {
    padding: 20px 0;
    background-color: #ffffff;
}

.search-results-container .results-title {
    color: #3a3a3a;
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.search-results-container .no-results-msg {
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
    padding: 20px 0;
    font-size: 0.95rem;
}

.walker-section {
    padding: 64px 0 48px;
    background: url("Images/Section_Card.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.section-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 28px;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background-color: var(--color-primary-light);
    border-radius: 2px;
    margin-top: 8px;
}

.section-divider {
    border: none;
    border-top: 2px dashed var(--color-primary-light);
    margin: 48px 0;
    opacity: 0.5;
}

.walker-card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    animation: cardFadeIn 0.5s ease forwards;
}

.walker-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.top-rated-list .col:nth-child(1) .walker-card { animation-delay: 0.05s; }
.top-rated-list .col:nth-child(2) .walker-card { animation-delay: 0.15s; }
.top-rated-list .col:nth-child(3) .walker-card { animation-delay: 0.25s; }
.top-rated-list .col:nth-child(4) .walker-card { animation-delay: 0.35s; }
.top-rated-list .col:nth-child(5) .walker-card { animation-delay: 0.45s; }

.most-active-list .col:nth-child(1) .walker-card { animation-delay: 0.10s; }
.most-active-list .col:nth-child(2) .walker-card { animation-delay: 0.20s; }
.most-active-list .col:nth-child(3) .walker-card { animation-delay: 0.30s; }
.most-active-list .col:nth-child(4) .walker-card { animation-delay: 0.40s; }
.most-active-list .col:nth-child(5) .walker-card { animation-delay: 0.50s; }

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background-color: var(--color-border);
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.walker-card:hover .card-image-wrapper img {
    transform: scale(1.05);
}

.online-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--color-olive-dark);
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 2px rgba(82, 183, 136, 0.3);
}

.online-badge.is-offline {
    background-color: var(--color-text-muted);
    box-shadow: none;
}

.card-body-inner {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.walker-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.walker-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-primary-light);
    flex-shrink: 0;
}

.walker-avatar-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
    border: 2px solid var(--color-primary-light);
}

.walker-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
    line-height: 1.2;
}

.walker-location {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin: 0;
}

.walker-location i {
    font-size: 0.7rem;
}

.star-rating {
    display: flex;
    gap: 2px;
    align-items: center;
}

.star-rating i {
    font-size: 1rem;
    color: var(--color-star-empty);
}

.star-rating i.filled {
    color: var(--color-star-filled);
}

.star-rating i.half-filled {
    color: var(--color-star-filled);
}

.walker-description {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
    padding-top: 4px;
}

.btn-view-profile {
    font-size: 0.78rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 8px;
    border: 1.5px solid var(--color-primary);
    color: var(--color-primary);
    background-color: transparent;
    transition: var(--transition-smooth);
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
}

.btn-view-profile:hover {
    background-color: var(--color-primary);
    color: #ffffff;
}

.btn-contact {
    font-size: 0.78rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 8px;
    border: 1.5px solid var(--color-primary);
    color: #ffffff;
    background-color: var(--color-primary);
    transition: var(--transition-smooth);
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
}

.btn-contact:hover {
    background-color: var(--color-olive-light);
    border-color: var(--color-olive-light);
    color: #ffffff;
}

.skeleton-card {
    opacity: 1;
    transform: none;
    animation: none;
}

.skeleton-line {
    background: linear-gradient(90deg, #e8ede5 25%, #d5ddd0 50%, #e8ede5 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.4s infinite;
    border-radius: 6px;
    height: 14px;
    margin-bottom: 8px;
}

@keyframes skeletonShimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.about-section {
    position: relative;
    background: #F9F3E3;
    padding: 50px 0 80px;
    overflow: hidden;
}

.left-col {
    padding-top: 130px;
}

.about-card {
    background: #fff;
    border-radius: 22px;
    padding: 0 30px 36px 30px;
    position: relative;
}

.dog-img {
    float: left;
    width: 190px;
    margin-top: -150px;
    margin-left: -10px;
    position: relative;
    z-index: 4;
}

.about-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--color-primary-dark );
    clear: both;
    padding-top: 14px;
}

.about-text {
    font-size: 0.94rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.btn-walker {
    background: var(--color-primary-dark);
    color: #fff;
    border-radius: 8px;
    padding: 12px 32px;
    font-weight: 700;
    border: none;
}

.btn-walker:hover {
    background: var(--color-olive-dark);
}

.right-col {
    padding-top: 120px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.fi {
    border-radius: 12px;
    padding: 16px 24px;
}

.fi-header {
    background: var(--color-primary-dark);
    color: #fff;
    font-weight: 700;
}

.fi-light {
    background: var(--color-primary-light);
    color: #fff;
}
.how-section {
    padding: 72px 0 56px;
    background-color: var(--color-primary-light);
    position: relative;
    overflow: hidden;
}

.how-header {
    margin-bottom: 8px;
}

.how-subtitle {
    color: #fff;
    font-size: 1rem;
    margin-top: -12px;
    margin-bottom: 0;
}

.how-wave {
    position: absolute;
    top: 140px;
    left: 0;
    right: 0;
    height: 160px;
    pointer-events: none;
}

.how-wave svg {
    width: 100%;
    height: 100%;
}

.how-step-list {
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
    display: flex;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    z-index: 1;
}

.how-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.how-step--middle {
    margin-top: 56px;
}

.how-step__bubble {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--color-olive);
    box-shadow: var(--shadow-card);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.how-step:hover .how-step__bubble {
    background-color: var(--color-olive);
    color: #ffffff;
    border-color: var(--color-olive);
    transform: scale(1.08);
}

.how-step__body {
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 18px 20px;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.how-step:hover .how-step__body {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-3px);
}

.how-step__title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-olive);
    margin: 0 0 8px;
}

.how-step__desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 767px) {
    .how-step-list {
        flex-direction: column;
        gap: 20px;
    }

    .how-step--middle {
        margin-top: 0;
    }

    .how-wave {
        display: none;
    }

    .how-step {
        flex-direction: row;
        align-items: flex-start;
    }

    .how-step__bubble {
        margin-top: 4px;
    }
}

.main-footer {
    background-color: #3b4a2f;
    padding: 56px 0 0;
    color: rgba(255, 255, 255, 0.75);
}

.footer-logo {
    font-weight: 700;
    color: white;
    background-color: rgba(255,255,255,0.12);
    padding: 6px 14px;
    border-radius: 6px;
}

.footer-brand-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
}

.footer-social a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: white;
    text-decoration: none;
}

.footer-col-title {
    color: white;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.footer-nav-col a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.footer-nav-col a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 16px 0;
}

/* SCROLL ANIMACIJE */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-animate {
    opacity: 0;
}

.hero-animate.animate__animated {
    opacity: 1;
}
