body {
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

.container {
    margin-top: 50px;
    margin-bottom: 50px;
}

.card {
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 30px;
    background-color: #fff;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.card h3 {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
    color: #212529;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
    padding: 12px 0;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-facebook { background-color: #1877f2; color: #fff; }
.btn-facebook:hover { background-color: #145dbf; }

.btn-instagram { background-color: #e1306c; color: #fff; }
.btn-instagram:hover { background-color: #b62357; }

.btn-olx { background-color: #ff7f00; color: #fff; }
.btn-olx:hover { background-color: #cc6600; }

.btn-youtube { background-color: #ff0000; color: #fff; }
.btn-youtube:hover { background-color: #cc0000; }

.btn-telegram { background-color: #26a5de; color: #fff; }
.btn-telegram:hover { background-color: #1e87b5; }

.location {
    text-align: center;
    margin-top: 20px;
}

.location a {
    color: #ff5722;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.location a:hover {
    color: #e64a19;
}

@media (max-width: 767px) {
    .container { margin-top: 20px; margin-bottom: 20px; }
}
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    position: relative;
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #0d6efd;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #0d6efd;
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

@media (max-width: 991px) {
    .navbar-nav .nav-item {
        text-align: center;
        margin-bottom: 10px;
    }
}
#reviews .card:hover {
    transform: translateY(-3px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

#reviewForm .form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.rounded-4 {
    border-radius: 1rem !important;
}

.rounded-pill {
    border-radius: 50px !important;
}
