.navbar {
    position: absolute;
    top: 36px;
    left: 0;
    width: 100%;
    z-index: 1050;
}

.surfo-logo {
    width: 80px;
}

/* Upload Area Styles */
.upload-area {
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-area:hover {
    border-color: #0d6efd !important;
    background-color: #f8f9fa !important;
}

.upload-area.border-success {
    border-color: #198754 !important;
}

/* Image Preview Styles */
.image-preview-item {
    transition: transform 0.2s ease;
}

.image-preview-item:hover {
    transform: scale(1.02);
}

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

.image-preview-item .btn {
    border-radius: 50%;
    width: 30px;
    height: 30px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Drag and Drop Visual Effects */
.upload-area.dragging {
    background-color: #e3f2fd !important;
    border-color: #2196f3 !important;
    border-style: solid !important;
}

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

.image-preview-item {
    animation: fadeInUp 0.3s ease;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #00e7eb !important;
}

.top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1051;
}

.hero-slider {
    position: relative;
    height: 100vh;
}

.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
    height: 100%;
}

.hero-slider .carousel-item img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-caption {
    top: 50%;
    left: 0;
    right: 0;
    bottom: auto;
    transform: translateY(-50%);
}

.carousel-caption h1 {
    font-size: 5rem;
    letter-spacing: 2px;
}

.map-container {
    position: relative;
}

.leaflet-control-attribution {
    display: none !important;
}

.map-enhanced {
    height: 70vh;
    min-height: 500px;
    width: 100%;
    border-radius: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.map-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.map-controls .btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #333;
    border-radius: 6px;
    margin-bottom: 2px;
    transition: all 0.3s ease;
}

.map-controls .btn:hover {
    background: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.map-legend .card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    min-width: 140px;
}

.leaflet-popup-content-wrapper {
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.leaflet-popup-content {
    margin: 16px;
    font-family: 'Inter', sans-serif;
}

.spot-popup {
    text-align: center;
    min-width: 250px;
}

.spot-popup h5 {
    color: #333;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.spot-popup p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.spot-popup .btn {
    border-radius: 20px;
    font-weight: 600;
    padding: 8px 20px;
    font-size: 0.85rem;
    text-decoration: none;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    transition: all 0.3s ease;
}

.spot-popup .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.map-point {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.point-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #00e7eb !important;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin-bottom: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.point-circle:hover {
    transform: scale(1.1);
}

.point-label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
}

.destination-item a {
    position: relative;
    display: inline-block;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.destination-item a:hover {
    color: #00e7eb !important;
}

.btn-outline-dark {
    border-width: 2px;
    letter-spacing: 1px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background-color: #00e7eb;
    border-color: #00e7eb;
    color: white;
}

.experience-section h2 {
    color: #333;
    line-height: 1.2;
}

.btn-outline-dark {
    border-width: 2px;
    letter-spacing: 1px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background-color: #00e7eb;
    border-color: #00e7eb;
    color: white;
}

.image-container {
    overflow: hidden;
    position: relative;
}

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

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

.video-section {
    overflow: hidden;
}

.video-background {
    width: 100%;
}

.play-button-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #00e7eb !important;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.play-button-circle i {
    font-size: 24px;
}

.play-button-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.modal-content {
    background-color: transparent;
    border: none;
}

.modal-header {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
}

.btn-close {
    background-color: white;
    opacity: 0.8;
}

.btn-close:hover {
    opacity: 1;
}

.sailing-trips-section h2 {
    color: #333;
    line-height: 1.2;
}

.sailing-image-container {
    overflow: hidden;
    position: relative;
}

.sailing-image-container img {
    transition: transform 0.5s ease;
    width: 100%;
}

.sailing-image-container:hover img {
    transform: scale(1.05);
}

.instructor-profile {
    transition: transform 0.3s ease;
}

.instructor-profile:hover {
    transform: translateY(-5px);
}

.instructor-name {
    color: #333;
    font-size: 1.5rem;
    line-height: 1;
}

.btn-danger {
    background-color: #ff3366;
    border-color: #ff3366;
}

.partner-logos-section {
    background-color: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.partner-logo {
    transition: opacity 0.3s ease, transform 0.3s ease;
    max-height: 60px;
    width: auto;
}

.logo-item:hover .partner-logo {
    opacity: 1;
    transform: scale(1.1);
}

.events-grid-section {
    overflow: hidden;
}

.event-image-container {
    height: 400px;
    overflow: hidden;
}

.event-image-container img {
    transition: transform 0.5s ease;
}

.event-item:hover .event-image-container img {
    transform: scale(1.05);
}

.event-overlay {
    height: 400px;
    position: relative;
}

.event-item .event-overlay.position-absolute {
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.event-item:hover .event-overlay.position-absolute {
    opacity: 1;
}

.event-date {
    font-size: 14px;
    font-weight: 500;
    color: #00e7eb;
}

.event-overlay.bg-warning .event-date,
.event-overlay.bg-info .event-date {
    color: rgba(255, 255, 255, 0.8);
}

.event-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.event-description {
    font-size: 14px;
    letter-spacing: 0.5px;
}

.bg-info {
    background-color: #00e7eb !important;
}

.bg-warning {
    background-color: #ffc107 !important;
}

.text-info {
    color: #00e7eb !important;
}

.btn-danger {
    background-color: #ff3366;
    border-color: #ff3366;
}

.superior-service-section h2 {
    color: #333;
    line-height: 1.2;
}

.service-image-container {
    overflow: hidden;
    border-radius: 4px;
}

.service-image-container img {
    transition: transform 0.5s ease;
}

.service-image-container:hover img {
    transform: scale(1.05);
}

.contact-form .form-control {
    padding: 10px 0;
    color: #333;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    box-shadow: none;
    border-color: #00e7eb;
}

.contact-form .form-control::placeholder {
    color: #999;
    font-size: 15px;
}

.btn-outline-dark {
    border-width: 2px;
    letter-spacing: 1px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 20px;
}

.btn-outline-dark:hover {
    background-color: #00e7eb;
    border-color: #00e7eb;
    color: white;
}

.btn-danger {
    background-color: #ff3366;
    border-color: #ff3366;
}

.review-card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin: 10px;
    /* height: 250px; */
    overflow: hidden;
}
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.review-stars {
    color: #FF9800;
}
.carousel-control-prev, .carousel-control-next {
    width: 5%;
    opacity: 0.8;
}
.carousel-indicators {
    bottom: -50px;
}
.carousel-indicators button {
    background-color: #0275d8;
}
.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    color: #333;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: #0275d8;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    margin: 0 15px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background-color: #025aa5;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

#main-navbar {
    background-color: rgba(0, 0, 0, 0.1);
}

.login-background {
    background: url('/img/login.jpg') no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-login, .container-register {
    margin-top: 180px;
    margin-bottom: 30px;
}

.form-card-transparent {
    background: transparent;
    padding: 2rem;
}

.form-card-transparent h2 {
    color: #333;
    margin-bottom: 2rem;
    font-weight: 600;
}

.form-card-transparent .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.form-card-transparent .form-control:focus {
    background: rgba(255, 255, 255, 0.95);
    border-color: #00e7eb;
    box-shadow: 0 0 0 0.2rem rgba(0, 231, 235, 0.25);
}

.form-card-transparent label {
    color: #666;
    font-weight: 500;
}

.form-card-transparent .terms-condition {
    color: #666;
    font-size: 14px;
}

.form-card-transparent .btn-info {
    background-color: #00e7eb;
    border-color: #00e7eb;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.form-card-transparent .btn-info:hover {
    background-color: #00c4c7;
    border-color: #00c4c7;
}

@media (max-width: 991px) {
    .navbar {
        background-color: white !important;
        position: relative;
        top: 0;
    }

    .nav-link {
        color: #333 !important;
        padding: 10px 15px !important;
    }

    .nav-link.active {
        color: #00e7eb !important;
    }

    .top-bar {
        position: relative;
    }

    .contact-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-info a {
        margin-bottom: 5px;
    }
}

@media (max-width: 991px) {
    .service-content {
        padding-left: 0 !important;
    }
}

@media (max-width: 991px) {
    .container-login, .container-register {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .terms-condition {
        font-size: 9px;
    }
}

@media (max-width: 991px) {
    .event-image-container,
    .event-overlay {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .event-image-container,
    .event-overlay {
        height: 300px;
    }
}

@media (max-width: 991px) {
    .logos-wrapper {
        justify-content: center;
    }

    .logo-item {
        flex: 0 0 33.333%;
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .logo-item {
        flex: 0 0 50%;
    }
}

@media (max-width: 991px) {
    .sailing-trips-content {
        margin-bottom: 2rem;
    }

    .sailing-image-container.mt-lg-5 {
        margin-top: 1.5rem;
    }
}

@media (max-width: 991px) {
    .experience-content {
        margin-bottom: 3rem;
    }
}

@media (max-width: 991px) {
    .col-lg-5.ps-lg-5 {
        padding-top: 3rem;
    }
}

@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .carousel-caption h1 {
        font-size: 10vw;
    }
}

@media (max-width: 991px) {
    .hero-slider {
        height: auto;
        min-height: 500px;
    }
}

#map {
    height: 80dvh !important;
}

#map .leaflet-control-attribution {
    display: none !important;
}

.map-touch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.map-touch-overlay span {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .row-cards {
        flex-direction: column-reverse !important;
    }
}