/* === GLOBAL STYLES === */
body {
    background-color: #f8f9fa;
    font-family: "Poppins", sans-serif;
}

a {
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

header h1 {
    letter-spacing: 1px;
}

footer {
    font-size: 0.9rem;
}

/* === SEO & PROFILE SECTIONS === */
#seo-section p {
    color: #444;
    line-height: 1.6;
}

#premium-profiles .card,
#new-profiles .card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

#premium-profiles .card:hover {
    transform: translateY(-3px);
}

#new-profiles .card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* === HEADER STYLING === */
.bg-gradient-dark {
    background: linear-gradient(135deg, #111 0%, #1a1a1a 40%, #2b2b2b 100%);
}

.navbar-brand span.text-warning {
    font-weight: 700;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: #eaeaea !important;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.2s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ffc107 !important;
    transform: translateY(-2px);
}

.navbar .btn-warning {
    border-radius: 25px;
    font-size: 0.9rem;
    transition: 0.3s ease-in-out;
}
.navbar .btn-warning:hover {
    background-color: #ffcd39;
    transform: translateY(-2px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background-color: #000;
}
.site-header.shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

/* === SIDEBAR STYLING (LEFT) === */
.sidebar-left {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 1.2rem;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Country link styles */
.country-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #f8f9fa;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    border: 1px solid transparent;
}
.country-link:hover {
    background: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(13, 110, 253, 0.25);
}
.country-link.active {
    background: #0d6efd;
    color: #fff;
}

/* City list + links */
.city-list {
    margin-top: 0.5rem;
}
.city-link {
    color: #555;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
}
.city-link:hover {
    background: #e9f2ff;
    color: #0d6efd;
}
.city-link.active {
    background: #0d6efd;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .country-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}
#search-section {
    background: linear-gradient(180deg, #fff, #f9fafc);
    border: 1px solid #e3e6ea;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

#search-section h4 {
    letter-spacing: 0.3px;
}

#search-section .form-select,
#search-section .btn {
    border-radius: 10px;
}

@media (max-width: 768px) {
    #search-section {
        padding: 1.5rem;
    }
}
.profile-header h2 {
    font-size: 1.8rem;
}

.profile-gallery img {
    transition: transform 0.3s ease;
}
.profile-gallery img:hover {
    transform: scale(1.05);
}

.profile-services .badge {
    background: #e9f2ff;
    color: #0d6efd;
    border-radius: 20px;
}
.contact-buttons .button {
    position: fixed;
    right: 20px;
    z-index: 9999;
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-buttons .call { bottom: 60px; }
.contact-buttons .telegram { bottom: 120px; }
.contact-buttons .whatsapp { bottom: 180px; }

.contact-buttons .button img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Hover effect */
.contact-buttons .button img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}