:root {
    --primary-gradient: linear-gradient(269deg, #FFF 0.17%, #76BBFF 99.83%);
    --bg-dark: linear-gradient(180deg, #021429 0%, #0a2847 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-dark);
    color: #ffffff;
    min-height: 100vh;
}

.yacht-page {
    min-height: 100vh;
    background: var(--bg-dark);
}

/* Navigation */
.navbar {
    /* background: rgba(2, 20, 41, 0.9); */
    background-color: transparent;
    backdrop-filter: blur(10px);
    padding: 16px 0;
    /*border-bottom: 1px solid rgba(255, 255, 255, 0.1);*/
}

.nav-container {
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-brand-card {
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 12px;
    padding: 12px 20px;
}

.logo-group {
    display: flex;
    align-items: center;
}

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

.nav-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.welcome-text {
    display: flex;
    flex-direction: column;
}

.welcome-greeting {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.company-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.nav-actions {
    display: flex;
    gap: 12px;
}

.nav-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-btn-download {
    background: #1E90FF;
    color: #ffffff;
}

.nav-btn-download:hover {
    background: #1873CC;
    color: #ffffff;
}

.nav-btn-signin {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-btn-signin:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.mobile-menu-toggle,
.mobile-nav-brand {
    display: none;
}

/* Desktop Image Gallery Container */
.desktop-gallery-container {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}

.desktop-image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.desktop-main-image {
    grid-column: 1 / 2;
    grid-row: 1 / 3;

    width: 600px;
    height: 445px;

    border-radius: 24px;
    overflow: hidden;
}

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

@media (max-width: 1100px) {
    .desktop-main-image {
        width: 500px;
        height: 415px;
    }

    .desktop-thumbnail {
        height: 200px !important;
    }

    .nav-container {
        padding: 0px 40px !important;
    }

    .desktop-info-card {
        margin: 0 auto 15px !important;
    }
}

@media (max-width: 768px) {
    .desktop-main-image {
        width: 100%;
        height: auto;
        aspect-ratio: 600 / 406;
    }

    .yacht-card .card-color {
        font-size: 10px !important;
    }

    .step-time {
        font-size: 10px !important;
    }

    .status-message {
        font-size: 14px !important;
    }

    .detail-label {
        font-size: 12px !important;
    }

    .included-text {
        font-size: 12px !important;
    }
}



.desktop-thumbnail {
    width: 100%;
    height: 215px;
    flex-shrink: 0;

    border-radius: 24px;
    overflow: hidden;

    cursor: pointer;
    transition: transform 0.3s ease;
}

.desktop-thumbnail:hover {
    transform: scale(1.02);
}

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

@media (max-width: 991px) {
    .desktop-thumbnail {
        width: 100%;
        height: auto;
        aspect-ratio: 288 / 191;
    }

    .yacht-title-section h1 {
        font-size: 25px !important;
    }

    .navbar {
        display: none !important;
    }
}

@media (max-width:650px) {
    .yacht-title-section h1 {
        font-size: 20px !important;
    }

    .info-badges {
        gap: 7px !important;
        margin-bottom: 16px !important;
    }

    .info-badge {
        font-size: 12px !important;
    }

    .desktop-info-card {
        padding: 0px !important;
    }

    .yacht-description {
        font-size: 14px !important;
    }

    .btn {
        font-size: 13px !important;
    }

    .section-title {
        font-size: 16px !important;
    }

    .step {
        gap: 8px !important;
    }

    .step-label {
        font-size: 12px !important;
    }

    .yacht-header-row {
        margin-bottom: 10px !important;
    }
}


.desktop-more-photos {
    position: relative;
}

.desktop-more-photos::after {
    content: '5 more';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    border-radius: 16px;
}

/* Desktop Info Card */
.desktop-info-card {
    max-width: 1400px;
    margin: 0 auto 32px;
    padding: 0 20px;
}

.yacht-info-container {
    background: rgba(15, 35, 60, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
}


.yacht-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    font-family: 'Montserrat', sans-serif;
}

.yacht-title-section h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 145%;
    margin-bottom: 8px;
}

.yacht-location {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.share-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.info-badges {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.info-badge {
    background: #162C40;
    border-radius: 8px;
    padding: 4px 16px;
    font-size: 14px;
    color: #AAB8C2;
    font-family: 'Montserrat', sans-serif;
}

.info-badge.instant-booking {
    background: rgba(76, 175, 80, 0.15);
    border-color: rgba(76, 175, 80, 0.3);
    color: #4CAF50;
}

.yacht-description {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0px !important;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

}

.yacht-description.is-expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
    display: block;
}

.readmore-btn {
    background: transparent;
    border: 0;
    padding: 0;
    color: #AAB8C2;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    text-decoration: underline;
    font-size: 20px;
}

@media (max-width: 991px) {
    .yacht-info-container {
        padding: 20px;
        gap: 12px;
        border-radius: 30px 30px 0 0 !important;
        border: 1px solid #2E4A6A !important;
        margin-top: -30px;
        z-index: 100;
    }

    .yacht-card,
    .yacht-card-included {
        border-radius: 0px !important;
        border-bottom: 1px solid #2E4A6A !important;
    }

    .readmore-btn {
        font-size: 12px;
    }
}

.mobile-image-gallery {
    display: none;
}

/* Container for Sections */
.content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.yacht-card {
    background-color: transparent;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    border: none;
}

.yacht-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;

    background: linear-gradient(180deg,
            rgba(255, 255, 255, .40) 0%,
            rgba(255, 255, 255, .10) 40%,
            rgba(255, 255, 255, 0) 100%);

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;
}

.yacht-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
    pointer-events: none;
}


.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #ffffff;
    line-height: 145%;
    /* 46.4px */
}

/* Buttons */
.btn-gradient {
    background: var(--primary-gradient);
    color: #021429;
    border: none;
    border-radius: 16px;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 16px;
}

.btn-gradient:hover {
    opacity: 0.9;
    color: #021429;
}

.btn-whatsapp {
    background: linear-gradient(90deg, #08803D 0%, #22C55E 100%);
    color: #ffffff;
    border: none;
    border-radius: 16px;
    padding: 16px;
    font-weight: 500 !important;
    box-shadow: 0 10px 24px rgba(34, 197, 94, 0.25);
    transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
    font-family: 'Montserrat', sans-serif;

}


/* Progress Steps */
.progress-steps-row {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    gap: 10px;
    color: #2E4A6A;
}

.step {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    text-align: center;

}

.step img {
    border-radius: 1248.75px;
    border: 1.25px solid #2E4A6A;
}



/* Other Styles */

.details {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.detail-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    flex: 1 1 30%;
    /* controls how many items per row */
}

.detail-icon {
    width: 32px;
    /* adjust size to match Figma */
    height: 32px;
    flex-shrink: 0;
    /* prevents icon shrinking */

}

.detail-label {
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
    /* keeps text on one line */
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%;
    /* 29px */
    margin-left: 9px;
}


.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 10px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.yacht-card-included {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
    row-gap: 14px;

    padding: 50px 40px;
    border-radius: 24px;
    background: rgba(0, 29, 63, 0.80);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    position: relative;
    overflow: hidden;
    border: none;
}

.yacht-card-included::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;

    background: linear-gradient(180deg,
            rgba(255, 255, 255, .40) 0%,
            rgba(255, 255, 255, .10) 40%,
            rgba(255, 255, 255, 0) 100%);

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;
}

.yacht-card-included::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
    pointer-events: none;
}

.yacht-card-included>* {
    position: relative;
    z-index: 1;
}

.yacht-info-container {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: none;
    background: rgba(0, 29, 63, 9);
}

.yacht-info-container::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;

    background: linear-gradient(180deg,
            rgba(255, 255, 255, .40) 0%,
            rgba(255, 255, 255, .10) 40%,
            rgba(255, 255, 255, 0) 100%);

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;
}

.yacht-info-container::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
    pointer-events: none;
}

.yacht-info-container>* {
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.yacht-card-included .section-title {
    grid-column: 1 / -1;
}

/* First 5 items → column 1 */
.yacht-card .included-item:nth-of-type(-n + 5) {
    grid-column: 1;
}

/* Remaining items → column 2 */
.yacht-card .included-item:nth-of-type(n + 6) {
    grid-column: 2;
}

@media (max-width: 768px) {
    .yacht-card {
        grid-template-columns: 1fr;
    }

    .yacht-card .included-item {
        grid-column: 1 !important;
    }

    .yacht-card-included {
        grid-template-columns: repeat(1, 1fr);
    }
}

.progress-steps-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
}

.progress-steps-scroll::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.progress-steps-row {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    gap: 15px;
}

.step {
    flex: 0 0 auto;
}

@media (min-width: 992px) {
    .progress-steps-scroll {
        cursor: grab;
    }

    .progress-steps-scroll:active {
        cursor: grabbing;
    }
}

/* (Opsiyonel) scrollbar’ı ince yap */
.progress-steps-scroll::-webkit-scrollbar {
    height: 6px;
}

.progress-steps-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .25);
    border-radius: 999px;
}

.progress-steps-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .08);
    border-radius: 999px;
}

.check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.included-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Montserrat', sans-serif;
}


.rating-number {
    font-size: 28px;
    font-weight: 700;
    color: #FFD700;
    font-family: 'Montserrat', sans-serif;
}

.rating-count {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Montserrat', sans-serif;
}

.rating-star {
    font-size: 14px;
    color: #FFD700;
    min-width: 24px;
    font-family: 'Montserrat', sans-serif;
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    border-radius: 4px;
}

.rating-count-num {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    min-width: 35px;
    text-align: right;
}

.policy-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px 0;
}

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

.policy-name {
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 255, 255, 0.9);
}

.view-all {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    border: 1px solid #162C40;
    padding: 3px 14px;
    border-radius: 6px;
}

/* Mobile Styles */
@media (max-width: 991px) {

    .nav-brand-card,
    .nav-actions {
        display: none;
    }

    .mobile-nav-brand {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .mobile-logo-group .mobile-nav-logo {
        height: 32px;
    }

    .mobile-nav-divider {
        width: 1px;
        height: 32px;
        background: rgba(255, 255, 255, 0.2);
    }

    .mobile-welcome-text {
        display: flex;
        flex-direction: column;
    }

    .mobile-welcome-greeting {
        font-size: 9px;
        color: rgba(255, 255, 255, 0.6);
        text-transform: uppercase;
    }

    .mobile-company-name {
        font-family: 'Montserrat', sans-serif;
        font-size: 14px;
        font-weight: 600;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
    }

    .mobile-menu-toggle span {
        width: 24px;
        height: 2px;
        background: #ffffff;
        border-radius: 2px;
    }

    .mobile-image-gallery {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 16px;
    }

    .mobile-main-image {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
        border-radius: 12px;
        overflow: hidden;
    }

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

    .mobile-thumbnail {
        border-radius: 8px;
        overflow: hidden;
        aspect-ratio: 1.5/1;
        cursor: pointer;
    }

    .mobile-more-photos {
        position: relative;
    }

    .mobile-more-photos::after {
        content: '+5 more';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-weight: 600;
        color: #ffffff;
    }

    .content-container {
        padding: 0px;
    }

    .yacht-card {
        border-radius: 16px;
        padding: 10px 20px !important;
    }

    .yacht-card-included {
        padding: 30px 25px;
    }

    .section-title {
        font-size: 20px !important;
    }

    .yacht-card-included::before,
    .yacht-card::before,
    .yacht-card::after,
    .yacht-card-included::after,
    .yacht-info-container::before,
    .yacht-info-container::after {
        content: none !important;
    }

}

.modal-image {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1.5/1;
}

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


.yacht-form-container-detail {
    /*width: 1144px;*/
    /* min-height: 272px; */
    margin: auto;
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

@media (max-width: 991px) {
    .check-icon2 {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .navbar {
        padding: 14px 0;
        /* figma kimi daha yığcam */
    }

    .nav-container {
        padding: 0 16px !important;
    }

    .mobile-nav-brand {
        display: flex;
        align-items: center;
        gap: 12px;
        min-width: 0;
        /* overflow bugları üçün */
    }

    .mobile-welcome-text {
        min-width: 0;
    }

    .mobile-company-name {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 160px;
        /* lazım olsa artırarsan */
    }

    .mobile-menu-toggle {
        flex: 0 0 auto;
        /* həmişə sağda qalsın */
    }
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(2, 20, 41, .88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    transform: translateX(110%);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
}

.mobile-menu-overlay.is-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 991px) {
    .desktop-only {
        display: none !important;
    }
}


.check-icon2 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    width: auto;
    margin-left: auto;
    max-width: none;
}

.rectangle-group {
    height: var(--height-40);
    width: var(--width-40);
    position: relative;
    backdrop-filter: blur(20px);
    border-radius: var(--br-12);
    background-color: var(--color-gray-700);
    border: 1px solid var(--Titles-and-main-text);
    box-sizing: border-box;
}

.button-primary {
    cursor: pointer;
    border: 0;
    padding: var(--padding-17) var(--padding-16);
    background-color: var(--Secondary-highlight);
    height: 42px;
    border-radius: var(--br-16);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.button-primary2 {
    cursor: pointer;
    border: 0;
    padding: var(--padding-17) var(--padding-16);
    background-color: transparent;
    height: 42px;
    border-radius: var(--br-16);
    background: var(--Main-button-background);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.sign-in {
    position: relative;
    font-size: 13px;
    line-height: 145%;
    font-family: var(--font-montserrat);
    color: var(--Titles-and-main-text);
    text-align: center;
    flex-shrink: 0;
}

.sign-in2 {
    position: relative;
    font-size: 13px;
    line-height: 145%;
    color: var(--color-gray-100);
    flex-shrink: 0;
}

.step-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.yacht-card .card-color {
    font-size: 20px;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

/* Status Message */
.status-message {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.step-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}

.step-label::after {
    content: '|';
    color: rgba(255, 255, 255, 0.3);
    margin-left: 4px;
}

.step:last-child .step-label::after {
    content: '';
}

.step-time {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-align: start;
}


/*Popup ExploreYachts*/
/* Modal Styling */
.modal-content {
    border-radius: 32px !important;
    background: linear-gradient(180deg, #021429 0%, #001D3F 100%) !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5) !important;
}

.modal-header {
    border-bottom: none !important;
    padding: 32px 20px 16px 20px !important;
    justify-content: center !important;
}

.modal-title {
    color: #ffffff !important;
    font-size: 28px !important;
    font-weight: 500 !important;
}

.calendar-modal .modal-header {
    justify-content: space-between !important;
}

/* .modal-body {
    padding: 0px 20px 24px 20px !important;

} */

.modal-footer {
    border-top: none !important;
    padding: 0 20px 32px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

/* Form Styling */
.form-group {
    margin-bottom: 20px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.form-group::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;

    background: linear-gradient(180deg,
            rgba(255, 255, 255, .40) 0%,
            rgba(255, 255, 255, .10) 40%,
            rgba(255, 255, 255, 0) 100%);

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;
    z-index: 1;
}

.form-group::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
    pointer-events: none;
    z-index: 1;
}

.btn-confirm:disabled,
.btn-confirm.disabled {
    background: #64748B !important;
    border-color: transparent !important;
    color: #AAB8C2 !important;
    cursor: not-allowed !important;
    opacity: 1 !important;
    box-shadow: none !important;
    font-size: 16px;
    font-weight: 400 !important;
}
.btn-done:disabled,
.btn-done.disabled {
  background: #64748B !important;
  border-color: transparent !important;
  color: rgba(255,255,255,0.9) !important;
  cursor: not-allowed !important;
  opacity: 1 !important;
  box-shadow: none !important;
        font-size: 16px;
    font-weight: 400 !important;
}
.form-control,
.form-select {
    width: 100% !important;
    padding: 16px 48px 16px 20px !important;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px !important;
    color: #ffffff !important;
    font-size: 15px !important;
    outline: none !important;
    transition: all 0.3s ease !important;
    appearance: none !important;
}

.form-control::placeholder,
.form-select option:first-child {
    color: rgba(255, 255, 255, 0.5) !important;
}

.form-control:hover,
.form-select:hover {
    border-color: rgba(255, 255, 255, 0.4) !important;
    background: rgba(255, 255, 255, 0.12) !important;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(255, 255, 255, 0.6) !important;
    background: rgba(255, 255, 255, 0.15) !important;
    box-shadow: none !important;
}

.form-control[readonly] {
    cursor: pointer !important;
}

.input-icon {
    position: absolute !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    pointer-events: none !important;
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 16px !important;
}

option {
    background: #001D3F !important;
    color: #ffffff !important;
}

/* Button Styling */
.btn {
    width: 100% !important;
    padding: 16px !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    border: none !important;
    outline: none !important;
}

.btn-confirm {
    border-radius: 16px !important;
    background: linear-gradient(269deg, #FFF 0.17%, #76BBFF 99.83%) !important;
    color: #000000 !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 16px rgba(118, 187, 255, 0.3) !important;
}

.btn-confirm:hover {
    background: linear-gradient(269deg, #F0F0F0 0.17%, #5AAAFF 99.83%) !important;
    box-shadow: 0 6px 20px rgba(118, 187, 255, 0.4) !important;
    transform: translateY(-2px) !important;
    color: #000000 !important;
}

.btn-confirm:active {
    transform: translateY(0) !important;
}

.btn-cancel {
    background: rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.btn-cancel:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

.btn-back {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid #2E4A6A !important;
    padding: 12px 32px !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: #3A5A7A !important;
    color: rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-2px) !important;
}

.btn-done {
    border-radius: 16px !important;
    background: linear-gradient(269deg, #FFF 0.17%, #76BBFF 99.83%) !important;
    color: #000000 !important;
    padding: 12px 32px !important;
    font-weight: 700 !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.btn-done:hover {
    background: linear-gradient(269deg, #F0F0F0 0.17%, #5AAAFF 99.83%) !important;
    transform: translateY(-2px) !important;
    color: #000000 !important;
}

/* Calendar Modal */
.calendar-modal .modal-body {
    padding: 24px 32px;
}

.calendar-header {
    color: #ffffff !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    margin-bottom: 24px !important;
    text-align: center !important;
}

.calendar-grid {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr) !important;
    gap: 8px !important;
}

.calendar-day {
    aspect-ratio: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-size: 14px !important;
}

.calendar-day:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
}

.calendar-day.selected {
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%) !important;
    border-color: #0066FF !important;
}

.calendar-day.disabled {
    opacity: 0.3 !important;
    cursor: not-allowed !important;
}

/* Time Picker */
.time-picker-header {
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px !important;
    font-weight: 500 !important;
    line-height: 145% !important;
    text-transform: capitalize !important;
    text-align: center !important;
}

.time-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 10px !important;
    max-height: 563px !important;
    overflow-y: auto !important;
}

.time-slot {
    padding: 16px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px !important;
    color: #ffffff !important;
    text-align: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-size: 14px !important;
}

.time-slot:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
}

.time-slot.selected {
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%) !important;
    border-color: #0066FF !important;
}

/* Backdrop */
.modal-backdrop.show {
    opacity: 0.8;
}

/*Popup ExploreYachts*/
.calendar-month-selector,
.calendar-select {
    background-color: var(--color-gray-300);
    color: var(--Titles-and-main-text, #FFF);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
    /* 20px */
}

.calender-row-align {
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: stretch;
    align-items: baseline !important;

    color: var(--Titles-and-main-text, #FFF);
    /* H2 - Main screen title */
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 145%;
    /* 34.8px */
    text-transform: capitalize;
}

.calendar-day-header {
    color: var(--Titles-and-main-text, #FFF);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%;
    /* 17.4px */
    text-align: center;
}

.info-badge.availability-check {
    background: rgba(76, 175, 80, 0.15);
    border-color: rgba(76, 175, 80, 0.3);
    color: #FACC15;
}

.status-completed {
    color: green;
    border: 1.25px solid #22C55E;
    stop-color: #22C55E;
}

.share-trigger-btn {
    background: transparent;
    border: 0;
    padding: 0;
    line-height: 0;
    cursor: pointer;
}

.share-modal .modal-dialog {
    max-width: 420px;
    width: calc(100% - 32px);
}

.share-modal-content {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(0, 29, 63, 0.86);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .45);
    overflow: hidden;
}

.share-modal-header {
    padding: 36px 26px 10px 40px;
}

.share-modal-title {
    margin: 0;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 26px;
}

.share-modal-body {
    padding: 30px 40px 39px 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.share-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    height: 52px;
    padding: 0 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .04);
    color: rgba(255, 255, 255, .92);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    border: none;
    position: relative;
    overflow: hidden;
}

.share-item::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, .40) 0%,
            rgba(255, 255, 255, .10) 40%,
            rgba(255, 255, 255, 0) 100%);

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;
}

.share-item::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
    pointer-events: none;
}

.share-ico {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .92);
}

.share-text {
    flex: 1;
    text-align: left;
}

.share-right {
    font-size: 12px;
    color: rgba(255, 255, 255, .65);
}

.share-close-btn {
    margin-top: 25px;
    width: 100%;
    height: 52px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .03);
    color: rgba(255, 255, 255, .85);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.share-close-btn {
    margin-top: 25px;
    width: 100%;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .03);
    color: rgba(255, 255, 255, .85);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    border: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.share-close-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, .40) 0%,
            rgba(255, 255, 255, .10) 40%,
            rgba(255, 255, 255, 0) 100%);

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;
}

.share-close-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
    pointer-events: none;
}

.modal-backdrop.show {
    opacity: .55;
}


.info-badges-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;
    -ms-overflow-style: none;
}

.info-badges-scroll::-webkit-scrollbar {
    display: none;
}

.info-badges {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    gap: 16px;
    margin-bottom: 24px;
}

.info-badge {
    flex: 0 0 auto;
    white-space: nowrap;
}

.mobile-hero {
    position: relative;
}

/* MOBILE: tək hero image */
@media (max-width: 991px) {
    .desktop-gallery-container {
        margin: 0 auto !important;
        padding: 0 !important;
        max-width: 100% !important;
        display: none;
    }

    .modal-title {
        font-size: 24px !important;
    }

    .desktop-image-gallery {
        display: block !important;
        gap: 0 !important;
        margin-bottom: 0 !important;
    }

    .desktop-thumbnail {
        display: none !important;
        /* thumbnail-lar yox olsun */
    }

    .desktop-main-image {
        width: 100% !important;
        height: 420px !important;
        /* istəyinə görə */
        border-radius: 24px !important;
        overflow: hidden !important;
    }

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

.mobile-hero-topbar {
    display: none;
}

@media (max-width: 991px) {
    .mobile-hero-topbar {
        display: flex;
        position: absolute;
        top: 16px;
        left: 16px;
        right: 16px;
        z-index: 50;
        justify-content: space-between;
        align-items: center;
        pointer-events: none;
    }

    .share-trigger-btn {
        display: none;
    }

    .mh-actions {
        display: flex;
        gap: 10px;
        pointer-events: auto;
    }

    .mh-icon-btn {
        pointer-events: auto;
        width: 44px;
        height: 44px;
        border-radius: 14px;
        background: transparent;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .mh-icon-btn i {
        font-size: 20px;
        line-height: 1;
    }
}

.mobile-hero {
    position: relative;
    overflow: hidden;
}

.mobile-hero-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.mobile-hero-topbar {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 50;
    padding-top: 10px;

    pointer-events: none;
}

.mobile-hero-topbar .mh-icon-btn {
    pointer-events: auto;
}

/* .modal-content {
    padding: 20px !important;
} */

.mh-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(2, 20, 41, .15);
    backdrop-filter: blur(10px);
    display: grid;
    place-items: center;
    color: #fff;
}

.mh-icon-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(268.7deg, #fff, #76bbff);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.mh-icon-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
    pointer-events: none;
}

/* 15 photos pill */
.mobile-photos-pill {
    position: absolute;
    right: 16px;
    bottom: 35px;
    z-index: 40;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(2, 20, 41, .40);
    backdrop-filter: blur(10px);
    padding: 4px 18px;
    border-radius: 8px;
    color: #fff;
    font-weight: 400;
    font-size: 12px;
}

/* dots */
.mobile-hero .carousel-indicators {
    margin-bottom: 26px;
    z-index: 30;
}

.mobile-hero .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.image-modal .modal-body {
    max-height: 70vh;
    overflow: auto;
}

.modal-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}