html, body {
    background-color: red;
    height: 100%;
    margin: 0;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

* {
    font-family: 'Garamond', serif;
}

/*   HEADER SECTION   */
.images-section {
    height: 700px;
    position: relative;
    overflow: hidden;
}

.images-section-slider {
    height: 100%;
    position: relative;
}

.images-section-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.images-section-slide.active {
    opacity: 1;
}

.images-section-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
    rgba(0, 0, 0, 0.4),
    transparent,
    rgba(0, 0, 0, 0.4));
}

.slide-content {
    position: absolute;
    bottom: 25%;
    left: 80px;
    color: white;
    max-width: 600px;
}

.slide-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s forwards;
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s 0.2s forwards;
}

/*   HEADER SECTION END   */


/*   TOUR SELECT SECTION   */
.tour-selector {
    margin-top: -80px;
    position: relative;
    z-index: 10;

}

.selector-card {
    background-color: rgba(255, 255, 255, 0.67);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* pentru Safari */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    padding: 30px;
    text-align: center;
}

.selector-card h2 {
    font-weight: 500;
}

@media screen and (max-width: 500px) {
    .selector-card h2 {
        font-size: 1.5em;
        font-weight: 600;
    }
}

.search-grid {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.search-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-item label {
    font-size: 14px;
    color: var(--text-light);
}

.search-item select,
.search-item input {
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.search-item select:focus,
.search-item input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/*   TOUR SELECT SECTION END   */


/*   RECOMMENDATION SECTION   */
.recommendation {
    padding: 100px 0;
    background: linear-gradient(to bottom, white, var(--bg-light));
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-light);
    font-size: 18px;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.experience-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 20px;
}

/*   RECOMMENDATION SECTION END   */


/*   STATS SECTION   */
.stats {
    background-color: var(--indigo);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
    color: white;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 40px;
    font-weight: bold;
    margin: 10px 0;
}

/*   STATS SECTION END   */


/* REVIEWS SECTIONS */

.reviews-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    --card-height: 400px;
}

.reviews-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: var(--card-height);
}

.review-card {
    width: 100%;
    max-width: 800px;
    height: var(--card-height);
    margin: 0 auto;
    background: white;
    overflow: hidden;
    display: none;
}

.review-card.active {
    display: flex;
    animation: fadeIn 0.3s ease-in-out;
}

.review-image {
    width: 50%;
    position: relative;
    background: #f3f4f6;
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-counter {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: background-color 0.3s;
}

.image-counter:hover {
    background: rgba(0, 0, 0, 0.9);
}

.icon {
    width: 16px;
    height: 16px;
}

.review-content {
    width: 50%;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.review-content h2 {
    font-size: 24px;
    color: #1F2937;
    margin: 0 0 12px 0;
}

.location {
    font-size: 16px;
    color: #005fe7;
    margin-bottom: 16px;
}

.description-container {
    position: relative;
    flex-grow: 1;
    overflow: hidden;
}

.description {
    margin: 0;
    color: #6B7280;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.description.expanded {
    -webkit-line-clamp: unset;
}

.location-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-container span {
    color: blue;
}

.location-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border-radius: 50%;
    background: #f3f4f6;
    transition: background-color 0.2s;
}

.location-button:hover {
    background: #e5e7eb;
}

.location-icon {
    width: 20px;
    height: 20px;
    color: #4b5563;
}

.see-location-btn {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--indigo-shadow);
    border-radius: 0.375rem;
    color: #374151;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.see-location-btn:hover {
    background-color: #e5e7eb;
}

.see-location-btn .arrow-icon {
    width: 1rem;
    height: 1rem;
}

.date {
    color: #9CA3AF;
    font-size: 14px;
    margin-top: 16px;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.35);
}

.nav-button:hover {
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nav-icon {
    width: 24px;
    height: 24px;
    stroke: #4B5563;
}

.nav-button.prev {
    left: 20px;
}

.nav-button.next {
    right: 20px;
}

.review-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D1D5DB;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #4B5563;
    transform: scale(1.2);
}

/* Gallery Modal Styles */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    padding: 40px;
}

.gallery-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    z-index: 1001;
}

.gallery-content {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.gallery-main {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-main img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 20px;
    overflow-x: auto;
}

.gallery-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
    border: 2px solid transparent;
}

.gallery-thumbnail.active {
    opacity: 1;
    border-color: white;
}

.gallery-nav {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    padding: 20px;
    cursor: pointer;
    font-size: 24px;
    transition: background-color 0.3s;
}

.gallery-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .reviews-section {
        --card-height: auto;
        padding: 15px;
    }

    .review-card {
        flex-direction: column;
        height: auto;
    }

    .review-image,
    .review-content {
        width: 100%;
    }

    .review-image {
        height: 200px;
    }

    .description {
        -webkit-line-clamp: 4;
    }

    .nav-button {
        bottom: 20px;
        top: auto;
    }

    .nav-button.prev {
        transform: translateY(15px);
        margin-bottom: 30px;
        left: calc(50% - 60px);
    }

    .nav-button.next {
        transform: translateY(15px);
        margin-bottom: 30px;
        right: calc(50% - 60px);
    }

    .gallery-content {
        flex-direction: column;
        height: auto;
    }

    .review-dots {
        transform: translateY(30px);
        margin-bottom: 20px;
    }

    .gallery-nav {
        display: none;
    }
}

@media (hover: none) {
    .nav-button {
        opacity: 1;
    }
}

@supports (-webkit-touch-callout: none) {
    /* iOS fix for smooth scrolling */
    .reviews-container {
        -webkit-overflow-scrolling: touch;
    }
}

/*   REVIEWS SECTION END   */


/*   SHARE EXPERIENCE   */
.processing-modal .modal-content {
    max-width: 450px;
    text-align: center;
    padding: 50px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: translateY(20px);
    animation: modalSlideUp 0.5s ease forwards;
}

.processing-animation {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 32px;
}

/* Orbiting circles animation */
.orbit-spinner {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: orbitRotate 4s linear infinite;
}

.orbit {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-radius: 50%;
}

.orbit:nth-child(1) {
    border-top-color: #10b981;
    animation: orbit1 2s linear infinite;
}

.orbit:nth-child(2) {
    border-right-color: #3b82f6;
    animation: orbit2 2.5s linear infinite;
}

.orbit:nth-child(3) {
    border-bottom-color: #8b5cf6;
    animation: orbit3 3s linear infinite;
}

/* Center icon */
.center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
}

.center-icon i {
    color: white;
    font-size: 28px;
    animation: iconBounce 2s ease-in-out infinite;
}

/* Title styling */
.processing-title {
    color: #374151;
    font-size: 26px;
    margin: 0 0 20px;
    font-weight: 600;
}

.text-gradient {
    background: linear-gradient(135deg, #10b981, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 6s linear infinite;
}

/* Progress dots */
.progress-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #e5e7eb;
}

.dot:nth-child(1) {
    animation: dotPulse 1.5s ease-in-out infinite;
}

.dot:nth-child(2) {
    animation: dotPulse 1.5s ease-in-out infinite 0.5s;
}

.dot:nth-child(3) {
    animation: dotPulse 1.5s ease-in-out infinite 1s;
}

/* Animations */
@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes orbitRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes orbit1 {
    from {
        transform: rotate(120deg);
    }
    to {
        transform: rotate(480deg);
    }
}

@keyframes orbit2 {
    from {
        transform: rotate(240deg);
    }
    to {
        transform: rotate(600deg);
    }
}

@keyframes orbit3 {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(720deg);
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes dotPulse {
    0% {
        transform: scale(1);
        background-color: #e5e7eb;
    }
    50% {
        transform: scale(1.5);
        background-color: #10b981;
    }
    100% {
        transform: scale(1);
        background-color: #e5e7eb;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .processing-modal .modal-content {
        max-width: 90%;
        padding: 30px;
    }

    .processing-animation {
        width: 120px;
        height: 120px;
    }

    .processing-title {
        font-size: 22px;
    }
}

/* Modal & Main Button Styles */
.floating-share-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--indigo);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 999;
}

.floating-share-btn:hover {
    transform: scale(1.1);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal-content {
    position: relative;
    background: white;
    margin: 2rem auto;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-body {
    padding: 2rem;
}

.close {
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.drag-drop-area {
    border: 2px dashed var(--indigo);
    padding: 20px;
    border-radius: 10px;
    background-color: white;
    cursor: pointer;
    width: 300px;
    margin: 20px auto;
    position: relative;
    transition: all 0.3s ease;
}

.drag-drop-area.dragover {
    border-color: #2196F3;
    background-color: #E3F2FD;
}

.drag-drop-area p {
    margin: 10px 0;
    text-align: center;
    color: var(--indigo);
}

.file-input {
    display: none;
}

.image-preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.image-preview {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
}

.image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.categories-section {
    margin: 20px 0;
}

.category-hint {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
}

.category-item {
    position: relative;
}

.category-checkbox {
    display: none;
}

.category-label {
    display: block;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-label:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.category-checkbox:checked + .category-label {
    border-color: #4CAF50;
    background-color: #f0f9f0;
}

.category-name {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.category-description {
    display: block;
    font-size: 0.9em;
    color: #666;
}

/* Custom scrollbar for categories */
.categories-grid::-webkit-scrollbar {
    width: 8px;
}

.categories-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.categories-grid::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.categories-grid::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.image-preview .delete-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.upload-icon {
    font-size: 40px;
    color: var(--indigo);
    margin-bottom: 10px;
}

.mobile-text {
    display: none;
}

@media (max-width: 768px) {
    .desktop-text {
        display: none;
    }

    .mobile-text {
        display: block;
    }
}

/* Steps Progress */
.steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #eee;
    transform: translateY(-50%);
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    background: white;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #666;
}

.step.active {
    color: var(--indigo);
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.step.active .step-number {
    background: var(--indigo);
    color: white;
}

/* Form Elements */
.form-group {
    margin-bottom: 1.5rem;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    border-color: var(--indigo);
    outline: none;
}

input.error,
textarea.error {
    border-color: #ff4444;
}

textarea {
    min-height: 100px;
    resize: vertical;
}

/* Location Button */
.location-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--indigo);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

.location-btn:hover {
    background: #3557a0;
}

.location-btn.success {
    background: #28a745;
}

.location-btn.error {
    background: #dc3545;
}

/* Upload Area Styles */
.upload-area {
    width: 100%;
    max-width: 25rem;
    background-color: var(--clr-white);
    box-shadow: 0 10px 60px rgb(218, 229, 255);
    border: 2px solid var(--clr-light-blue);
    border-radius: 24px;
    padding: 2rem 1.875rem 5rem 1.875rem;
    margin: 0.625rem auto;
    text-align: center;
}

.upload-area--open {
    animation: slidDown 500ms ease-in-out;
}

.floating-share-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 1000;
    transition: transform 0.2s;
}

.floating-share-btn:hover {
    transform: scale(1.1);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 90%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

.modal-content {
    position: relative;
    background: white;
    margin: 20px auto;
    padding: 0;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    color: #333;
}

.close {
    font-size: 28px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
}

.modal-body {
    padding: 20px;
}

.steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #eee;
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    background: white;
    width: 33.33%;
    text-align: center;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #eee;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 5px;
    transition: all 0.3s;
}

.step.active .step-number {
    background: #4CAF50;
    color: white;
}

.step-title {
    font-size: 14px;
    color: #666;
}

.step.active .step-title {
    color: #4CAF50;
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.next-btn, .submit-btn {
    background: #4CAF50;
    color: white;
}

.prev-btn {
    background: #666;
    color: white;
}

.location-btn {
    background: #2196F3;
    color: white;
    width: 100%;
}

.location-btn.success {
    background: #4CAF50;
}

.location-btn.error {
    background: #f44336;
}

.preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.image-preview {
    position: relative;
    width: 150px;
    height: 150px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.delete-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 24px;
    height: auto;
    background: rgba(255, 0, 0, 0.8);
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.delete-btn:hover {
    background: rgba(255, 0, 0, 1);
}

.upload-area {
    position: relative;
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s;
}

.upload-area:hover {
    border-color: #4CAF50;
}

.upload-area input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.upload-text {
    color: #666;
}

.upload-text i {
    font-size: 48px;
    margin-bottom: 10px;
    color: #4CAF50;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

@keyframes slidDown {
    from {
        height: 28.125rem;
    }
    to {
        height: 35rem;
    }
}

/* Upload Area Header */
.upload-area__title {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 0.3125rem;
}

.upload-area__paragraph {
    font-size: 0.9375rem;
    color: var(--clr-light-gray);
    margin-top: 0;
}

.upload-area__tooltip {
    position: relative;
    color: var(--clr-light-blue);
    cursor: pointer;
    transition: color 300ms ease-in-out;
}

.upload-area__tooltip:hover {
    color: var(--clr-blue);
}

.upload-area__tooltip-data {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -125%);
    min-width: max-content;
    background-color: var(--clr-white);
    color: var(--clr-blue);
    border: 1px solid var(--clr-light-blue);
    padding: 0.625rem 1.25rem;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: none 300ms ease-in-out;
    transition-property: opacity, visibility;
}

.upload-area__tooltip:hover .upload-area__tooltip-data {
    opacity: 1;
    visibility: visible;
}

/* Drop Zone */
.upload-area__drop-zoon {
    position: relative;
    height: 11.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 2px dashed var(--clr-light-blue);
    border-radius: 15px;
    margin-top: 2.1875rem;
    cursor: pointer;
    transition: border-color 300ms ease-in-out;
}

.upload-area__drop-zoon:hover {
    border-color: var(--clr-blue);
}

.drop-zoon__icon {
    display: flex;
    font-size: 3.75rem;
    color: var(--clr-blue);
    transition: opacity 300ms ease-in-out;
}

.drop-zoon__paragraph {
    font-size: 0.9375rem;
    color: var(--clr-light-gray);
    margin: 0;
    margin-top: 0.625rem;
    transition: opacity 300ms ease-in-out;
}

.drop-zoon:hover .drop-zoon__icon,
.drop-zoon:hover .drop-zoon__paragraph {
    opacity: 0.7;
}

.drop-zoon__loading-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    color: var(--clr-light-blue);
    z-index: 10;
}

.drop-zoon__preview-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: auto;
    object-fit: contain;
    padding: 0.3125rem;
    border-radius: 10px;
    display: none;
    z-index: 1000;
    transition: opacity 300ms ease-in-out;
}

.drop-zoon:hover .drop-zoon__preview-image {
    opacity: 0.8;
}

.drop-zoon__file-input {
    display: none;
}

/* Drop Zone States */
.drop-zoon--over {
    border-color: var(--clr-blue);
}

.drop-zoon--over .drop-zoon__icon,
.drop-zoon--over .drop-zoon__paragraph {
    opacity: 0.7;
}

.drop-zoon--Uploaded .drop-zoon__icon,
.drop-zoon--Uploaded .drop-zoon__paragraph {
    display: none;
}

/* File Details */
.upload-area__file-details {
    height: 0;
    visibility: hidden;
    opacity: 0;
    text-align: left;
    transition: none 500ms ease-in-out;
    transition-property: opacity, visibility;
    transition-delay: 500ms;
}

.file-details--open {
    height: auto;
    visibility: visible;
    opacity: 1;
}

.file-details__title {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--clr-light-gray);
}

/* Uploaded File */
.uploaded-file {
    display: flex;
    align-items: center;
    padding: 0.625rem 0;
    visibility: hidden;
    opacity: 0;
    transition: none 500ms ease-in-out;
    transition-property: visibility, opacity;
}

.uploaded-file--open {
    visibility: visible;
    opacity: 1;
}

.uploaded-file__icon-container {
    position: relative;
    margin-right: 0.3125rem;
}

.uploaded-file__icon {
    font-size: 3.4375rem;
    color: var(--clr-blue);
}

.uploaded-file__icon-text {
    position: absolute;
    top: 1.5625rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--clr-white);
}

.uploaded-file__info {
    position: relative;
    top: -0.3125rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.uploaded-file__info::before,
.uploaded-file__info::after {
    content: '';
    position: absolute;
    bottom: -0.9375rem;
    width: 0;
    height: 0.5rem;
    background-color: #ebf2ff;
    border-radius: 0.625rem;
}

.uploaded-file__info::before {
    width: 100%;
}

.uploaded-file__info::after {
    width: 100%;
    background-color: var(--clr-blue);
}

/* Progress Animation */
.uploaded-file__info--active::after {
    animation: progressMove 800ms ease-in-out;
    animation-delay: 300ms;
}

@keyframes progressMove {
    from {
        width: 0%;
        background-color: transparent;
    }
    to {
        width: 100%;
        background-color: var(--clr-blue);
    }
}

.uploaded-file__name {
    width: 100%;
    max-width: 6.25rem;
    display: inline-block;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.uploaded-file__counter {
    font-size: 1rem;
    color: var(--clr-light-gray);
}


.upload-area {
    position: relative;
    width: 100%;
    min-height: 150px;
    border: 2px dashed #ccc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    transition: all 0.3s ease;
    cursor: pointer;
}

.upload-area:hover,
.upload-area.dragover {
    border-color: #2196F3;
    background: #e3f2fd;
}

.file-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.upload-content {
    position: relative;
    z-index: 1;
    pointer-events: none;
}

.upload-text {
    text-align: center;
    color: #666;
}

.upload-text i {
    font-size: 48px;
    margin-bottom: 10px;
    color: #2196F3;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .upload-area {
        min-height: 120px;
        padding: 15px;
    }

    .upload-text i {
        font-size: 36px;
    }

    .upload-text p {
        font-size: 14px;
        margin: 0;
        padding: 10px;
    }
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 1rem;
}

.nav-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s;
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#prevBtn {
    background: #eee;
    color: #666;
}

#nextBtn,
#submitBtn {
    background: var(--indigo);
    color: white;
}

#nextBtn:hover,
#submitBtn:hover {
    background: #3557a0;
}

/* Step Content Display */
.step-content {
    display: none;
}

.step-content.active {
    display: block;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal.show {
    display: block;
    animation: fadeIn 0.3s;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 1rem auto;
    }

    .upload-area {
        max-width: 100%;
    }
}

.location-search {
    position: relative;
}

.suggestions-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
    border-radius: 0 0 4px 4px;
}

.suggestion-item {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: #f5f5f5;
}

.location-options {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.location-btn, .map-btn {
    flex: 1;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

#mapContainer {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.loading {
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

/*   SHARE EXPERIENCE END   */


/*   MAP SECTION   */
.map-section {
    height: 83vh;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

/*   MAP SECTION END   */


/*   LOCATIONS PAGE   */
.locations-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    margin-top: 65px;
}

/* Header Modern & Fresh */
.locations-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(3, 113, 24, 0.05) 0%, rgba(3, 113, 24, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.locations-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--locations-primary), transparent);
}

.locations-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--locations-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.locations-header h2 {
    font-size: 1.25rem;
    color: var(--locations-gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* Filter Section */
.locations-filter-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border: 1px solid var(--locations-gray-200);
    box-shadow: var(--locations-shadow-md);
    position: relative;
}

.locations-filter-chips {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.locations-filter-chip {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid var(--locations-primary);
    color: var(--locations-primary);
    font-weight: 500;
    cursor: pointer;
    transition: var(--locations-transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.locations-filter-chip:hover {
    background: var(--locations-primary);
    color: white;
    transform: translateY(-2px);
}

.locations-filter-chip.active {
    background: var(--locations-primary);
    color: white;
}

.locations-filter-chip svg {
    width: 18px;
    height: 18px;
    transition: var(--locations-transition-fast);
}

.locations-filter-chip.hidden {
    display: none;
}

.show-more-categories {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: none;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    cursor: pointer;
    color: #4b5563;
    transition: all 0.2s;
}

.show-more-categories:hover {
    background: #f3f4f6;
}

.show-more-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s;
}

.show-more-categories.expanded .show-more-icon {
    transform: rotate(180deg);
}

.visible-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.locations-advanced-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--locations-gray-100);
}

.locations-filter-select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--locations-gray-200);
    background: white;
    color: var(--locations-gray-700);
    font-size: 1rem;
    transition: var(--locations-transition-fast);
    cursor: pointer;
    appearance: none;
}

.locations-filter-select:hover,
.locations-filter-select:focus {
    border-color: var(--locations-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(3, 113, 24, 0.1);
}

/* Locations Grid */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.locations-card {
    background: white;
    position: relative;
    transition: var(--locations-transition-fast);
    overflow: hidden;
    border: 1px solid var(--locations-gray-200);
    box-shadow: var(--locations-shadow-sm);
}

.locations-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--locations-shadow-lg);
    border-color: var(--locations-primary);
}

/* Card Image Styles */
.locations-card-image-container {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.locations-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--locations-transition-slow);
}

.locations-card:hover .locations-card-image {
    transform: scale(1.1);
}

.locations-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to bottom,
            transparent 0%,
            rgba(3, 113, 24, 0.05) 50%,
            rgba(3, 113, 24, 0.2) 100%
    );
    opacity: 0;
    transition: var(--locations-transition-fast);
}

.locations-card:hover .locations-card-overlay {
    opacity: 1;
}

/* Card Content Styles */
.locations-card-content {
    padding: 2rem;
    background: white;
}

.locations-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--locations-primary);
    margin-bottom: 1rem;
    transition: var(--locations-transition-fast);
}

.locations-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.locations-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--locations-gray-500);
    font-size: 0.95rem;
}

.locations-rating {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 1rem;
    background: rgba(3, 113, 24, 0.1);
    color: var(--locations-primary);
    font-weight: 600;
    transition: var(--locations-transition-fast);
}

.locations-card:hover .locations-rating {
    background: var(--locations-primary);
    color: white;
}

.locations-badge {
    padding: 0.5rem 1.25rem;
    background: var(--locations-gray-100);
    border: 1px solid var(--locations-gray-200);
    color: var(--locations-gray-500);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--locations-transition-fast);
}

.locations-badge:hover {
    background: var(--locations-primary);
    color: white;
    border-color: var(--locations-primary);
}

.locations-card-description {
    color: var(--locations-gray-500);
    font-size: 1rem;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Loading State */
.locations-loading {
    display: none;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    background: white;
    border: 1px solid var(--locations-gray-200);
    box-shadow: var(--locations-shadow-sm);
    gap: 1rem;
    color: var(--locations-primary);
}

.locations-loading.active {
    display: flex;
}

.locations-loading svg {
    animation: locations-spin 1s linear infinite;
}

@keyframes locations-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Animations */
@keyframes locations-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes locations-scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.locations-card {
    animation: locations-scaleIn 0.6s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .locations-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .locations-header h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .locations-container {
        padding: 1rem;
        margin-top: 100px;
    }

    .locations-header {
        padding: 4rem 1rem;
        margin-bottom: 2rem;
    }

    .locations-header h1 {
        font-size: 2.5rem;
    }

    .locations-filter-chips {
        gap: 0.75rem;
    }

    .locations-filter-chip {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .locations-card-image-container {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .locations-header h1 {
        font-size: 2rem;
    }


    .locations-container {
        padding: 1rem;
        margin-top: 100px;
    }

    .locations-filter-section {
        padding: 1rem;
    }

    .locations-advanced-filters {
        padding: 1rem;
    }

    .locations-card-content {
        padding: 1.5rem;
    }

    .locations-card-title {
        font-size: 1.5rem;
    }
}

/* Hover Effects și Interactivity */
.locations-filter-chip:active {
    transform: scale(0.95);
}

.locations-card::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 1;
}

.locations-card:hover::after {
    opacity: 1;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--locations-gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--locations-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--locations-primary-hover);
}

/* Focus States */
.locations-filter-chip:focus,
.locations-filter-select:focus,
.locations-badge:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(3, 113, 24, 0.2);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/*   LOCATIONS PAGE END   */


/*   LOCATION PAGE   */
.location-detail {
    max-width: 1400px;
    margin: 80px auto 0;
    padding: 2rem;
}

.img-header {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.img-gallery-main {
    height: 100%;
    cursor: pointer;
}

.img-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-gallery-thumbnails {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.33);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(10px);
}

.img-gallery-thumbnail {
    width: 60px;
    height: 60px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.img-gallery-thumbnail.active {
    border-color: var(--locations-indigo);
}

.img-gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Modal Styles */
.img-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    padding: 20px;
}

.img-modal-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-modal-content img {
    max-height: 90vh;
    max-width: 90vw;
    object-fit: contain;
}

.img-modal-close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
}

.img-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 16px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.img-modal-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.img-prev {
    left: 20px;
}

.img-next {
    right: 20px;
}

.location-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.location-main {
    background: white;
    padding: 2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.location-title {
    font-size: 2.5rem;
    color: var(--locations-indigo);
    margin-bottom: 1rem;
}

.location-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--locations-gray-200);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--locations-gray-500);
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(3, 113, 24, 0.1);
    color: var(--locations-indigo);
    font-weight: bold;
}

.rating-stars {
    color: gold;
}

.location-description {
    color: var(--locations-gray-700);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.location-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--locations-gray-100);
    color: var(--locations-gray-700);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--locations-gray-200);
}

.location-sidebar {
    position: sticky;
    top: 100px;
    background: white;
    padding: 2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.location-map-container {
    height: 300px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.sidebar-section {
    margin-bottom: 2rem;
}

.sidebar-title {
    font-size: 1.2rem;
    color: var(--locations-indigo);
    margin-bottom: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--locations-gray-700);
    transition: var(--locations-transition-fast);
}

.contact-item:hover {
    color: var(--locations-indigo);
}

.review-section {
    margin-top: 3rem;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.write-review-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    background-color: var(--locations-indigo);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.write-review-btn:hover {
    background-color: var(--locations-primary-hover);
    transform: scale(1.05);
}

.review-list {
    display: grid;
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-2px);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.author-name {
    font-weight: bold;
    color: var(--locations-gray-700);
}

.review-content {
    color: var(--locations-gray-700);
    line-height: 1.6;
}

.review-date {
    color: var(--locations-gray-500);
    font-size: 0.9rem;
    margin-top: 1rem;
}

@media screen and (max-width: 768px) {
    .location-container {
        padding: 1rem;
        margin-top: 100px;
    }

    .location-content {
        grid-template-columns: 1fr;
    }

    .location-header {
        height: 300px;
    }

    .location-title {
        font-size: 2rem;
    }

    .location-meta {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .review-header {
        flex-direction: column;
        gap: 1rem;
    }

    .write-review-btn {
        width: 100%;
    }
}

/*   LOCATION PAGE END   */


/*   INFO MODAL SECTION   */
.info-modal {
    z-index: 9999;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-modal.show {
    display: flex;
    animation: infoModalFadeIn 0.5s ease forwards;
}

.info-modal-content {
    height: fit-content;
    background: white;
    margin: auto;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: scale(0.8);
    opacity: 0;
    position: relative;
}

.info-modal.show .info-modal-content {
    animation: infoModalContentShow 0.5s ease 0.1s forwards;
}

.info-modal-body {
    padding: 2.5rem;
    text-align: center;
}

.info-illustration {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

.info-hero-icon {
    position: relative;
    font-size: 3rem;
    color: var(--indigo);
    z-index: 2;
    animation: infoIconFloat 3s ease infinite;
}

.info-circles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.info-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--indigo);
    opacity: 0.2;
}

.info-circle-1 {
    width: 100%;
    height: 100%;
    animation: infoCircleScale 2s ease infinite;
}

.info-circle-2 {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    animation: infoCircleScale 2s ease infinite 0.3s;
}

.info-circle-3 {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    animation: infoCircleScale 2s ease infinite 0.6s;
}

.info-modal-body h2 {
    font-size: 1.8rem;
    color: var(--indigo);
    margin-bottom: 1rem;
}

.info-modal-body p {
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.info-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--indigo);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.info-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(3, 113, 24, 0.2);
}

.info-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 1.5rem;
    color: var(--gray-500);
    cursor: pointer;
    transition: all 0.3s ease;
}

.info-close:hover {
    color: var(--gray-700);
    transform: rotate(90deg);
}

@keyframes infoModalFadeIn {
    to {
        opacity: 1;
    }
}

@keyframes infoModalContentShow {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes infoIconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes infoCircleScale {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
}

@media (max-width: 768px) {
    .info-modal-content {
        top: 10%;
        width: 95%;
        margin: 1rem;
    }

    .info-modal-body {
        padding: 2rem 1.5rem;
    }
}

/*   INFO MODAL SECTION END   */


/*   REVIEWS PAGE   */
/* Stil general și variabile */
.location-chat-page {
    max-width: 1400px;
    margin: 30px auto 0;
    margin-top: 100px;
    padding: 20px;
    font-family: 'Garamond', serif;
    background: white;
    z-index: 9999999;
}

/* Header și galerie */
.review-location-header {
    position: relative;
    margin-bottom: 2rem;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--indigo-shadow);
}

.review-main-image {
    position: relative;
    height: 400px;
}

.review-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.image-details h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.location-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.location-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    font-size: 0.9rem;
}

.thumbnail-strip {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 0 0 15px 15px;
}

.thumbnail {
    opacity: 0.6;
    cursor: pointer;
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail:hover {
    transform: translateY(-2px);
}

.thumbnail.active {
    opacity: 1;
    border-color: var(--indigo);
}

/* Chat Layout */
.chat-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    margin-top: 2rem;
    width: 97%;
    margin-left: auto;
    margin-right: auto;
}

.chat-container {
    background: white;
    border-radius: 2px;
    box-shadow: 0 4px 20px var(--indigo-shadow);
    display: flex;
    flex-direction: column;
    height: 600px;
}

.messages-section {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

/* Mesaje */
.system-message {
    text-align: center;
    margin: 1rem 0;
    padding: 0.75rem;
    background: rgba(3, 113, 24, 0.1);
    border-radius: 12px;
    color: var(--indigo);
    font-size: 0.9rem;
}

.message-group {
    margin: 2rem 0;
}

.timestamp {
    text-align: center;
    margin: 2rem 0;
    position: relative;
    color: #666;
}

.timestamp::before,
.timestamp::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 100px;
    height: 1px;
    background: #eee;
}

.timestamp::before {
    right: calc(50% + 3rem);
}

.timestamp::after {
    left: calc(50% + 3rem);
}

.chat-message {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.message-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.message-bubble {
    flex-grow: 1;
    max-width: 80%;
}

.message-info {
    margin-bottom: 0.5rem;
}

.author {
    font-weight: 600;
    color: var(--indigo);
}

.time {
    font-size: 0.8rem;
    color: #666;
    margin-left: 0.5rem;
}

.message-text {
    background: var(--locations-gray-100);
    padding: 1rem;
    border-radius: 2px;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.message-images {
    display: flex;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.message-image {
    border-radius: 8px;
    max-width: 200px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.message-image:hover {
    transform: scale(1.05);
}

.message-actions {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.action-btn {
    background: none;
    border: none;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    color: var(--indigo);
}

/* Input Box */
.chat-input-box {
    padding: 1.5rem;
    border-top: 1px solid #eee;
}

.input-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--locations-gray-100);
    padding: 0.75rem;
    border-radius: 30px;
}

.input-action {
    background: none;
    border: none;
    color: #666;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-action:hover {
    color: var(--indigo);
}

.message-input {
    flex-grow: 1;
    border: none;
    background: none;
    outline: none;
    padding: 0.5rem;
    font-size: 1rem;
}

.send-button {
    background: var(--indigo);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-button:hover {
    transform: scale(1.1);
}

.input-tips {
    text-align: center;
    color: #666;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* Participants Sidebar */
.participants-sidebar {
    background: white;
    border-radius: 2px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px var(--indigo-shadow);
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.online-count {
    color: var(--indigo);
    font-weight: 500;
}

.participant {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.participant:hover {
    background: var(--locations-gray-100);
}

.participant-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.participant-info {
    flex-grow: 1;
}

.participant-name {
    display: block;
    font-weight: 500;
    color: var(--locations-gray-700);
}

.participant-status {
    font-size: 0.8rem;
    color: var(--locations-gray-500);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
}

.status-dot.online {
    background: #4CAF50;
}

/* Animații */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .location-chat-page {
        margin-top: 100px;
        padding: 15px;
    }

    .chat-wrapper {
        grid-template-columns: 1fr 250px;
    }
}

@media (max-width: 992px) {
    .chat-wrapper {
        grid-template-columns: 1fr;
    }

    .participants-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .review-location-header {
        margin-bottom: 1rem;
    }

    .review-main-image {
        height: 300px;
    }

    .image-details h1 {
        font-size: 2rem;
    }

    .location-badges {
        flex-wrap: wrap;
    }

    .thumbnail-strip {
        overflow-x: auto;
        padding: 0.75rem;
    }

    .thumbnail {
        min-width: 80px;
        height: 60px;
    }

    .chat-container {
        height: 500px;
    }

    .message-bubble {
        max-width: 90%;
    }

    .message-images {
        flex-direction: column;
    }

    .message-image {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .location-badge {
        padding: 0.35rem 0.75rem;
        font-size: 0.8rem;
    }

    .chat-message {
        gap: 0.5rem;
    }

    .message-avatar {
        width: 32px;
        height: 32px;
    }

    .message-text {
        padding: 0.75rem;
        font-size: 0.95rem;
    }

    .input-wrapper {
        padding: 0.5rem;
    }
}

/* Scrollbar personalizat */
.messages-section::-webkit-scrollbar {
    width: 6px;
}

.messages-section::-webkit-scrollbar-track {
    background: var(--locations-gray-100);
}

.messages-section::-webkit-scrollbar-thumb {
    background: var(--indigo);
    border-radius: 3px;
}

.messages-section::-webkit-scrollbar-thumb:hover {
    background: var(--locations-gray-200);
}

/* Efecte hover și focus */
.message-input:focus {
    background: rgba(255, 255, 255, 0.5);
}

.send-button:active {
    transform: scale(0.95);
}

.action-btn:active {
    transform: scale(0.95);
}

/* Tooltip pentru acțiuni */
[data-tooltip] {
    position: relative;
}

[data-tooltip]:before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 0.75rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 0.8rem;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

[data-tooltip]:hover:before {
    opacity: 1;
    visibility: visible;
}

/* Stări de loading */
.loading {
    position: relative;
}

.loading:after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    animation: rotate 1s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Efecte de tranziție pentru imagini */
.message-images {
    position: relative;
}

.message-image {
    position: relative;
    z-index: 1;
}

.message-image:hover {
    z-index: 2;
    box-shadow: 0 4px 20px var(--indigo-shadow);
}

.emoji-picker {
    position: absolute;
    bottom: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px var(--indigo-shadow);
    display: none;
}

.emoji-picker.active {
    display: block;
}

/* Efecte pentru hover pe participanți */
.participant {
    position: relative;
    overflow: hidden;
}

.participant:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    bottom: 0;
    background: var(--indigo);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.participant:hover:after {
    transform: translateX(0);
}

/*   REVIEWS PAGE END   */


/*   COOKIES BANNER   */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 -4px 20px rgba(3, 113, 24, 0.15);
    z-index: 9999;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1rem;
}

.cookie-icon {
    color: var(--indigo);
    animation: cookieBounce 2s ease infinite;
}

.cookie-text {
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: var(--indigo);
    color: white;
}

.cookie-btn.customize {
    background: #f3f4f6;
    color: #666;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.cookie-option {
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 8px;
}

.cookie-option label {
    display: flex;
    gap: 1rem;
    cursor: pointer;
}

.cookie-option-text {
    flex: 1;
}

.cookie-option-text span {
    font-weight: 500;
    display: block;
    margin-bottom: 0.25rem;
}

.cookie-option-text p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.cookie-modal-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1.5rem;
}

.modal-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-save {
    background: var(--indigo);
    color: white;
}

.btn-cancel {
    background: #f3f4f6;
    color: #666;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }
}

/*   COOKIES BANNER END   */


/*   USER PAGE   */
.profile-container {
    max-width: 1400px;
    margin: 80px auto 0;
    padding: 2rem;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #1a1a1a;
}

.profile-header {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(3, 113, 24, 0.15);
    padding: 3rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.profile-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(3, 113, 24, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.profile-avatar {
    width: 180px;
    height: 180px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(3, 113, 24, 0.2);
    position: relative;
    background: white;
    padding: 4px;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.profile-avatar:hover img {
    transform: scale(1.05);
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(3, 113, 24, 0.9), rgba(3, 113, 24, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.75rem;
}

.profile-bio {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.profile-stats {
    display: flex;
    gap: 3rem;
    margin: 1.5rem 0;
}

.stat-item {
    text-align: left;
    position: relative;
    padding-left: 1rem;
}

.stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 70%;
    background: rgba(3, 113, 24, 0.6);
    border-radius: 4px;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(3, 113, 24, 0.9);
    line-height: 1.2;
}

.stat-label {
    color: #4a5568;
    font-size: 0.95rem;
    font-weight: 500;
}

.edit-profile-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(3, 113, 24, 0.9);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.edit-profile-btn:hover {
    background: rgba(1, 70, 14, 0.97);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(3, 113, 24, 0.2);
}

.profile-content {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2rem;
}

.profile-sidebar {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(3, 113, 24, 0.15);
    padding: 2rem;
}

.sidebar-section {
    margin-bottom: 2.5rem;
}

.sidebar-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(3, 113, 24, 0.9);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(3, 113, 24, 0.1);
    position: relative;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: rgba(3, 113, 24, 0.6);
}

.profile-details li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.detail-label {
    color: #4a5568;
    font-weight: 500;
}

.detail-value {
    color: #1a1a1a;
    font-weight: 600;
}

.content-section {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(3, 113, 24, 0.15);
    padding: 2rem;
    margin-bottom: 2rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.user-section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: rgba(3, 113, 24, 0.9);
}

.user-locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.user-location-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.user-location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(3, 113, 24, 0.15);
}

.user-location-image {
    height: 180px;
    overflow: hidden;
}

.user-location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.user-location-card:hover .user-location-image img {
    transform: scale(1.1);
}

.user-location-info {
    padding: 1.5rem;
}

.user-location-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(3, 113, 24, 0.9);
    margin-bottom: 0.75rem;
}

.user-location-meta {
    font-size: 0.9rem;
    color: #4a5568;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comment-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-left: 4px solid rgba(3, 113, 24, 0.6);
}

.comment-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(3, 113, 24, 0.15);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #4a5568;
}

.comment-text {
    color: #1a1a1a;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 992px) {
    .profile-content {
        grid-template-columns: 1fr;
    }

    .profile-container {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .profile-stats {
        justify-content: center;
        gap: 2rem;
    }

    .stat-item {
        text-align: center;
        padding-left: 0;
        padding-top: 1rem;
    }

    .stat-item::before {
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        width: 70%;
        height: 3px;
    }

    .user-locations-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 480px) {
    .profile-avatar {
        width: 140px;
        height: 140px;
    }

    .profile-name {
        font-size: 2rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }
}

/*   USER PAGE END   */


/*   ADMIN DASHBOARD   */
/* Custom CSS for shared experiences page */
.user-shared-experience {
    background-color: #f7fafc;
    min-height: 100vh;
    padding: 2rem 0;
}

.experience-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.search-section {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.search-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    transition: border-color 0.2s;
}

.form-input:focus {
    border-color: #4299e1;
    outline: none;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.button {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.button-primary {
    background-color: #4299e1;
    color: white;
    border: none;
}

.button-primary:hover {
    background-color: #3182ce;
}

.button-secondary {
    background-color: #718096;
    color: white;
    border: none;
}

.button-secondary:hover {
    background-color: #4a5568;
}

.experience-table {
    width: 100%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.experience-table th {
    background-color: #f8fafc;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #4a5568;
    border-bottom: 2px solid #e2e8f0;
}

.experience-table td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    color: #2d3748;
}

.experience-table tr:hover {
    background-color: #f7fafc;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
}

.modal-content {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
}

.modal-body {
    margin-bottom: 1.5rem;
}

.modal-footer {
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
}

.detail-row {
    margin-bottom: 1rem;
}

.detail-label {
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 0.25rem;
}

.detail-value {
    color: #2d3748;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .experience-container {
        padding: 0 0.5rem;
    }

    .experience-table {
        display: block;
        overflow-x: auto;
    }

    .search-section {
        padding: 1rem;
    }

    .modal-content {
        padding: 1rem;
    }
}

/* Loading spinner */
.loading-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3182ce;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Status badges */
.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.status-active {
    background-color: #c6f6d5;
    color: #2f855a;
}

.status-pending {
    background-color: #fefcbf;
    color: #975a16;
}

/* Tooltip */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltip-text {
    visibility: hidden;
    background-color: #2d3748;
    color: white;
    text-align: center;
    padding: 5px 10px;
    border-radius: 4px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.2s;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/*   ADMIN DASHBOARD END   */


.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .slide-content {
        left: 20px;
        right: 20px;
    }

    .slide-content h1 {
        font-size: 36px;
    }

    .search-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-item {
    position: relative;
}

.grid-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border-radius: 0 0 10px 10px;
}

.overlay h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.overlay p {
    font-size: 14px;
    color: #666;
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 28px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}
