:root {
    --w-links: #0071BC;
    --w-headerbg: #ffffff;
    --w-bodybg: #fafafa;
    --w-error: #EA0311;
    --w-errorbg: #FFE0DB;
    --w-button: #0071BC;
    --bs-primary: #0071bc;
    --bs-primary-rgb: 0, 113, 188;
    --bs-blue: #0d6efd;
    --bs-gray: #6c757d;
}

:focus {
    outline: 3px solid red;
}

h1,
h2,
h3,
h4 {
    font-family: 'Russo One', sans-serif;
}

small {
    font-size: 75%;
}

/* Primary Buttons */
.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn-primary:hover {
    background-color: #005a96;
    border-color: #005a96;
}

/* Outline Primary Buttons */
.btn-outline-primary {
    color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn-outline-primary:hover {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.text-primary {
    color: var(--bs-primary) !important;
}

/* Carousel Styles */
.carousel-container {
    width: 100%;
    max-width: none;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.carousel-container .carousel-inner img {
    object-fit: cover;
    width: 100%;
    height: 400px;
}

@media (max-width: 768px) {
    .carousel-container .carousel-inner img {
        height: 220px;
    }
}

/* Header & Navigation */
.header {
    padding: 1rem 2rem;
    background: var(--w-headerbg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
    height: 40px;
    width: auto;
}

.nav-link {
    color: #0056b3;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #003d82;
}

/* Search */
.search-container {
    max-width: 400px;
    width: 100%;
}

.search-input {
    border-radius: 20px;
    padding-left: 1rem;
    border: 1px solid #ddd;
}

.search-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.25);
    border-color: #0056b3;
}

/* maps */
#map {
    width: 100%;
    height: 400px;
    border-radius: 0.375rem;
    position: relative;
}

.card-body {
    background: transparent;
}

.location-button {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    z-index: 1000;
    background: white;
    border: 2px solid var(--bs-blue);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    padding: 0;
    overflow: hidden;
}

.location-button:hover {
    background-color: var(--bs-blue);
}

.location-button:hover i {
    color: white;
}

.location-button i {
    color: var(--bs-blue);
    font-size: 1.2rem;
    transition: color 0.2s;
}

.poi-item {
    cursor: pointer;
    transition: all 0.2s;
}

.poi-item:hover {
    background-color: rgba(13, 110, 253, 0.1);
}

.poi-item.active {
    background-color: rgba(13, 110, 253, 0.2);
    border-left: 4px solid var(--bs-blue);
}

.info-window {
    min-width: 200px;
    max-width: 300px;
}

.pt-header {
    cursor: pointer;
    transition: background-color 0.2s;
}

.pt-header:hover {
    background-color: rgba(13, 110, 253, 0.05);
}

.expand-icon {
    transition: transform 0.2s;
    color: var(--bs-gray);
}

.expand-icon.rotated {
    transform: rotate(180deg);
}

.session-item:last-child {
    border-bottom: none !important;
}

.collapse {
    transition: height 0.3s ease;
    overflow: hidden;
}

.collapse.show {
    height: auto;
}

#pt-search {
    background-color: rgba(255, 255, 255, 0.9);
    transition: background-color 0.2s;
}

#pt-search:focus {
    background-color: white;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.input-group-text {
    background-color: rgba(255, 255, 255, 0.9);
}

/* client profile */
.profile-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.profile-pic-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-size: 3rem;
    color: #6c757d;
}

.achievement-card {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
    border: none;
    border-radius: 15px;
}

.activity-item {
    border-left: 3px solid #0071bc;
    padding-left: 1rem;
    margin-bottom: 1rem;
}

.friendship-btn {
    min-width: 140px;
}