@import url('https://fonts.googleapis.com/css2?family=Mona+Sans:ital,wght@0,200..900;1,200..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ============================================================
   YACHT SALES WEST — HOME PAGE CSS
   Design: Figma node 1:2
   Colors: Blue #042C65 | Blackish Blue #000B1B | Slate #333
   Font: Mona Sans (Google Fonts)
   ============================================================ */

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

:root {
    --ysw-blue: #042C65;
    --ysw-blackish-blue: #000B1B;
    --ysw-slate: #333333;
    --ysw-lightest-blue: #F5F9FF;
    --ysw-e6: #E6E6E6;
    --ysw-text-gray: #3D3E42;
    --ysw-d9: #D9D9D9;
    --ysw-blackish: #1B2026;
}

html {
    scroll-behavior: smooth;
    /* clip (not hidden) so the off-canvas side menu can't be dragged into view,
       without turning body into a scroll container that would break sticky headers */
    overflow-x: clip;
}

body {
    /* spacer for the absolutely positioned 80px header */
    padding-top: 80px;
    background-color: #fff;
    font-family: "Mona Sans", sans-serif;
    font-variation-settings: 'wdth' 100;
    color: var(--ysw-slate);
    overflow-x: clip;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
figure,
ol,
ul,
dl,
fieldset,
pre {
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.iti {
    width: 100% !important;
    max-width: 100% !important;
}

.field-error {
    color: red;
    font-size: 14px;
    margin-top: 5px;
}

.error_field {
    outline: 1px solid red !important;
    border-color: red;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

#notify_message {
    /* padding: 10px; */
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    font-family: trade-gothic-next;
    max-height: 80px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #0e0d0d;
    margin-bottom: 0;
    z-index: 10;
}

/* ============================================================
   TYPOGRAPHY UTILITIES  (shared / reused across all sections)
   ============================================================ */
.yswH1 {
    font-family: "Mona Sans", sans-serif;
    font-size: 80px;
    font-weight: 500;
    line-height: 88px;
    letter-spacing: 0;
    text-transform: uppercase;
    font-variation-settings: 'wght' 500, 'wdth' 125;
}

.yswH2 {
    font-family: "Mona Sans", sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-variation-settings: 'wght' 600, 'wdth' 125;
}

.yswH3 {
    font-family: "Mona Sans", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-variation-settings: 'wght' 600, 'wdth' 125;
}

.yswH5 {
    font-family: "Mona Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0;
    font-variation-settings: 'wght' 320, 'wdth' 125;
}

.yswEyebrow {
    font-family: "Mona Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.6;
    font-variation-settings: 'wght' 400, 'wdth' 125;
}

.yswPara {
    font-family: "Mona Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-variation-settings: 'wght' 400, 'wdth' 100;
}

/* --- Colour helpers --- */
.yswBlueText {
    color: var(--ysw-blue) !important;
}
.home-boat-title{
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.yswSlateText {
    color: var(--ysw-slate);
}

.yswWhiteText {
    color: #fff;
}

.yswWhiteText img {
    width: 15px !important;
    height: 15px;
}

/* ============================================================
   BUTTONS & LINKS  (shared / reused)
   ============================================================ */
.yswBtnOutlineWhite,
.yswBtnOutlineBlue,
.yswBtnPrimary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Mona Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 11px 28px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-variation-settings: 'wght' 600, 'wdth' 125;
    text-align: center;
}

.yswBtnOutlineWhite {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.yswBtnOutlineWhite:hover {
    background-color: #fff;
    color: var(--ysw-blue);
}

.yswBtnOutlineBlue {
    background-color: transparent;
    color: var(--ysw-blue);
    border: 2px solid var(--ysw-blue);
}

.yswBtnOutlineBlue:hover {
    background-color: var(--ysw-blue);
    color: #fff;
}

.yswBtnPrimary {
    background-color: var(--ysw-blue);
    color: #fff;
    border: 2px solid var(--ysw-blue);
}

.yswBtnPrimary:hover {
    background-color: #06387f;
    border-color: #06387f;
    color: #fff;
}

/* --- Arrow link --- */
.yswArrowLink {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Mona Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    opacity: 0.85;
    transition: opacity 0.2s ease, gap 0.2s ease;
    font-variation-settings: 'wght' 600, 'wdth' 125;
    color: #fff;
}

.yswArrowLink img{
    max-width: 8px;
}


.yswArrowLink i {
    font-size: 13px;
}

.yswArrowLink:hover {
    opacity: 1;
    gap: 14px;
    color: #fff;
}

/* ============================================================
   LAYOUT CONTAINER
   ============================================================ */
.yswContainer {
    width: 100%;
    padding: 0 15px;
}

/* ============================================================
   LOGO (sailboat badge)
   ============================================================ */
.yswLogo {
    max-width: 100px;
    position: relative;
    top: 60px;
}

.yswLogo .yswLogoSail {
    width: 100%;
    object-fit: contain;
}

.yswLogoText {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.yswLogoText span {
    font-family: "Mona Sans", sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.45);
    font-variation-settings: 'wght' 600, 'wdth' 125;
}

.yswLogoText span:last-child {
    border-bottom: none;
}

/* ============================================================
   HEADER
   ============================================================ */
.yswHeader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    background-color: #fff;
    height: 80px;
}

.yswHeaderInner {
    margin: 0 auto;
    padding: 0 6%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* logo hangs below the 80px bar */

.yswHeaderContact {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.yswContactOptionsWrapper {
    position: relative;
}

.yswHeaderContactSecondary {
    position: absolute;
    background-color: #fff;
    top: 60px;
    left: -40px;
    padding: 20px 40px;
    width: 236px;
    cursor: pointer;
    display: none;
}

.yswLocationSelect {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--blackish-blue, #000B1B);
    font-family: "Mona Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    font-variation-settings: 'wght' 400, 'wdth' 125;
}

.yswLocationSelect i {
    font-size: 9px;
}

.yswHeaderPhone {
    font-family: "Mona Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--ysw-blue);
    font-variation-settings: 'wght' 600, 'wdth' 125;
}

.yswHeaderPhone:hover {
    color: var(--ysw-blue);
}

.logoAndLocationWrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.navAndBurgerWrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 120px;
}

.yswNavLinks {
    display: flex;
    align-items: center;
    gap: 36px;
}

.yswNavLink {
    font-family: "Mona Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--ysw-blue);
    transition: opacity 0.2s ease;
    font-variation-settings: 'wght' 600, 'wdth' 125;
}

.yswNavLink:hover {
    color: var(--ysw-blue);
}

.yswHeaderRight {
    display: flex;
    align-items: center;
    gap: 22px;
}

.yswDiscoverLink {
    font-family: "Mona Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--ysw-blackish-blue);
    transition: opacity 0.2s ease;
    font-variation-settings: 'wght' 600, 'wdth' 125;
}

.yswDiscoverLink:hover {
    opacity: 0.65;
}


/* ============================================================
   SIDE MENU
   ============================================================ */
.yswMenuOverlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 11, 27, 0.55);
    z-index: 300;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.yswMenuOverlay.yswMenuActive {
    opacity: 1;
    pointer-events: all;
}

.yswHamburger{
    cursor: pointer;
}

.yswSideMenu {
    position: fixed;
    top: 80px;
    bottom: 0;
    right: 0;
    width: 380px;
    max-width: 88vw;
    height: calc(100dvh - 80px);
    background-color: #fff;
    z-index: 310;
    padding: 48px 15px 48px 5%;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(110%);
    transition: transform 0.35s ease;
    box-shadow: -10px 0 40px rgba(0, 11, 27, 0.18);
}

.yswSideMenu.yswMenuActive {
    transform: translateX(0);
}

.yswSideMenuTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.yswSideMenuTitle {
    font-family: "Mona Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ysw-blue);
    font-variation-settings: 'wght' 600, 'wdth' 125;
}

.yswSideMenuClose {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 22px;
    color: var(--ysw-blue);
    line-height: 1;
}

.yswSideMenuList li{
    margin-bottom: 16px;
}

.yswSideMenuList li a {
    font-family: "Mona Sans", sans-serif;
    color:  #000525;
    font-size: 20px;
    font-style: normal;
    font-weight: 320;
    line-height: 32px;
    transition: padding-left 0.2s ease;
    font-variation-settings: 'wght' 600, 'wdth' 125;
}

.yswSideMenuList li a:hover {
    color:  #000525;
}

.yswSideMenuContact {
    margin-top: 32px;
}

.yswSideMenuLoc {
    font-family: "Mona Sans", sans-serif;
    font-size: 12px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--ysw-blackish-blue);
    margin-top: 16px;
    font-variation-settings: 'wght' 400, 'wdth' 125;
}

.yswSideMenuPhone {
    font-family: "Mona Sans", sans-serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--ysw-blue);
    display: block;
    margin-top: 2px;
    font-variation-settings: 'wght' 600, 'wdth' 125;
}

/* ============================================================
   HERO
   ============================================================ */
.yswHero {
    position: relative;
    width: 100%;
    height: 880px;
    overflow: hidden;
}

.yswHeroImg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yswHeroVideo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.yswHeroOverlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(4, 44, 101, 0) 35%, rgba(4, 44, 101, 0.85) 100%),
        rgba(0, 11, 27, 0.15);
}

.yswHeroInner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    width: 100%;
    left: 17%;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 30px;
}

.yswHeroContent {
    position: relative;
    z-index: 2;
}

.yswHeroActions {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 40px;
}


.inventoryMenuLink{
    color:  #000525;
    font-family: "Mona Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 320;
    line-height: 32px; 
}

.inventoryMenuLink:hover{
    color:  #000525;
}

.inventoryMegaMenu{
    position: absolute;
    left: 0;
    top: 80px;
    width: 100%;
    z-index: 100;
    background-color: #fff;
    padding: 40px 0 88px 0;
    display: none;
}

.inventoryMenuList li{
    margin-bottom: 16px;
    margin-top: 5%;
}

.inventoryMenuBrandCard{
    overflow: hidden;
    border-radius: 16px;
}

.invetoryMenuImageWrap::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, rgba(4, 44, 101, 0.00) 0%, #042C65 100%)
}

.invetoryMenuImageWrap{
    position: relative;
    padding-top: 125%;
}

.invetoryMenuImageWrap .inventoryMenuImage{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inventoryMenuBrandLogoWrap{
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    max-width: 180px;
    z-index: 5;
}

.inventoryMenuBrandLogoWrap img{
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ============================================================
   NEW / PRE-OWNED YACHTS
   ============================================================ */
.yswYachtTypes {
    display: flex;
    width: 100%;
    gap: 4px;
}

.yswYachtType {
    position: relative;
    flex: 1;
    height: 600px;
    overflow: hidden;
}

.yswYachtTypeImg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.yswYachtType:hover .yswYachtTypeImg {
    transform: scale(1.05);
}

.yswYachtTypeGradient {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 65%;
    background: linear-gradient(180deg, rgba(4, 44, 101, 0) 0%, rgba(4, 44, 101, 0.85) 100%);
}

.yswYachtTypeContent {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    padding: 0 64px 56px;
}

.yswYachtTypeContent .yswArrowLink {
    margin-top: 18px;
}

/* ============================================================
   FOUNDED STATEMENT
   ============================================================ */
.yswFounded {
    padding: 100px 0;
    background-color: #fff;
}

.yswFoundedText {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    color: var(--ysw-slate);
}

/* ============================================================
   PROMO SLIDER
   ============================================================ */
.yswPromo {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.yswPromoSlide {
    position: relative;
    width: 100%;
    height: 880px;
    overflow: hidden;
}

.yswPromoImg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yswPromoOverlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 44, 101, 0) 30%, rgba(4, 44, 101, 0.9) 100%);
}

.yswPromoContent {
    position: absolute;
    left: 50%;
    bottom: 130px;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 90%;
    text-align: center;
    max-width: 300px;
}

.yswPromoLogo {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Promo carousel — Owl overrides */
.yswPromoCarousel.owl-carousel .owl-nav {
    margin: 0;
}

.yswPromoCarousel.owl-carousel .owl-nav button.owl-prev,
.yswPromoCarousel.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: auto;
    bottom: 56px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.yswPromoCarousel.owl-carousel .owl-nav button.owl-prev {
    right: 110px;
}

.yswPromoCarousel.owl-carousel .owl-nav button.owl-next {
    right: 40px;
}

.yswPromoCarousel.owl-carousel .owl-nav button.owl-prev:hover,
.yswPromoCarousel.owl-carousel .owl-nav button.owl-next:hover {
    color: var(--ysw-blue);
    border-color: #fff;
}

.yswPromoCarousel.owl-carousel .owl-nav button span {
    display: none;
}

.yswPromoCarousel.owl-carousel .owl-dots {
    position: absolute;
    bottom: 72px;
    left: 200px;
    display: flex;
    gap: 16px;
}

.yswPromoCarousel.owl-carousel .owl-dots .owl-dot span {
    width: 40px;
    height: 4px;
    border-radius: 4px;
    margin: 0;
    background: rgba(255, 255, 255, 0.4);
    transition: all 0.25s ease;
}

.yswPromoCarousel.owl-carousel .owl-dots .owl-dot.active span {
    background: #fff;
}

/* ============================================================
   YSW YACHT COLLECTION
   ============================================================ */
.yswCollection {
    padding: 90px 0;
    background-color: #fff;
}

.yswCollectionHead {
    margin-bottom: 56px;
}

.yswCollectionLogos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px 80px;
}

.yswCollectionLogo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
}

.yswCollectionLogo img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

.yswBrandWordmark {
    font-family: "Mona Sans", sans-serif;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ysw-blue);
    font-variation-settings: 'wght' 600, 'wdth' 110;
}

/* ============================================================
   WELCOME ABOARD
   ============================================================ */
.yswWelcome {
    padding: 40px 0 110px;
    background-color: #fff;
}

.yswWelcomeText {
    max-width: 560px;
}

.yswWelcomeText .yswH2 {
    margin-top: 8px;
}

.yswWelcomeImageWrap {
    position: relative;
    width: 100%;
    padding-top: 47%;
    overflow: hidden;
}

.yswWelcomeImageWrap .welcomeMedia {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================
   RECENT ARRIVALS
   ============================================================ */
.yswArrivals {
    padding: 30px 0 110px;
    background-color: #fff;
}

.yswArrivalsHead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.yswArrivalsNav {
    display: flex;
    gap: 16px;
}

.yswCarouselBtn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1.5px solid var(--ysw-d9);
    background: transparent;
    color: var(--ysw-blue);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.yswCarouselBtn:hover {
    background: var(--ysw-blue);
    border-color: var(--ysw-blue);
    color: #fff;
}

/* Currency toggle */
.yswCurrencyToggle {
    display: inline-flex;
    margin-top: 28px;
    border-radius: 20px;
    overflow: hidden;
}

.yswCurrencyBtn {
    border: none;
    cursor: pointer;
    background: rgba(4, 44, 101, 0.08);
    color: var(--ysw-blue);
    font-family: "Mona Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 8px 22px;
    transition: all 0.2s ease;
    font-variation-settings: 'wght' 600, 'wdth' 125;
}

.yswCurrencyBtn.active {
    background: var(--ysw-blue);
    color: #fff;
}

/* Arrival cards */
.yswArrivalsCarousel {
    margin-top: 32px;
}

.yswArrivalCard {
    background-color: #fff;
}

.yswArrivalImageWrap {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    border-radius: 4px;
}

.yswArrivalImageWrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.yswArrivalCard:hover .yswArrivalImageWrap img {
    transform: scale(1.05);
}

.yswArrivalInfo {
    padding: 20px 4px 22px;
    border-bottom: 1px solid var(--ysw-d9);
}

.yswArrivalInfo .yswEyebrow {
    font-size: 16px;
}

.yswArrivalInfo .yswH3 {
    margin-top: 8px;
}
.boats-title {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.yswArrivalPrice {
    font-family: "Mona Sans", sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-top: 6px;
    font-variation-settings: 'wght' 600, 'wdth' 125;
}

.yswArrivalMonthly {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: var(--ysw-slate);
    margin-left: 8px;
    font-variation-settings: 'wght' 400, 'wdth' 100;
}

.yswArrivalSpec {
    font-family: "Mona Sans", sans-serif;
    font-size: 16px;
    line-height: 24px;
    margin-top: 14px;
    font-variation-settings: 'wght' 400, 'wdth' 100;
}

.yswArrivalsFoot {
    display: flex;
    justify-content: flex-end;
    margin-top: 28px;
}

/* ============================================================
   BROKERAGE & TRADE-INS
   ============================================================ */
.yswBrokerage {
    padding: 30px 0 110px;
    background-color: #fff;
}

.yswBrokerageImageWrap {
    position: relative;
    width: 100%;
    padding-top: 68%;
    border-radius: 4px;
    overflow: hidden;
}

.yswBrokerageImageWrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yswBrokerageText {
    max-width: 560px;
    margin-left: auto;
}

.yswBrokerageText .yswH2 {
    margin-top: 8px;
}

/* ============================================================
   OUR SERVICES & COMMUNITY
   ============================================================ */
.yswServices {
    padding: 30px 0 120px;
    background-color: #fff;
}

.yswServicesHead {
    margin-bottom: 48px;
}

.yswServiceCard {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
}

.yswServiceCardWide {
    width: 100%;
    padding-top: 48.6%;
}

.yswServiceCardTall {
    width: 100%;
    padding-top: 100%;
    margin-top: 40px;
}

.yswServiceImg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.yswServiceCard:hover .yswServiceImg {
    transform: scale(1.05);
}

.yswServiceGradient {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(180deg, rgba(0, 11, 27, 0) 0%, rgba(0, 11, 27, 0.9) 100%);
}

.yswServiceGradientLeft {
    height: 100%;
    background:
        linear-gradient(90deg, rgba(4, 44, 101, 0.85) 0%, rgba(4, 44, 101, 0) 55%),
        linear-gradient(180deg, rgba(0, 11, 27, 0) 45%, rgba(0, 11, 27, 0.85) 100%);
}

.yswServiceContent {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    padding: 0 56px 48px;
}

.yswServiceContent .yswArrowLink {
    margin-top: 16px;
}

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.yswTestimonial {
    background-color: var(--ysw-lightest-blue);
    padding: 80px 15px;
}

.yswTestimonialInner {
    max-width: 904px;
    margin: 0 auto;
    position: relative;
    padding-left: 104px;
}

.yswQuoteMark {
    position: absolute;
    left: 0;
    top: -18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 120px;
    line-height: 1;
    color: var(--ysw-blue);
    opacity: 0.3;
}

.yswTestimonialText {
    color: var(--ysw-slate);
}

.yswTestimonialName {
    font-family: "Mona Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin-top: 24px;
    font-variation-settings: 'wght' 700, 'wdth' 100;
}

/* ============================================================
   FOOTER
   ============================================================ */
.yswFooter {
    background-color: #fff;
    border-top: 1px solid var(--ysw-e6);
    padding-top: 64px;
}

.yswFooterTop {
    padding-bottom: 64px;
}

.yswFooterBrand {
    display: flex;
    flex-direction: column;
}

.yswLogoFooter .yswLogoSail {
    width: 100%;
    object-fit: contain;
}

.yswLogoFooter {
    max-width: 220px;
}

.yswLogoFooter .yswLogoText span {
    font-size: 27px;
    letter-spacing: 2px;
    padding: 8px 0;
}

.yswFooterPhones {
    margin-top: 32px;
}

.yswFooterLoc {
    font-family: "Mona Sans", sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ysw-blue);
    opacity: 0.6;
    margin-top: 16px;
    font-variation-settings: 'wght' 400, 'wdth' 125;
}

.yswFooterPhone {
    font-family: "Mona Sans", sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--ysw-blue);
    display: block;
    margin-top: 2px;
    font-variation-settings: 'wght' 600, 'wdth' 125;
}

.yswFooterPhone:hover {
    opacity: 0.7;
}

/* Compass panel */
.yswCompassPanel {
    background-color: var(--ysw-lightest-blue);
    border-radius: 8px;
    padding: 48px 56px;
}

.yswCompassForm {
    display: flex;
    margin-top: 24px;
    max-width: 480px;
}

.yswCompassInput {
    flex: 1;
    min-width: 400px;
    border: 1px solid var(--ysw-d9);
    border-right: none;
    border-radius: 4px 0 0 4px;
    background: #fff;
    padding: 12px 18px;
    font-family: "Mona Sans", sans-serif;
    font-size: 16px;
    color: var(--ysw-blackish);
    outline: none;
}

.yswCompassInput::placeholder {
    color: rgba(27, 32, 38, 0.6);
}

.yswCompassInput:focus {
    border-color: var(--ysw-blue);
}

.yswCompassForm .yswBtnPrimary {
    border-radius: 0 4px 4px 0;
    flex-shrink: 0;
}

/* Footer link columns */
.yswFooterCols {
    margin-top: 48px;
}

.yswFooterColHead {
    color: #042C65;
    font-family: "Mona Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.yswFooterLinks li {
    margin-bottom: 10px;
}

.yswFooterLinks li a {
    color: var(--Text-slate, #333);
    font-family: "Mona Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.yswFooterLinks li a:hover {
    color: var(--Text-slate, #333);
}

/* Footer bottom */
.yswFooterBottom {
    border-top: 1px solid var(--ysw-e6);
    padding: 24px 40px;
}

.yswFooterPolicy {
    font-family: "Segoe UI", "Mona Sans", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: var(--ysw-text-gray);
    text-align: center;
}

.yswFooterPolicy a {
    color: inherit;
    text-decoration: none;
}

.yswFooterPolicy a:hover {
    color: var(--ysw-blue);
    text-decoration: underline;
}



/* 404 page start here */

.commonSection {
    margin-bottom: 80px;
}
.commonSectionInnerWrap {
    display: flex;
    gap: 120px;
    max-width: calc(100% - 15%);
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
.commonSectionTextWrapper {
    width: 50%;
    max-width: 600px;
}
.commonSectionImageWrapper {
    width: 50%;
}
.commonSectionImageWrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.commonSectionHeading {
    color: #222;
    text-align: center;
    font-family: "Mona Sans";
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px; /* 125% */
    letter-spacing: 6.4px;
    text-transform: uppercase;
}
.commonPara {
    color: #1E1E1E;
    text-align: center;
    font-family: "Mona Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    margin-bottom: 40px;
    margin-top: 40px;
}
.commonSectionLinkWrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.featured-btn {
    color: #FFF;
    text-align: center;
    font-family: "Mona Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    background: #222;
    display: inline-block;
}
.thank-you-content-box {
    width: 50%;
}
.thank-you-inner-box{
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

@media(max-width: 1440px){
    .blog-banner-content{
        left: 10%;
    }
    .yswHeaderInner{
        padding: 0 2%;
    }
}

/* ============================================================
   RESPONSIVE — ≤ 1200px
   ============================================================ */
@media (max-width: 1200px) {
    .blog-banner-content{
        left: 5%;
    }
    .yswH1 {
        font-size: 64px;
        line-height: 72px;
    }

    .yswNavLink {
        font-size: 14px;
    }

    .yswDiscoverLink{
        font-size: 14px;
    }

    .logoAndLocationWrapper{
        gap: 30px;
    }

    .commonSectionInnerWrap{
        gap: 60px;
    }

    .yswHeaderInner {
        gap: 24px;
    }

    .yswNavLinks {
        gap: 24px;
    }

    .yswPromoCarousel.owl-carousel .owl-dots {
        left: 40px;
    }
}

/* ============================================================
   RESPONSIVE — ≤ 991px (tablet / mobile)
   ============================================================ */
@media (max-width: 991px) {
    .blog-banner-content{
        left: 0;
        padding-left: 30px;
        padding-right: 30px;
    }
    .yswHeaderInner {
        padding: 0 24px;
    }

    .yswHeroInner {
        display: block;
        width: 100%;
        left: 4%;
    }

    .commonSectionInnerWrap{
        gap: 40px;
        flex-direction: column;
    }

    .thank-you-content-box{
        width: 100%;
    }

    .commonSectionImageWrapper {
        width: 100%;
    }

    /* Header */
    body {
        padding-top: 64px;
    }
    .yswHeader {
        height: 64px;
    }
    .yswHeaderContactSecondary {
        top: 53px;
    }
    .yswSideMenu {
        top: 64px;
        height: calc(100dvh - 64px);
    }

    .yswHeaderInner {
        height: 64px;
    }

    /* Shrink the tall hanging logo on mobile so it doesn't overhang
       the sticky filter bar (e.g. on the boats page) */
    .yswLogo {
        max-width: 44px;
        top: 2px;
    }


    .yswHeader .yswLogoText span {
        font-size: 12px;
        letter-spacing: 1px;
        padding: 3px 0;
    }
    .yswNav,
    .yswDiscoverLink {
        display: none;
    }

    .yswHeaderRight {
        margin-left: auto;
    }

    /* Hero */
    .yswHero {
        height: 520px;
    }

    .yswHeroActions {
        margin-top: 20px;
        gap: 16px;
        flex-wrap: wrap;
    }

    .yswHero .yswBtnOutlineWhite {
        font-size: 13px;
        padding: 8px 18px;
        letter-spacing: 0.5px;
    }

    .yswHero .yswArrowLink {
        font-size: 13px;
        letter-spacing: 0.5px;
    }

    .yswH1 {
        font-size: 48px;
        line-height: 56px;
    }

    .yswH2 {
        font-size: 30px;
        line-height: 38px;
    }

    /* New / Pre-Owned */
    .yswYachtType {
        height: 420px;
    }

    .yswYachtTypeContent {
        padding: 0 32px 40px;
    }

    /* Founded */
    .yswFounded {
        padding: 64px 0;
    }

    /* Promo */
    .yswPromoSlide {
        height: 560px;
    }

    .yswPromoContent {
        bottom: 110px;
    }

    /* Collection */
    .yswCollection {
        padding: 60px 0;
    }

    .yswCollectionHead {
        margin-bottom: 40px;
    }

    .yswCollectionLogos {
        gap: 32px 48px;
    }

    /* Welcome */
    .yswWelcome {
        padding: 24px 0 72px;
    }

    .yswWelcomeText {
        max-width: 100%;
        margin-bottom: 40px;
    }

    /* Recent arrivals */
    .yswArrivals,
    .yswBrokerage {
        padding: 20px 0 72px;
    }

    .yswBrokerageText {
        max-width: 100%;
        margin: 40px 0 0;
    }

    /* Services */
    .yswServices {
        padding: 20px 0 72px;
    }

    .yswServicesHead {
        margin-bottom: 32px;
    }

    .yswServicesHead .yswH2 {
        margin-bottom: 16px;
    }

    .yswServiceContent {
        padding: 0 32px 36px;
    }

    .yswServiceCardTall {
        margin-top: 24px;
    }

    /* Testimonial */
    .yswTestimonial {
        padding: 56px 15px;
    }

    .yswTestimonialInner {
        padding-left: 0;
        padding-top: 56px;
    }

    .yswQuoteMark {
        top: -10px;
        font-size: 90px;
    }

    /* Footer */
    .yswFooter {
        padding-top: 48px;
    }

    .yswFooterTop {
        padding-bottom: 48px;
    }

    .yswFooterBrand {
        align-items: center;
        justify-content: center;
        margin-bottom: 40px;
    }

    .yswCompassPanel {
        padding: 36px 28px;
        text-align: center;
    }

    .yswFooterCols {
        margin-top: 40px;
    }

    .yswCompassForm{
        margin: 24px auto;
    }

}

/* ============================================================
   RESPONSIVE — ≤ 575px (small mobile)
   ============================================================ */
@media (max-width: 575px) {
    .yswCompassInput{
        min-width: unset;
    }

    .yswH1 {
        font-size: 26px;
        line-height: 32px;
    }

    .yswH2 {
        font-size: 18px;
        line-height: 25px;
    }

    .yswH5 {
        font-size: 18px;
        line-height: 28px;
    }

    .yswEyebrow {
        font-size: 16px;
    }

    .yswHero {
        height: 480px;
    }

    .yswHeroActions {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        margin-top: 16px;
        flex-wrap: wrap;
    }

    .yswHero .yswBtnOutlineWhite {
        font-size: 12px;
        padding: 7px 14px;
        letter-spacing: 0.4px;
    }

    .yswHero .yswArrowLink {
        font-size: 12px;
        letter-spacing: 0.4px;
    }

    .yswYachtTypes {
        flex-direction: column;
    }

    .yswYachtType {
        height: 340px;
    }

    .yswYachtTypeContent {
        padding: 0 24px 32px;
    }

    .yswFounded {
        padding: 48px 0;
    }

    .yswPromoSlide {
        height: 460px;
    }

    .yswPromoContent {
        bottom: 96px;
    }

    .yswPromoCarousel.owl-carousel .owl-nav button.owl-prev,
    .yswPromoCarousel.owl-carousel .owl-nav button.owl-next {
        width: 44px;
        height: 44px;
        bottom: 40px;
    }

    .yswPromoCarousel.owl-carousel .owl-nav button.owl-prev {
        right: 84px;
    }

    .yswPromoCarousel.owl-carousel .owl-nav button.owl-next {
        right: 24px;
    }

    .yswPromoCarousel.owl-carousel .owl-dots {
        bottom: 52px;
        left: 24px;
    }

    .yswCollectionLogos {
        gap: 28px 36px;
    }

    .yswBrandWordmark {
        font-size: 24px;
    }

    .yswArrivalsHead {
        flex-wrap: wrap;
    }

    .yswCarouselBtn {
        width: 52px;
        height: 52px;
    }

    .yswServiceContent {
        padding: 0 24px 28px;
    }

    .yswServiceContent .yswH2 {
        font-size: 24px;
    }

    .yswTestimonialInner {
        padding-top: 48px;
    }

    .yswCompassForm {
        flex-direction: column;
    }

    .yswCompassInput {
        border-right: 1px solid var(--ysw-d9);
        border-radius: 4px;
        margin-bottom: 12px;
    }

    .yswCompassForm .yswBtnPrimary {
        border-radius: 4px;
        width: 100%;
    }

    .yswFooterPolicy {
        font-size: 14px;
    }
}

/* ============================================================
   ABOUT PAGE — CSS
   Design: Figma node 43:3712
   Reuses: header, footer, hero shell, typography & button utilities
   ============================================================ */

/* --- Hero (short variant) --- */
.yswHeroShort {
    height: 720px;
}

/* --- About Us intro --- */
.abtIntro {
    padding: 110px 0 120px;
    background-color: #fff;
}

.abtIntroInner {
    max-width: 1000px;
}

.abtIntroHeading {
    margin-top: 10px;
    max-width: 960px;
}

/* --- Full-width image band (shared) --- */
.yswFullImage {
    width: 100%;
    line-height: 0;
}

.yswFullImage img {
    width: 100%;
    height: 880px;
    object-fit: cover;
    display: block;
}

/* --- Card grid: image + title + text (shared) --- */
.yswCardGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px 80px;
}

.yswCardImgWrap {
    position: relative;
    width: 100%;
    padding-top: 62.66%;
    border-radius: 16px;
    overflow: hidden;
}

.yswCardImgWrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.yswCardItem:hover .yswCardImgWrap img {
    transform: scale(1.05);
}

.yswCardTitle {
    margin-top: 24px;
    margin-bottom: 10px;
}

/* --- Our Values --- */
.abtValues {
    padding: 110px 0;
    background-color: #fff;
}

.abtValuesFoot {
    display: flex;
    justify-content: center;
    margin-top: 64px;
}

/* --- Our Leadership --- */
.abtLeadership {
    padding: 10px 0 120px;
    margin: 0 80px;
    background-color: #fff;
}

.abtLeadershipImageWrap {
    position: relative;
    width: 100%;
    padding-top: 68%;
    border-radius: 4px;
    overflow: hidden;
}

.abtLeadershipImageWrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.abtLeadershipText {
    max-width: 560px;
    margin: 0 auto;
    padding: 0 15px;
}

.abtLeadershipText .yswH2 {
    margin-top: 8px;
}

.abtLeadList {
    list-style: disc;
    padding-left: 22px;
    margin-top: 16px;
}

.abtLeadList li {
    font-family: "Mona Sans", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: var(--ysw-slate);
    margin-bottom: 12px;
    font-variation-settings: 'wght' 400, 'wdth' 100;
}

.abtLeadList li:last-child {
    margin-bottom: 0;
}

.abtLeadLabel {
    font-weight: 700;
    color: var(--ysw-slate);
    font-variation-settings: 'wght' 700, 'wdth' 100;
}

/* --- About responsive --- */
@media (max-width: 991px) {
    .yswHeroShort {
        height: 520px;
    }

    .abtIntro {
        padding: 64px 0 72px;
    }

    .yswFullImage img {
        height: 480px;
    }

    .abtValues {
        padding: 64px 0;
    }

    .yswCardGrid {
        gap: 48px 32px;
    }

    .abtLeadership {
        padding: 0 0 72px;
    }

    .abtLeadershipImageWrap {
        margin-bottom: 40px;
        margin: 30px 0;
    }

    .abtLeadershipText {
        max-width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 575px) {
    .yswHeroShort {
        height: 440px;
    }

    .abtIntro {
        padding: 48px 0 56px;
    }

    .yswFullImage img {
        height: 300px;
    }

    .abtValues {
        padding: 48px 0;
    }

    .yswCardGrid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .abtValuesFoot {
        margin-top: 44px;
    }

    .abtValuesFoot .yswBtnOutlineBlue {
        width: 100%;
    }

    .abtLeadership {
        padding: 0 0 56px;
        margin: 15px 0;
    }
}

/* ============================================================
   SELL / TRADE PAGE — CSS
   Design: Figma node 47:1082
   Reuses: header, footer, hero shell, card grid, full-image band,
           shared form block (.yswForm*), typography & button utilities
   ============================================================ */

/* --- Intro --- */
.srtIntro {
    padding: 110px 0 120px;
    background-color: #fff;
}

.srtIntroInner {
    max-width: 1000px;
}

.srtIntroHeading {
    margin-top: 10px;
    max-width: 1000px;
}

.srtIntroActions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px 36px;
    margin-top: 36px;
}

/* --- Advantages --- */
.srtAdvantages {
    padding: 110px 0 120px;
    background-color: #fff;
}

.srtAdvantagesHead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 56px;
}

.srtAdvantagesHead .yswH2 {
    max-width: 560px;
}

.srtAdvantagesHead .yswBtnOutlineBlue {
    flex-shrink: 0;
}

/* --- Submit Boat for Review form --- */
.yswForm {
    background-color: var(--ysw-lightest-blue);
    padding: 100px 0;
}

.yswFormText {
    max-width: 470px;
    margin: 0 auto;
}

.yswFormLocations {
    margin-top: 40px;
}

.yswFormLoc {
    margin-top: 28px;
}

.yswFormLoc:first-child {
    margin-top: 0;
}

.yswFormPhone {
    font-family: "Mona Sans", sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--ysw-blue);
    display: block;
    margin: 6px 0;
    font-variation-settings: 'wght' 600, 'wdth' 125;
}

.yswFormPhone:hover {
    opacity: 0.7;
}

.yswFormCard {
    max-width: 480px;
    margin-left: auto;
    width: 100%;
}

.yswField {
    margin-bottom: 16px;
}

.yswInput {
    width: 100%;
    background-color: #fff;
    border: 1px solid var(--ysw-e6);
    border-radius: 4px;
    padding: 12px 18px;
    font-family: "Mona Sans", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: var(--ysw-blackish);
    outline: none;
    transition: border-color 0.2s ease;
    font-variation-settings: 'wght' 400, 'wdth' 100;
}

.yswInput::placeholder {
    color: rgba(51, 51, 51, 0.6);
}

.yswInput:focus {
    border-color: var(--ysw-blue);
}

.yswTextarea {
    height: 96px;
    resize: vertical;
}

.yswRadioLabel {
    margin: 4px 0 12px;
}

.yswRadioGroup {
    display: flex;
    gap: 28px;
    margin-bottom: 20px;
}

.yswRadio {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: "Mona Sans", sans-serif;
    font-size: 16px;
    color: var(--ysw-slate);
    margin: 0;
    font-variation-settings: 'wght' 400, 'wdth' 100;
}

.yswRadio input {
    width: 16px;
    height: 16px;
    accent-color: var(--ysw-blue);
    cursor: pointer;
}

.yswSubmitBtn {
    margin-top: 8px;
    padding-left: 40px;
    padding-right: 40px;
}

/* --- Sell/Trade responsive --- */
@media (max-width: 991px) {
    .srtIntro {
        padding: 64px 0 72px;
    }

    .srtAdvantages {
        padding: 64px 0 72px;
    }

    .srtAdvantagesHead {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 40px;
    }

    .yswForm {
        padding: 64px 0;
    }

    .yswFormText {
        max-width: 100%;
        margin-bottom: 48px;
    }

    .yswFormCard {
        margin-left: 0;
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .srtIntro {
        padding: 48px 0 56px;
    }

    .srtAdvantages {
        padding: 48px 0 56px;
    }

    .srtIntroActions .yswBtnOutlineBlue {
        width: 100%;
    }

    .srtAdvantagesHead .yswBtnOutlineBlue {
        width: 100%;
    }

    .yswForm {
        padding: 48px 0;
    }
}

/* ============================================================
   BRAND PAGE — CSS
   Design: Figma node 74:1311
   Reuses: header, footer, hero shell, listing cards, currency
           toggle, shared form block, typography & buttons
   ============================================================ */

/* --- Hero (mid variant) --- */
.yswHeroMid {
    height: 800px;
}

/* --- Brand intro band --- */
.brdIntro {
    background-color: var(--ysw-lightest-blue);
    padding: 80px 0;
}

.brdIntroInner {
    max-width: 940px;
    margin: 0 auto;
    text-align: center;
}

.brdIntroLogo {
    font-family: "Mona Sans", sans-serif;
    font-size: 44px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--ysw-blue);
    margin-bottom: 28px;
    font-variation-settings: 'wght' 600, 'wdth' 110;
}

.brdIntroText {
    max-width: 900px;
    margin: 0 auto;
}

/* --- Models ("Sailing is about feeling") --- */
.brdModels {
    padding: 90px 0 110px;
    background-color: #fff;
}

.brdModelsHead {
    text-align: center;
    margin-bottom: 60px;
}

.brdModelsText {
    max-width: 880px;
    margin: 16px auto 0;
}

.brdDivider {
    display: block;
    width: 80px;
    height: 2px;
    background-color: var(--ysw-blue);
    margin: 28px auto 0;
}

.brdModelGrid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px 32px;
}

.brdModelCard {
    display: block;
    color: inherit;
}

.brdModelImgWrap {
    position: relative;
    width: 100%;
    padding-top: 137.5%;
    border-radius: 16px;
    overflow: hidden;
}

.brdModelImgWrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.brdModelCard:hover .brdModelImgWrap img {
    transform: scale(1.05);
}

.brdModelTitle {
    margin-top: 22px;
    margin-bottom: 4px;
}

.brdModelSub {
    font-family: "Mona Sans", sans-serif;
    font-size: 16px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--ysw-blue);
    opacity: 0.6;
    font-variation-settings: 'wght' 400, 'wdth' 125;
}

/* --- Banner ("Dufour. For those who live for the open air.") --- */
.brdBanner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.brdBannerImg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brdBannerOverlay {
    position: absolute;
    inset: 0;
    background-color: rgba(4, 44, 101, 0.6);
}

.brdBannerInner {
    position: relative;
    z-index: 2;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.brdBannerContent {
    max-width: 840px;
    text-align: center;
}

.brdBannerText {
    margin-top: 20px;
}

.brdBannerActions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 24px;
    margin-top: 36px;
}

/* --- In Stock listings --- */
.brdInStock {
    padding: 110px 0 120px;
    background-color: #fff;
}

.brdInStockHead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
}

.brdListingGrid [class*="col-"] {
    margin-bottom: 56px;
}

/* --- Brand page responsive --- */
@media (max-width: 991px) {
    .yswHeroMid {
        height: 520px;
    }

    .brdIntro {
        padding: 56px 0;
    }

    .brdIntroLogo {
        font-size: 36px;
    }

    .brdModels {
        padding: 64px 0 72px;
    }

    .brdModelsHead {
        margin-bottom: 44px;
    }

    .brdModelGrid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px 24px;
    }

    .brdBannerInner {
        min-height: 480px;
        padding: 64px 0;
    }

    .brdInStock {
        padding: 64px 0 24px;
    }

    .brdListingGrid [class*="col-"] {
        margin-bottom: 44px;
    }
}

@media (max-width: 575px) {
    .yswHeroMid {
        height: 460px;
    }

    .brdIntro {
        padding: 44px 0;
    }

    .brdIntroLogo {
        font-size: 30px;
    }

    .brdModels {
        padding: 48px 0 56px;
    }

    .brdModelGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 20px;
    }

    .brdBannerInner {
        min-height: 420px;
        padding: 56px 0;
    }

    .brdBannerActions .yswBtnOutlineWhite {
        width: 100%;
    }

    .brdInStock {
        padding: 48px 0 8px;
    }

    .brdInStockHead {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 36px;
    }
}

/* ============================================================
   SERVICE PAGE — CSS
   Design: Figma node 52:858
   Reuses: header, footer, hero shell, carousel buttons, shared
           form block, typography & button utilities
   ============================================================ */

/* --- Intro --- */
.svcIntro {
    padding: 110px 0 120px;
    background-color: #fff;
}

.svcIntroInner {
    max-width: 1000px;
}

.svcIntroHeading {
    margin-top: 10px;
}

/* --- Core Service Capabilities --- */
.svcCapabilities {
    background-color: var(--ysw-lightest-blue);
    padding: 100px 0;
}

.svcCapLayout {
    display: flex;
    align-items: flex-start;
    gap: 56px;
    padding-left: 10%;
}

.svcCapHead {
    width: 420px;
    flex-shrink: 0;
}

.svcCapNav {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}

.svcCapCarouselWrap {
    flex: 1;
    min-width: 0;
}

.svcCapImgWrap {
    position: relative;
    width: 100%;
    padding-top: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.svcCapImgWrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.svcCapCard:hover .svcCapImgWrap img {
    transform: scale(1.05);
}

.svcCapTitle {
    margin-top: 24px;
    margin-bottom: 10px;
}

/* --- Peace of Mind (image + text) --- */
.svcCourse {
    background-color: #fff;
    padding: 100px 0 120px;
}

.svcCourseImageWrap {
    position: relative;
    width: 100%;
    padding-top: 68%;
    border-radius: 4px;
    overflow: hidden;
}

.svcCourseImageWrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.svcCourseText {
    max-width: 560px;
    margin: 0 auto;
}

.svcCourseText .yswH2 {
    margin-top: 8px;
}

/* --- Service responsive --- */
@media (max-width: 991px) {
    .svcIntro {
        padding: 64px 0 72px;
    }

    .svcCapabilities {
        padding: 64px 0;
    }

    .svcCapLayout {
        flex-direction: column;
        gap: 32px;
        padding-left: 0;
        /* The base rule's align-items:flex-start aligns vertically while this is
           a row. Once it becomes a column that same value controls the HORIZONTAL
           axis, so the children stop stretching and size to max-content — which
           for the carousel is the whole Owl stage (~2865px). Stretch them back. */
        align-items: stretch;
    }

    .svcCapHead {
        width: 100%;
    }

    .svcCapCarouselWrap {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .svcCapNav {
        margin-top: 24px;
    }

    /* Card goes near full-width once stacked, so cap the image height
       instead of letting the 1:1 ratio scale with the card. */
    .svcCapImgWrap {
        padding-top: 0;
        height: 62vw;
        max-height: 340px;
        border-radius: 12px;
    }

    .svcCapTitle {
        margin-top: 18px;
    }

    .svcCourse {
        padding: 0 0 72px;
    }

    .svcCourseImageWrap {
        margin-bottom: 40px;
    }

    .svcCourseText {
        max-width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 575px) {
    .svcIntro {
        padding: 48px 0 56px;
    }

    .svcCapabilities {
        padding: 48px 0;
    }

    .svcCapImgWrap {
        height: 58vw;
        max-height: 260px;
    }

    .svcCourse {
        padding: 0 0 56px;
    }
}

/* ============================================================
   JOURNAL PAGE — CSS
   Design: Figma node 43:4053
   Reuses: header, footer, hero shell, typography, arrow link &
           button utilities
   ============================================================ */

/* --- Hero (slim variant) --- */
.yswHeroSlim {
    height: 480px;
}

.yswHeroSlim .yswHeroOverlay {
    background: rgba(4, 44, 101, 0.62);
}

.jrnHeroSub {
    max-width: 880px;
    margin-top: 20px;
}

/* --- Top Entry --- */
.jrnTop {
    padding: 90px 0;
    background-color: #fff;
    margin: 0 80px;
}

.jrnTopImageWrap {
    position: relative;
    width: 100%;
    padding-top: 68%;
    border-radius: 4px;
    overflow: hidden;
}

.jrnTopImageWrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jrnTopText {
    max-width: 560px;
    margin-left: auto;
}

.jrnTopText .yswH2 {
    margin-top: 8px;
}

/* --- Entries --- */
.jrnEntries {
    padding: 80px 0 110px;
    border-top: 1px solid var(--ysw-e6);
    background-color: #fff;
}

.jrnEntriesHead {
    margin-bottom: 28px;
}

.jrnTabs {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 36px;
    margin-bottom: 52px;
}

.jrnTab {
    position: relative;
    background: none;
    border: none;
    padding: 0 0 10px;
    cursor: pointer;
    font-family: "Mona Sans", sans-serif;
    font-size: 20px;
    line-height: 32px;
    color: var(--ysw-slate);
    transition: color 0.2s ease;
    font-variation-settings: 'wght' 320, 'wdth' 125;
}

.jrnTab:hover {
    color: var(--ysw-blue);
}

.jrnTab.active {
    color: var(--ysw-blue);
}

.jrnTab.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 24px;
    height: 2px;
    background-color: var(--ysw-blue);
}

/* --- Article cards --- */
.jrnGrid [class*="col-"] {
    margin-bottom: 56px;
}

.jrnCardImgWrap {
    display: block;
    position: relative;
    width: 100%;
    padding-top: 54.55%;
    border-radius: 8px;
    overflow: hidden;
}

.jrnCardImgWrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.jrnCard:hover .jrnCardImgWrap img {
    transform: scale(1.05);
}

.jrnCardCat {
    margin-top: 24px;
}

.jrnCardTitle {
    margin-top: 6px;
    margin-bottom: 10px;
}

.jrnCard .yswArrowLink {
    margin-top: 18px;
}

/* --- Journal responsive --- */
@media (max-width: 991px) {
    .yswHeroSlim {
        height: 400px;
    }

    .jrnTop {
        padding: 64px 0;
        margin: 0 30px;
    }

    .jrnTopImageWrap {
        margin-bottom: 40px;
    }

    .jrnTopText {
        max-width: 100%;
        margin-left: 0;
    }

    .jrnEntries {
        padding: 56px 0 24px;
    }

    .jrnGrid [class*="col-"] {
        margin-bottom: 44px;
    }
}

@media (max-width: 575px) {
    .yswHeroSlim {
        height: 360px;
    }

    .jrnTop {
        padding: 48px 0;
        margin: 0 15px;
    }

    .jrnEntries {
        padding: 48px 0 8px;
    }

    .jrnTabs {
        gap: 14px 24px;
        margin-bottom: 36px;
    }

    .jrnTab {
        font-size: 18px;
    }
}

/* ============================================================
   JOURNAL ENTRY PAGE — CSS
   Design: Figma node 47:832
   Reuses: header, footer, typography & button utilities
   ============================================================ */

/* --- Hero image --- */
.jreHero {
    position: relative;
    padding-top: 34%;
    min-height: 400px;
}

.jreHero img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Article --- */
.jreArticle {
    padding: 70px 0 120px;
    background-color: #fff;
}

.jreArticleInner {
    max-width: 1120px;
    margin: 0 auto;
}

.jreCategory {
    margin-top: 14px;
}

.jreLead {
    margin-top: 34px;
}

.jreLead h2{
    font-family: "Mona Sans", sans-serif;
    font-size: 24px;
    line-height: 32px;
    margin: 16px 0;
    color: #222;
    font-weight: 600;
}

.jreLead h3{
    font-family: "Mona Sans", sans-serif;
    font-size: 24px;
    line-height: 32px;
    margin: 16px 0;
    color: #222;
    font-weight: 600;
}

.jreLead h4{
    font-family: "Mona Sans", sans-serif;
    font-size: 24px;
    line-height: 32px;
    margin: 16px 0;
    color: #222;
    font-weight: 600;
}

.jreLead h5{
    font-family: "Mona Sans", sans-serif;
    font-size: 24px;
    line-height: 32px;
    margin: 16px 0;
    color: #222;
    font-weight: 600;
}

.jreLead h6{
    font-family: "Mona Sans", sans-serif;
    font-size: 24px;
    line-height: 32px;
    margin: 16px 0;
    color: #222;
    font-weight: 600;
}

.jreLead p{
    font-family: "Mona Sans", sans-serif;
    font-size: 16px;
    line-height: 20px;
    margin: 8px 0;
    color: #222;
    font-weight: 400;
}

.jreLead img{
    margin: 16px ;
}

.jreDivider {
    height: 1px;
    background-color: var(--ysw-e6);
    border: none;
    margin: 40px 0;
}

/* --- Article body (prose) --- */
.jreBody h3 {
    font-family: "Mona Sans", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ysw-blue);
    margin: 32px 0 14px;
    font-variation-settings: 'wght' 600, 'wdth' 125;
}

.jreBody>h3:first-child {
    margin-top: 0;
}

.jreBody p {
    font-family: "Mona Sans", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: var(--ysw-slate);
    margin-bottom: 16px;
    font-variation-settings: 'wght' 400, 'wdth' 100;
}

.jreBody ul {
    list-style: disc;
    padding-left: 22px;
    margin: 0 0 16px;
}

.jreBody li {
    font-family: "Mona Sans", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: var(--ysw-slate);
    margin-bottom: 8px;
    font-variation-settings: 'wght' 400, 'wdth' 100;
}

.jreBody li:last-child {
    margin-bottom: 0;
}

.jreBody strong {
    font-weight: 700;
    color: var(--ysw-slate);
    font-variation-settings: 'wght' 700, 'wdth' 100;
}

/* --- Shop With Confidence CTA --- */
.jreCta {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 56px;
}

.jreCtaImg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jreCtaOverlay {
    position: absolute;
    inset: 0;
    background-color: rgba(4, 44, 101, 0.8);
}

.jreCtaContent {
    position: relative;
    z-index: 2;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 28px;
    padding: 60px 24px;
}

/* --- Journal Entry responsive --- */
@media (max-width: 991px) {

    .jreArticle {
        padding: 48px 0 72px;
    }

    .jreCtaContent {
        min-height: 380px;
    }
}

@media (max-width: 575px) {

    .jreArticle {
        padding: 40px 0 56px;
    }

    .jreBody h3 {
        font-size: 18px;
    }

    .jreCtaContent {
        min-height: 320px;
        gap: 22px;
    }

    .jreCtaContent .yswBtnOutlineWhite {
        width: 100%;
        max-width: 320px;
    }
}

/* ============================================================
   EVENT DETAILS PAGE — CSS
   Design: Figma node 56:1610
   Reuses: header, footer, listing cards, currency toggle, shared
           form block, brand wordmark, typography & buttons
   ============================================================ */

/* --- Hero card --- */
.evtHero {
    padding: 80px 0 0;
    background-color: #fff;
}

.evtHeroCard {
    position: relative;
    width: 100%;
    height: 680px;
    border-radius: 16px;
    overflow: hidden;
}

.evtHeroImg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: rgba(0, 0, 0, 0.4);
}

.introAndInfoWrap{
    display: flex;
    align-items:center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.evtHeroOverlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 11, 27, 0.4);
}

.evtHeroContent {
    position: absolute;
    left: 56px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.evtHeroContent .yswEyebrow {
    opacity: 1;
    margin-bottom: 8px;
}

.evtHeroInfo {
    /* position: absolute;
    right: 40px;
    bottom: 40px;
    z-index: 2; */
    width: 420px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.evtHeroInfoRow {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 28px;
}

.evtHeroInfoRow:not(:last-child) {
    border-bottom: 1px solid var(--ysw-e6);
}

.evtHeroInfoIcon {
    font-size: 22px;
    color: var(--ysw-blue);
    flex-shrink: 0;
}

.evtHeroInfoLabel {
    font-family: "Mona Sans", sans-serif;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--ysw-blue);
    opacity: 0.6;
    font-variation-settings: 'wght' 400, 'wdth' 125;
}

.evtHeroInfoValue {
    font-family: "Mona Sans", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ysw-blackish-blue);
    font-variation-settings: 'wght' 600, 'wdth' 125;
}

/* --- Event intro --- */
.evtIntro {
    padding: 80px 0 0;
    background-color: #fff;
}

.evtIntroInner {
    max-width: 1080px;
}

/* --- Brands Represented --- */
.evtBrands {
    padding: 70px 0 90px;
    background-color: #fff;
}

.evtBrandsRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.evtBrandsHeading {
    max-width: 420px;
    flex-shrink: 0;
}

.evtBrandLogos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.evtBrandBox {
    width: 220px;
    height: 128px;
    border: 1px solid var(--ysw-e6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.evtBrandBox img {
    max-height: 38px;
    max-width: 80%;
    width: auto;
    object-fit: contain;
}

.evtBrandBox .yswBrandWordmark {
    font-size: 22px;
    text-align: center;
}

/* --- Photo strip --- */
.evtPhotoStrip {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.evtPhotoStrip::-webkit-scrollbar {
    display: none;
}

.evtPhotoTrack {
    display: flex;
    gap: 4px;
    width: max-content;
}

.evtPhotoItem {
    flex: 0 0 600px;
}

.evtPhotoItem img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

/* --- Yachts Featured --- */
.evtFeatured {
    padding: 100px 0 110px;
    background-color: #fff;
}

.evtFeaturedHead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
}

.evtListingGrid [class*="col-"] {
    margin-bottom: 56px;
}

/* --- Event info cards (above form) --- */
.evtInfoCards {
    display: flex;
    gap: 20px;
    margin-bottom: 56px;
}

.evtInfoCard {
    flex: 1;
    background-color: #fff;
    border: 1px solid var(--ysw-e6);
    border-radius: 8px;
    padding: 26px 32px;
}

.evtInfoLabel {
    margin-bottom: 10px;
}

.evtInfoValue {
    font-family: "Mona Sans", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: var(--ysw-slate);
    font-variation-settings: 'wght' 400, 'wdth' 100;
}

/* --- Event Details responsive --- */
@media (max-width: 991px) {
    .evtHero {
        padding: 40px 0 0;
    }

    .evtHeroCard {
        height: 480px;
    }

    .evtHeroContent {
        left: 32px;
        top: 32px;
        transform: none;
    }

    .evtHeroInfo {
        left: 16px;
        right: 16px;
        bottom: 16px;
        width: auto;
    }

    .evtIntro {
        padding: 56px 0 0;
    }

    .evtBrands {
        padding: 48px 0 64px;
    }

    .evtBrandsRow {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }

    .evtBrandsHeading {
        max-width: 100%;
    }

    .evtPhotoItem {
        flex-basis: 440px;
    }

    .evtPhotoItem img {
        height: 360px;
    }

    .evtFeatured {
        padding: 64px 0 24px;
    }

    .evtListingGrid [class*="col-"] {
        margin-bottom: 44px;
    }
}

@media (max-width: 575px) {
    .evtHeroCard {
        height: 440px;
    }

    .evtHeroContent {
        left: 20px;
        right: 20px;
    }

    .evtHeroInfoRow {
        padding: 14px 18px;
        gap: 12px;
    }

    .evtHeroInfoValue {
        font-size: 17px;
    }

    .evtIntro {
        padding: 44px 0 0;
    }

    .evtBrands {
        padding: 40px 0 48px;
    }

    .evtBrandBox {
        width: 100%;
    }

    .evtPhotoItem {
        flex-basis: 280px;
    }

    .evtPhotoItem img {
        height: 260px;
    }

    .evtFeatured {
        padding: 48px 0 8px;
    }

    .evtFeaturedHead {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 36px;
    }

    .evtInfoCards {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 44px;
    }
}

/* ============================================================
   EVENTS & CONTACT PAGES — CSS
   Designs: Figma nodes 56:1157 (Events) / 61:2348 (Contact)
   Reuses: header, footer, hero shell, journal card grid (.jrn*),
           shared form inputs, typography & button utilities
   ============================================================ */

/* --- Shared 600px hero banner --- */
.yswHeroBanner {
    height: 600px;
}

.yswHeroBanner .yswHeroOverlay {
    background: rgba(4, 44, 101, 0.5);
}

/* --- Events list --- */
.evtsList {
    padding: 80px 0 110px;
    background-color: #fff;
}

/* --- Contact form --- */
.cntForm {
    padding: 90px 0 100px;
    background-color: var(--ysw-lightest-blue);
}

.cntFormInner {
    max-width: 740px;
    margin: 0 auto;
    text-align: center;
    padding: 0 15px;
}

.cntFormHeading {
    margin-top: 6px;
}

.cntFormSub {
    max-width: 740px;
    margin: 18px auto 0;
}

.cntFormFields {
    margin-top: 36px;
    text-align: left;
}

.cntSelect {
    cursor: pointer;
}

.cntFormFoot {
    text-align: center;
    margin-top: 8px;
}

.cntFormFoot .yswBtnPrimary {
    padding-left: 40px;
    padding-right: 40px;
}

/* --- Contact locations --- */
.cntLocations {
    padding: 100px 0 110px;
    background-color: #fff;
}

.cntLocHead {
    max-width: 860px;
    margin: 0 auto 56px;
    text-align: center;
}

.cntLocHead .yswH2 {
    margin-top: 6px;
}

.cntLocHeadText {
    max-width: 740px;
    margin: 16px auto 0;
}

.cntLocGrid {
    display: flex;
    gap: 40px;
}

.cntLocCard {
    flex: 1;
    min-width: 0;
}

.cntLocImgWrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.cntLocImgWrap iframe{
    width: 100% !important;
}


.cntLocImgWrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cntLocInfo {
    border: 1px solid var(--ysw-e6);
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 40px 48px;
}

.cntLocInfo .yswH2 {
    margin-top: 4px;
}

.cntLocInfo .yswFormPhone {
    margin-top: 10px;
}

.cntLocHours {
    margin-top: 22px;
}

.cntLocHoursLabel {
    font-family: "Mona Sans", sans-serif;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--ysw-blue);
    opacity: 0.6;
    margin-bottom: 4px;
    font-variation-settings: 'wght' 400, 'wdth' 125;
}

/* --- Events & Contact responsive --- */
@media (max-width: 991px) {
    .yswHeroBanner {
        height: 440px;
    }

    .evtsList {
        padding: 56px 0 24px;
    }

    .cntForm {
        padding: 56px 0 64px;
    }

    .cntLocations {
        padding: 64px 0 72px;
    }

    .cntLocGrid {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 575px) {
    .yswHeroBanner {
        height: 340px;
    }

    .evtsList {
        padding: 44px 0 8px;
    }

    .cntForm {
        padding: 44px 0 56px;
    }

    .cntLocations {
        padding: 48px 0 56px;
    }

    .cntLocInfo {
        padding: 32px 28px;
    }
}

/* ============================================================
   TEAM PAGE — CSS
   Design: Figma node 80:1746
   Reuses: header, footer, typography, brand divider & buttons
   ============================================================ */

/* --- Intro --- */
.tmIntro {
    padding: 100px 0 80px;
    background-color: #fff;
    text-align: center;
}

.tmIntroInner {
    max-width: 1120px;
    margin: 0 auto;
}

.tmIntroHeading {
    margin-top: 10px;
}

.tmIntroText {
    max-width: 1080px;
    margin: 24px auto 0;
}

.tmIntroNote {
    margin-top: 4px;
}

/* --- Team grid --- */
.tmGrid {
    padding: 0 0 120px;
    background-color: #fff;
}

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

.tmCard {
    position: relative;
    width: 100%;
    padding-top: 160%;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.tmCardImg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tmCard:hover .tmCardImg {
    transform: scale(1.05);
}

.tmCardGradient {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 52%;
    background: linear-gradient(180deg, rgba(4, 44, 101, 0) 0%, rgba(4, 44, 101, 0.9) 100%);
}

.tmCardContent {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    padding: 40px;
}

.tmCardRole {
    margin-top: 6px;
    opacity: 0.85;
}

.tmCardPlus {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    border: none;
    background-color: #fff;
    color: var(--ysw-blue);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.tmCardPlus:hover {
    background-color: var(--ysw-blue);
    color: #fff;
}

/* --- Team responsive --- */
@media (max-width: 991px) {
    .tmIntro {
        padding: 64px 0 56px;
    }

    .tmGrid {
        padding: 0 0 72px;
    }

    .tmGridInner {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 24px;
    }

    .tmCardContent {
        padding: 28px;
    }
}

@media (max-width: 575px) {
    .tmIntro {
        padding: 48px 0 44px;
    }

    .tmGrid {
        padding: 0 0 56px;
    }

    .tmGridInner {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ============================================================
   TESTIMONIALS PAGE — CSS
   Design: Figma node 80:2261
   Reuses: header, footer, typography & button utilities
   ============================================================ */

/* --- Intro --- */
.tstIntro {
    padding: 100px 0 80px;
    background-color: #fff;
    text-align: center;
}

.tstIntroHeading {
    margin-top: 10px;
}

.tstIntro .yswBtnPrimary {
    margin-top: 32px;
}

/* --- Testimonial wall (masonry) --- */
.tstWall {
    padding: 0 0 110px;
    background-color: #fff;
}

.tstColumns {
    column-count: 3;
    column-gap: 40px;
}

.tstCard {
    break-inside: avoid;
    background-color: var(--ysw-lightest-blue);
    border-radius: 16px;
    padding: 40px 48px 44px;
    margin-bottom: 40px;
}

.tstQuote {
    font-size: 28px;
    color: var(--ysw-blue);
    line-height: 1;
}

.tstText {
    margin-top: 20px;
}

.tstAuthor {
    margin-top: 24px;
}

/* --- Video testimonial card --- */
.tstVideo {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 61.9%;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
    background: linear-gradient(135deg, var(--ysw-blue) 0%, var(--ysw-blackish-blue) 100%);
    cursor: pointer;
}

.tstVideoPlay {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.92);
    color: var(--ysw-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.25s ease;
}

.tstVideo:hover .tstVideoPlay {
    background-color: #fff;
    transform: translate(-50%, -50%) scale(1.08);
}

/* --- Testimonials responsive --- */
@media (max-width: 991px) {
    .tstIntro {
        padding: 64px 0 56px;
    }

    .tstWall {
        padding: 0 0 72px;
    }

    .tstColumns {
        column-count: 2;
        column-gap: 24px;
    }

    .tstCard {
        padding: 32px 32px 36px;
        margin-bottom: 24px;
    }
}

@media (max-width: 575px) {
    .tstIntro {
        padding: 48px 0 44px;
    }

    .tstWall {
        padding: 0 0 56px;
    }

    .tstColumns {
        column-count: 1;
    }

    .tstIntro .yswBtnPrimary {
        width: 100%;
    }
}

/* ============================================================
   FINANCING PAGE — CSS
   Design: Figma node 84:1681
   Reuses: header, footer, hero shell, typography & button utils
   ============================================================ */

/* --- Intro --- */
.finIntro {
    padding: 110px 0 120px;
    background-color: #fff;
}

.finIntroInner {
    max-width: 1000px;
}

.finIntroHeading {
    margin-top: 10px;
}

/* --- Why Finance Through Us --- */
.finWhy {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.finWhyImg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.finWhyOverlay {
    position: absolute;
    inset: 0;
    background-color: rgba(4, 44, 101, 0.45);
}

.finWhyInner {
    position: relative;
    z-index: 2;
}

.finWhyHead {
    margin-bottom: 48px;
}

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

.finWhyCard {
    background-color: rgba(255, 255, 255, 0.92);
    border-radius: 16px;
    padding: 40px;
}

.finWhyIcon {
    display: block;
    font-size: 40px;
    color: var(--ysw-blue);
    margin-bottom: 24px;
}

.finWhyCardTitle {
    margin-bottom: 12px;
}

.finWhyFoot {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

/* --- Financing responsive --- */
@media (max-width: 991px) {
    .finIntro {
        padding: 64px 0 72px;
    }

    .finWhy {
        padding: 64px 0;
    }

    .finWhyHead {
        margin-bottom: 36px;
    }

    .finWhyGrid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 575px) {
    .finIntro {
        padding: 48px 0 56px;
    }

    .finWhy {
        padding: 48px 0;
    }

    .finWhyCard {
        padding: 32px 28px;
    }

    .finWhyFoot .yswBtnOutlineWhite {
        width: 100%;
    }
}

/* ============================================================
   FRANCE PICKUP PAGE — CSS
   Design: Figma node 88:1945
   Reuses: header, footer, hero shell, brand wordmark, typography
   ============================================================ */

/* --- Hero --- */
.fpHeroHeading {
    margin-top: 16px;
}

.fpHeroAccent {
    color: #5B9FD4;
}

.fpHeroLoc {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    font-family: "Mona Sans", sans-serif;
    font-size: 16px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #fff;
    font-variation-settings: 'wght' 400, 'wdth' 125;
}

/* --- Brand band --- */
.fpBrands {
    padding: 56px 0;
    background-color: #fff;
}

.fpBrandsRow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 80px;
}

.fpBrandCard{
    max-width: 220px;
}

.fpBrandCard img {
    width: 100%;
    object-fit: contain;
}

.fpBrandsYsw {
    cursor: default;
}

/* --- Your Journey (dark section) --- */
.fpJourney {
    background-color: #0a1f3d;
    padding: 90px 0 100px;
}

.fpJourney .yswEyebrow {
    opacity: 1;
}

.fpJourneyEyebrow {
    display: block;
    margin-bottom: 28px;
}

.fpPanel {
    background-color: #0f2847;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
}

.fpPanelLead {
    max-width: 960px;
}

.fpPanelLead .yswPara {
    margin-top: 16px;
}

.fpPanelText {
    color: rgba(255, 255, 255, 0.8);
}

.fpGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
}

.fpStepNum {
    font-family: "Mona Sans", sans-serif;
    font-size: 16px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-variation-settings: 'wght' 400, 'wdth' 125;
}

.fpStep .yswH3 {
    margin: 8px 0 12px;
}

.fpNote {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 960px;
    margin-top: 24px;
}

.fpNoteIcon {
    flex-shrink: 0;
    font-size: 18px;
    color: #fff;
    margin-top: 3px;
}

/* --- France Pickup responsive --- */
@media (max-width: 991px) {
    .fpBrands {
        padding: 40px 0;
    }

    .fpBrandsRow {
        gap: 24px;
    }

    .fpJourney {
        padding: 64px 0 72px;
    }

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

@media (max-width: 575px) {
    .fpJourney {
        padding: 48px 0 56px;
    }

    .fpPanel {
        padding: 28px 24px;
    }
}


/* ============================================================
   MODEL DETAIL PAGE — CSS (OWYG Style)
   Clean, minimal design with black & white theme
   ============================================================ */

/* --- Hero Section --- */
.mdHero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.mdHeroImg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mdHeroContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 90%;
}

.mdHeroLogo {
    max-height: 120px;
    width: auto;
    margin-bottom: 30px;
}

.mdHeroTitle {
    color: #fff;
    font-size: 48px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-family: "Mona Sans", sans-serif;
}

.mdBtnWhite {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 40px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: "Mona Sans", sans-serif;
}

.mdBtnWhite:hover {
    background: #fff;
    color: #000;
}

.mdBtnBlack {
    background: #000;
    border: 2px solid #000;
    color: #fff;
    padding: 12px 40px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: "Mona Sans", sans-serif;
    margin-right: 15px;
}

.mdBtnBlack:hover {
    background: #fff;
    color: #000;
}

.mdBtnOutlineBlack {
    background: transparent;
    border: 2px solid #000;
    color: #000;
    padding: 12px 40px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: "Mona Sans", sans-serif;
}

.mdBtnOutlineBlack:hover {
    background: #000;
    color: #fff;
}

/* --- Container --- */
.mdContainer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- About Section --- */
.mdAbout {
    padding: 80px 0;
}

.mdSectionTitle {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-align: center;
    font-family: "Mona Sans", sans-serif;
}

.mdAboutContent {
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    font-family: "Mona Sans", sans-serif;
}

.mdAboutCTA {
    text-align: center;
    margin-top: 40px;
}

/* --- Video/Features Section --- */
.mdFeatures {
    padding: 60px 0;
    background: #f8f9fa;
}

.mdFeatureTitle {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 50px;
    text-align: center;
    font-family: "Mona Sans", sans-serif;
}

.mdVideoWrap {
    position: relative;
    padding-top: 56.25%;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.mdVideoWrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mdFeatureCTA {
    text-align: center;
    margin-top: 30px;
}

/* --- Specifications Section --- */
.mdSpecs {
    padding: 80px 0;
}

.mdSpecsGrid {
    max-width: 1200px;
    margin: 0 auto;
}

.mdSpecCard {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.mdSpecLabel {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #666;
    margin-bottom: 15px;
    font-family: "Mona Sans", sans-serif;
}

.mdSpecValue {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0;
    font-family: "Mona Sans", sans-serif;
}

/* --- Gallery Section --- */
.mdGallery {
    padding: 60px 0;
    background: #fff;
}

.mdGalleryTitle {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    font-family: "Mona Sans", sans-serif;
}

.mdGalleryItem {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.mdGalleryImg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mdGalleryItem:hover .mdGalleryImg {
    transform: scale(1.05);
}

/* --- Virtual Tour Section --- */
.mdVirtualTour {
    padding: 80px 20px;
    background: #000;
    color: #fff;
    text-align: center;
    margin-top: 60px;
    border-radius: 16px;
}

.mdVirtualTitle {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-family: "Mona Sans", sans-serif;
}

.mdVirtualSubtitle {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 40px;
    font-family: "Mona Sans", sans-serif;
}

.mdVirtualText {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.8);
    font-family: "Mona Sans", sans-serif;
}

/* --- Listings Section --- */
.mdListings {
    padding: 80px 0;
}

.mdListingsPlaceholder {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.mdListingsText {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    font-family: "Mona Sans", sans-serif;
}

/* --- Final CTA Section --- */
.mdCTA {
    padding: 80px 20px;
    background: #000;
    color: #fff;
    text-align: center;
    margin-top: 60px;
}

.mdCTATitle {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-family: "Mona Sans", sans-serif;
}

.mdCTASubtitle {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 40px;
    font-family: "Mona Sans", sans-serif;
}

.mdCTABtn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 15px 50px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: "Mona Sans", sans-serif;
}

.mdCTABtn:hover {
    background: #fff;
    color: #000;
}

/* ============================================================
   TEAM MEMBER DETAIL MODAL CUSTOM STYLING (UNIQUE CLASSES)
   ============================================================ */
.ysw-team-modal-content {
    border: none !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 40px rgba(0, 11, 27, 0.15) !important;
    overflow: hidden;
    position: relative;
}

.ysw-team-modal-close {
    position: absolute !important;
    top: 24px !important;
    right: 24px !important;
    font-size: 28px !important;
    color: #000B1B !important;
    opacity: 0.6 !important;
    z-index: 10;
    background: none !important;
    border: none !important;
    transition: opacity 0.2s ease !important;
}

.ysw-team-modal-close:hover {
    opacity: 1 !important;
    outline: none !important;
}

.ysw-team-modal-body {
    padding: 48px !important;
}

.ysw-team-modal-img-wrap {
    border-radius: 12px;
    overflow: hidden;
    background-color: #e6e6e6;
    aspect-ratio: 3 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.ysw-team-modal-info {
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.ysw-team-modal-name {
    font-family: "Mona Sans", sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 44px;
    color: #042C65; /* Matches --ysw-blue */
    text-transform: uppercase;
    margin-bottom: 8px;
    font-variation-settings: 'wght' 600, 'wdth' 125;
}

.ysw-team-modal-role {
    font-family: "Mona Sans", sans-serif;
    font-size: 16px;
    color: #708090;
    margin-bottom: 24px;
    font-variation-settings: 'wght' 400, 'wdth' 100;
}

.ysw-team-modal-phone {
    font-family: "Mona Sans", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #042C65;
    margin-bottom: 24px;
    font-variation-settings: 'wght' 600, 'wdth' 125;
}

.ysw-team-modal-bio-wrap {
    max-height: 220px;
    overflow-y: auto;
    margin-bottom: 32px;
    max-height: 250px;
}

/* Custom scrollbar styling for bio scroll area */
.ysw-team-modal-bio-wrap::-webkit-scrollbar {
    width: 4px;
}

.ysw-team-modal-bio-wrap::-webkit-scrollbar-track {
    background: #f5f9ff;
}

.ysw-team-modal-bio-wrap::-webkit-scrollbar-thumb {
    background: #042C65;
    border-radius: 4px;
}

.ysw-team-modal-bio {
    font-family: "Mona Sans", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #333333;
}

.ysw-team-modal-bio p {
    margin-bottom: 12px;
}

.ysw-team-modal-btn {
    align-self: flex-start;
    background-color: #042C65 !important;
    color: #ffffff !important;
    font-family: "Mona Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 12px 36px;
    border-radius: 4px;
    transition: all 0.25s ease;
    font-variation-settings: 'wght' 600, 'wdth' 125;
    text-align: center;
    text-decoration: none !important;
}

.ysw-team-modal-btn:hover {
    background-color: #000B1B !important;
    color: #ffffff !important;
}

/* --- Responsive Styles --- */
@media (max-width: 991px) {
    .mdHero {
        height: 500px;
    }

    .mdHeroTitle {
        font-size: 36px;
    }

    .mdHeroLogo {
        max-height: 100px;
        margin-bottom: 20px;
    }

    .mdAbout,
    .mdSpecs {
        padding: 60px 0;
    }

    .mdSectionTitle {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .mdGallery {
        padding: 40px 0;
    }

    .mdVirtualTour,
    .mdCTA {
        padding: 60px 20px;
        margin-top: 40px;
    }

    .mdVirtualTitle,
    .mdCTATitle {
        font-size: 28px;
    }

    .mdVirtualSubtitle,
    .mdCTASubtitle {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .ysw-team-modal-body {
        padding: 32px 24px !important;
    }

    .ysw-team-modal-info {
        padding-left: 0;
        margin-top: 24px;
    }
    
    .ysw-team-modal-img-wrap {
        max-width: 280px;
        margin: 0 auto;
    }
    .mdHero {
        height: 400px;
    }

    .mdHeroTitle {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .mdHeroLogo {
        max-height: 80px;
        margin-bottom: 15px;
    }

    .mdBtnWhite,
    .mdBtnBlack,
    .mdBtnOutlineBlack {
        padding: 10px 30px;
        font-size: 12px;
        display: block;
        margin: 10px auto;
    }

    .mdAbout,
    .mdSpecs {
        padding: 40px 0;
    }

    .mdSectionTitle {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .mdSpecCard {
        padding: 20px 15px;
    }

    .mdGallery {
        padding: 30px 0;
    }

    .mdGalleryTitle,
    .mdFeatureTitle {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .mdVirtualTour,
    .mdCTA {
        padding: 40px 15px;
        margin-top: 30px;
    }

    .mdVirtualTitle,
    .mdCTATitle {
        font-size: 24px;
    }

    .mdVirtualSubtitle,
    .mdCTASubtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .mdCTABtn {
        padding: 12px 40px;
        font-size: 14px;
    }
}

/* ============================================
   MODEL DETAIL OWL CAROUSEL STYLES
   ============================================ */

.mdGalleryCarousel.owl-carousel {
    position: relative;
}

.mdGalleryCarousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.mdGalleryCarousel .owl-nav button {
    pointer-events: all;
    background: rgba(0, 0, 0, 0.5) !important;
    color: #fff !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    line-height: 1;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: "Mona Sans", sans-serif;
}

.mdGalleryCarousel .owl-nav button:hover {
    background: rgba(0, 0, 0, 0.8) !important;
}

.mdGalleryCarousel .owl-nav button.owl-prev {
    margin-left: -25px;
}

.mdGalleryCarousel .owl-nav button.owl-next {
    margin-right: -25px;
}

.mdGalleryCarousel .owl-nav button span {
    display: block;
    margin-top: -6px;
}

.mdGalleryCarousel .owl-stage-outer {
    overflow: hidden;
    border-radius: 8px;
}

.mdGalleryCarousel .item {
    padding: 0;
}

.mdGalleryCarousel .mdGalleryItem {
    margin: 0;
}

/* Responsive adjustments for carousel */
@media (max-width: 991px) {
    .ysw-team-modal-name {
        font-size: 30px;
        line-height: 36px;
    }
    
    .ysw-team-modal-phone {
        font-size: 20px;
    }
    .mdGalleryCarousel .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 32px;
    }
    
    .mdGalleryCarousel .owl-nav button.owl-prev {
        margin-left: -20px;
    }
    
    .mdGalleryCarousel .owl-nav button.owl-next {
        margin-right: -20px;
    }
    .modal-content-wrapper .modal-dialog{
        max-width: 100% !important;
        min-width: 100% !important;
        width: 100% !important;
    }
}

@media screen and (max-width: 767px) {
    .ysw-team-modal-info{
        padding-left: 0;
        padding-top: 27px;
    }
}

@media (max-width: 575px) {
    .mdGalleryCarousel .owl-nav button {
        width: 35px;
        height: 35px;
        font-size: 28px;
    }
    
    .mdGalleryCarousel .owl-nav button.owl-prev {
        margin-left: -10px;
    }
    
    .mdGalleryCarousel .owl-nav button.owl-next {
        margin-right: -10px;
    }
}
