:root {
        --white-color: #fff;
        --black-color: #000;
        --heading-color: #343935;
        --accent-color: #C5A56F;
        --cream-color: #EDEAE5;
        --body-color: rgba(52, 57, 53, 0.75);
        --border-color: rgba(52, 57, 53, 0.5);
        --gray-color: rgba(255, 255, 255, 0.75);
        --heading-font: "Playfair Display", sans-serif;
        --body-font: "Poppins", sans-serif;
        
      }
      * {outline: none; }
      .primary-font {
        font-family: var(--heading-font);
      }

      .secondry-font {
        font-family: var(--body-font);
      }

      html {
        scroll-behavior: smooth;
      }

      body,
      html {
        color: var(--body-color);
        font-family: var(--body-font);
        font-size: 18px;
        line-height: 1.5em;
        font-weight: 300;
        overflow-x: clip;
      }

      @media (max-width: 575px) {

        body,
        html {
          font-size: 16px;
        }
      }

      a {
        color: inherit;
        text-decoration: none;
        transition: all 0.3s ease;
      }

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

      img {
        border: 0;
        max-width: 100%;
        height: auto;
      }

      h1,
      h2,
      h3,
      h4,
      h5,
      h6 {
        clear: both;
        color: var(--heading-color);
        padding: 0;
        margin: 0 0 20px 0;
        font-weight: 400;
        line-height: 1.2em;
        font-family: var(--heading-font);
      }

      ul {
        list-style: none;
      }

      .hero {
        position: relative;
        background: url(../images/slide.png) no-repeat;
        background-position: center center;
        background-size: cover;
        padding: 240px 0 140px;
        min-height: 100vh;
        align-content: center;
      }

      .hero::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(269.99deg, rgba(30, 30, 30, 0) 15.73%, rgba(30, 30, 30, 0.828125) 66.76%, #1E1E1E 101.51%), linear-gradient(360deg, rgba(30, 30, 30, 0) 87.87%, #1E1E1E 102.84%);
        width: 100%;
        height: 100%;
        z-index: 1;
      }

      .letter-spacing {
        letter-spacing: 1px;
      }

      .hero-content {
        position: relative;
        z-index: 2;
      }

      .hero-content h1 {
        line-height: 1;
        color: white;
      }

      .hero-content h1 .highlight {
        color: var(--accent-color, #C5A56F);
      }

      .hero-content p {
      	font-size: 1.25rem;
      	margin: 0 0 20px 0;
      	padding: 0;
        color: rgba(255, 255, 255, 0.85);
      }

      .site-header {
          position: fixed;
          width: 100%;
          top: 0;
          left: 0;
          z-index: 999;
          background: transparent;
          transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
          transform: translateZ(0); /* Hardware acceleration */
          will-change: background, box-shadow;
          backface-visibility: hidden;
      }

      .yacht-details .site-header,
      .journal-details .site-header {
          position: sticky !important;
      }

      .site-header.scrolled {
          background: white;
          box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
          backdrop-filter: blur(10px);
      }

      .site-header .logo {
          height: 80px;
          transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
          transform: translateZ(0);
      }

      .yacht-details .site-header .logo,
      .journal-details .site-header .logo {
          height: 70px;
      }

      .site-header.scrolled .logo {
          height: 70px;
      }

      .site-header .header-top {
          padding: 1rem 0;
          transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
          border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      .site-header.scrolled .header-top {
          padding: 0.7rem 0;
          border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      }

      .site-header .nav-link {
        color: white;
        font-weight: 400;
        transition: color 0.3s ease;
        margin-right: 20px;
        font-size: 18px;
      }

      .site-header .phone {
        font-size: 18px;
      }

      .yacht-details .site-header .nav-link,
      .yacht-details .site-header .phone {
        color: #222;
      }

      .journal-details .site-header .nav-link,
      .journal-details .site-header .phone {
        color: #222;
      }
      .site-header.scrolled .nav-link,
      .site-header.scrolled .phone {
        color: #222;
      }

      .btn-default {
        background: var(--accent-color, #C5A56F);
        color: white;
        padding: 5px 40px 5px 20px;
        border-radius: 2px;
        text-transform: uppercase;
        font-size: 14px;
        font-weight: 500;
        border: none;
        transition: all 0.3s ease;
      }

      .btn-default::before {
        content: '';
        position: absolute;
        top: 50%;
        right: 14px;
        width: 14px;
        height: 14px;
        background-image: url(../images/arrow-white.svg);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        transform: translate(-20px, -50%);
        transition: all 0.4s ease-in-out;
      }

      .btn-default:hover::before {
        transform: translate(-20px, -50%) rotate(45deg);
      }

      .site-header.scrolled .btn-default.contact-btn {
        background: #000;
      }

      .hamburger {
            display: flex;
            flex-direction: column;
            gap: 4px;
            background: none;
            border: none;
            padding: 8px;
            cursor: pointer;
            position: relative;
            width: 40px;
            height: 40px;
            justify-content: center;
            align-items: center;
            border-radius: 0px;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .site-header.scrolled .hamburger:hover {
            background: rgba(0, 0, 0, 0.05);
        }

        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: white;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform-origin: center;
        }

        .site-header.scrolled .hamburger span {
            background: black;
        }

        .yacht-details .hamburger span,
        .journal-details .hamburger span {
            background: black;
        }

        /* Hamburger Animation - X Transform */
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: scale(0);
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: linear-gradient(135deg, 
                rgba(52, 57, 53, 0.98) 0%, 
                rgba(30, 30, 30, 0.98) 100%);
            backdrop-filter: blur(20px);
            z-index: 998;
            display: flex;
            flex-direction: column;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-100%);
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            padding: 0;
        }

        .mobile-menu.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* Mobile Menu Header */
        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0;
            transform: translateY(-30px);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transition-delay: 0.1s;
        }

        .mobile-menu.active .mobile-menu-header {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-menu-logo img {
            height: 50px;
            width: auto;
            filter: brightness(0) invert(1); /* White logo */
        }

        .mobile-menu-close {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .mobile-menu-close:hover {
            background: var(--accent-color, #C5A56F);
            border-color: var(--accent-color, #C5A56F);
            transform: rotate(90deg);
        }

        /* Mobile Menu Items Container */
        .mobile-menu-items {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem;
        }

        /* Mobile Menu Items */
        .mobile-menu-item {
            color: white;
            font-size: 1.8rem;
            font-weight: 300;
            text-decoration: none;
            margin: 1rem 0;
            position: relative;
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            font-family: var(--heading-font, 'Playfair Display', serif);
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 2rem;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            min-width: 320px;
            justify-content: space-between;
        }

        .mobile-menu.active .mobile-menu-item {
            opacity: 1;
            transform: translateX(0);
        }

        /* Staggered animation delays for menu items */
        .mobile-menu-items .mobile-menu-item:nth-child(1) { transition-delay: 0.2s; }
        .mobile-menu-items .mobile-menu-item:nth-child(2) { transition-delay: 0.3s; }
        .mobile-menu-items .mobile-menu-item:nth-child(3) { transition-delay: 0.4s; }
        .mobile-menu-items .mobile-menu-item:nth-child(4) { transition-delay: 0.5s; }
        .mobile-menu-items .mobile-menu-item:nth-child(5) { transition-delay: 0.6s; }

        .mobile-menu-item:hover {
            color: var(--accent-color, #C5A56F);
            background: rgba(197, 165, 111, 0.1);
            border-color: rgba(197, 165, 111, 0.3);
            transform: translateX(10px);
        }

        .mobile-menu-number {
            font-size: 1.2rem;
            color: var(--accent-color, #C5A56F);
            font-weight: 400;
            font-family: var(--body-font, 'Poppins', sans-serif);
            min-width: 3rem;
        }

        .mobile-menu-text {
            flex: 1;
            text-align: center;
            font-size: 1.4rem;
        }

        .mobile-menu-arrow {
            font-size: 1.5rem;
            color: var(--accent-color, #C5A56F);
            transition: transform 0.3s ease;
        }

        .mobile-menu-item:hover .mobile-menu-arrow {
            transform: translateX(10px);
        }

        /* Mobile Menu Footer */
        .mobile-menu-footer {
            padding: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transition-delay: 0.7s;
        }

        .mobile-menu.active .mobile-menu-footer {
            opacity: 1;
        }

        .mobile-menu-contact {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
            text-decoration: none;
            font-family: var(--body-font, 'Poppins', sans-serif);
            margin-bottom: 1rem;
            display: block;
        }

        .mobile-menu-contact:hover {
            color: var(--accent-color, #C5A56F);
        }

        .mobile-menu-social {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 1rem;
        }

        .mobile-menu-social a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .mobile-menu-social a:hover {
            background: var(--accent-color, #C5A56F);
            transform: translateY(-2px);
        }

        /* Body Lock - Prevent Scrolling */
        body.mobile-menu-open {
            overflow: hidden;
            position: fixed;
            width: 100%;
        }

        /* Responsive Adjustments */
        @media (max-width: 480px) {
            .mobile-menu-header {
                padding: 1.5rem;
            }
            
            .mobile-menu-logo img {
                height: 70px;
            }
            
            .mobile-menu-close {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .mobile-menu-item {
                font-size: 1.5rem;
                min-width: 280px;
                padding: 0.8rem 1.5rem;
            }
            
            .mobile-menu-text {
                font-size: 1.2rem;
            }
            
            .mobile-menu-number {
                font-size: 1rem;
            }
            
            .mobile-menu-arrow {
                font-size: 1.3rem;
            }
            
            .mobile-menu-items {
                padding: 1.5rem;
            }
            
            .mobile-menu-footer {
                padding: 1.5rem;
            }
        }

        @media (max-width: 375px) {
            .mobile-menu-item {
                min-width: 260px;
                font-size: 1.4rem;
            }
            
            .mobile-menu-text {
                font-size: 1.1rem;
            }
        }

        /* Desktop Hidden */
        @media (min-width: 768px) {
            .mobile-menu {
                display: none !important;
            }
        }

      .grid-wrapper {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
        gap: 1px;
        width: 100vw;
        max-width: 100%;
      }

      .grid-wrapper-2 {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: auto;
        gap: 1px;
        width: 100vw;
        max-width: 100%;
      }

      .grid-item {
        position: relative;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: flex-end;
        padding: 2rem;
        color: white;
        font-family: var(--heading-font);
        min-height: 400px;
        height: 100%;
        text-decoration: none;
        overflow: hidden;
      }

      .grid-item .text-block {
        position: relative;
        z-index: 2;
      }

      .grid-item::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
        z-index: 1;
      }

      .grid-item h3 {
        font-size: clamp(1.2rem, 2vw, 2rem);
        font-weight: 500;
        margin: 0;
        line-height: 1.3em;
        color: white;
      }

      .grid-item small {
        font-size: 0.85rem;
        font-weight: 400;
        opacity: 0.85;
        color: white;
        display: block;
        margin-bottom: 0.3rem;
      }

      .span-2 {
        grid-column: span 2;
      }

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

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

        .span-2 {
          grid-column: span 2;
        }
      }

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

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

        .span-2 {
          grid-column: span 1;
        }
      }

      .intro-slogan-section {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      }

      .big-slogan {
        font-size: 4rem;
        color: #1E1E1E;
        line-height: 1;
        letter-spacing: 5px;
        font-family: var(--body-font, "Poppins", sans-serif);
      }

      .big-slogan .highlight {
        color: var(--accent-color, #C5A56F);
      }

      .slogan-description {
        font-family: var(--body-font, "Poppins", sans-serif);
        font-size: 1.1rem;
        color: #555;
        max-width: 680px;
        margin: 0 auto;
        line-height: 1.4;
      }

      .yacht-card {
        border: 1px solid #eee;
        border-radius: 0px;
        overflow: hidden;
        background: #fff;
        transition: box-shadow 0.3s ease;
      }

      .yacht-card p.yacht-title{
      	font-family: var(--heading-font);
        font-size: 1.25rem;
        line-height: 1.2em;
        color: var(--heading-color);
        margin: 0 0 20px 0;
      }

      .yacht-card p.yacht-price{
      	font-family: var(--body-font);
        font-size: 1.25rem;
        line-height: 1.2em;
        color: var(--heading-color);
        margin: 0 0 20px 0;
        font-weight: 400;
      }

      .yacht-card.more-card {
        background-color: #F4F4F4;
      }

      .tracking-wide {
        letter-spacing: 0.5px;
      }

      .yacht-img img {
        width: 100%;
        height: auto;
        display: block;
      }

      .price {
        font-weight: 600;
        font-size: 1.1rem;
        color: #000;
      }

      .destination-card {
        position: relative;
        border-radius: 0px;
        overflow: hidden;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
      }

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

      .destination-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.45) 20%, rgba(0, 0, 0, 0) 60%);
        z-index: 1;
        display: flex;
        align-items: flex-end;
        padding: 1.5rem;
      }

      .text-block {
        position: relative;
        z-index: 2;
        color: white;
        font-family: var(--heading-font);
      }

      .text-block h5 {
        font-size: 1.25rem;
        font-weight: 600;
        margin: 0;
      }

      .text-block small {
        font-size: 0.85rem;
        opacity: 0.85;
        display: block;
        margin-bottom: 0.3rem;
      }

      .more-card {
        color: #000;
        background-color: #f5f5f5;
        transition: all 0.3s ease;
      }

      .more-card:hover {
        background-color: #eaeaea;
      }

      .grid-item.more-card::before {
        content: none;
      }

      .grid-item.destinations h3 {
        font-size: clamp(1.2rem, 1.6vw, 1.8rem);
      }

      .featuredYachts .item {
        position: relative;
        display: block;
        margin-bottom: 15px;
      }

      .featuredYachts .item .wrapper {
        position: relative;
        display: block;
        background-color: #fff;
        padding: 30px;
        margin-top: -60px;
        margin-left: 30px;
        margin-right: 30px;
        overflow: hidden;
        transition: all 500ms ease;
        z-index: 2;
        visibility: visible;
        opacity: 0;
        -webkit-box-shadow: 0px 10px 23px -8px rgba(0, 0, 0, 0.11);
        -moz-box-shadow: 0px 10px 23px -8px rgba(0, 0, 0, 0.11);
        box-shadow: 0px 10px 23px -8px rgba(0, 0, 0, 0.11);
        border-radius: 0px;
      }
      
      .featuredYachts .swiper-slide .wrapper {
        display: flex;
        opacity: 0;
        visibility: hidden;
        transition: all 500ms ease;
      }

      .featuredYachts .item .wrapper.active,
      .featuredYachts .swiper-slide-active .wrapper {
        opacity: 1;
        visibility: visible;
      }

      .featuredYachts .featuredYachts-swipe {
        position: relative;
        display: block;
      }

      .featuredYachts .swiper-slide {
        opacity: 0.4;
        transform: scale(0.95);
        transition: all 500ms ease;
      }

      .featuredYachts .swiper-slide-active {
        opacity: 1;
        transform: scale(1);
        z-index: 3;
      }

      @media screen and (max-width: 991px) {
        .featuredYachts .featuredYachts-swipe {
          overflow: hidden;
        }
      }

      @media screen and (max-width: 768px) {
        .featuredYachts .item .wrapper {
          margin-left: 15px;
          margin-right: 15px;
        }
      }

      .swiper-button-next,
      .swiper-button-prev {
        width: 55px !important;
        height: 45px !important;
        background: rgba(255, 255, 255, 0.9) !important;
        border-radius: 0px !important;
        transition: all 0.3s ease !important;
        backdrop-filter: blur(10px) !important;
      }

      .swiper-button-next:after,
      .swiper-button-prev:after {
        font-size: 18px !important;
        font-weight: bold !important;
        color: #c6a274 !important;
      }

      .swiper-button-next:hover,
      .swiper-button-prev:hover {
        background: rgba(198, 162, 116, 0.9) !important;
        border-color: #c6a274 !important;
        transform: scale(1.05) !important;
      }

      .swiper-button-next:hover:after,
      .swiper-button-prev:hover:after {
        color: white !important;
      }

      .swiper-button-next {
        right: 0px !important;
      }

      .swiper-button-prev {
        left: 0px !important;
      }

      .swiper-button-disabled {
        opacity: 0.4 !important;
        cursor: not-allowed !important;
      }

      .swiper-button-disabled:hover {
        transform: none !important;
        background: rgba(255, 255, 255, 0.9) !important;
      }

      @media (max-width: 768px) {

        .swiper-button-next,
        .swiper-button-prev {
          width: 45px !important;
          height: 38px !important;
        }

        .swiper-button-next:after,
        .swiper-button-prev:after {
          font-size: 14px !important;
        }

        .swiper-button-next {
          right: 10px !important;
        }

        .swiper-button-prev {
          left: 10px !important;
        }
      }

      .slider-btn-groups .slider-btn-yacht {
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.35s;
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 99;
        }

        @media (min-width: 1400px) and (max-width: 1599px) {
            .slider-btn-groups .slider-btn-yacht {
                left: 40px;
            }
        }

        @media (max-width: 1399px) {
            .slider-btn-groups .slider-btn-yacht {
                left: 40px;
            }
        }

        /* Mobile - butonları gizle */
        @media (max-width: 991px) {
            .slider-btn-groups .slider-btn-yacht {
                display: none;
                visibility: hidden;
            }
        }

        .slider-btn-groups .slider-btn-yacht.next-2 {
            right: 20px;
            left: unset;
        }

        @media (min-width: 1400px) and (max-width: 1599px) {
            .slider-btn-groups .slider-btn-yacht.next-2 {
                right: 40px;
            }
        }

        @media (max-width: 1399px) {
            .slider-btn-groups .slider-btn-yacht.next-2 {
                right: 40px;
            }
        }

        .slider-btn-groups .slider-btn-yacht svg {
            transition: 0.35s;
            fill: none;
            stroke: var(--black-color);
        }

        .slider-btn-groups .slider-btn-yacht:hover svg path {
            stroke: #000;
        }


        .featuredYachts .swiper-pagination {
            position: relative;
            bottom: auto;
            top: auto;
            margin-top: 20px;
            text-align: center;
            z-index: 10;
        }

        @media (min-width: 992px) {
            .featuredYachts .swiper-pagination {
                display: none;
            }
        }

        @media (max-width: 991px) {
            .featuredYachts .swiper-pagination {
                display: block;
                margin-bottom: 15px;
                z-index: 10;
            }
        }
        .featuredYachts .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: rgba(198, 162, 116, 0.3) !important;
            border: 2px solid transparent;
            border-radius: 50%;
            margin: 0 6px;
            transition: all 0.3s ease;
            cursor: pointer;
            opacity: 1 !important;
        }

        .featuredYachts .swiper-pagination-bullet-active {
            background: #c6a274 !important;
            border-color: rgba(198, 162, 116, 0.2);
            transform: scale(1.2);
            opacity: 1 !important;
        }

        .featuredYachts .swiper {
            --swiper-pagination-color: #c6a274;
            --swiper-pagination-bullet-inactive-color: rgba(198, 162, 116, 0.3);
            --swiper-pagination-bullet-inactive-opacity: 1;
        }

        @media (max-width: 576px) {
            .featuredYachts-swipe .swiper-pagination-bullet {
                width: 10px;
                height: 10px;
                margin: 0 4px;
            }
        }

      .service-section {
        position: relative;
        padding-top: 50px;
        overflow: hidden;
        background-position: top right;
        background-size: auto;
        background-repeat: no-repeat;
      }

      .service-section::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 500px;
        background-color: var(--black-color);
        border-radius: 0px;
        z-index: -1;
      }

      .yacht-news-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5px;
        margin-bottom: 40px;
      }

      .yacht-news-grid .news-image {
        position: relative;
        overflow: hidden;
        min-height: 400px;
        display: flex;
        align-items: flex-end;
        margin-bottom: 20px;
      }

      .yacht-news-grid .news-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
      }

      .yacht-news-grid .news-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
        z-index: 1;
      }

      .yacht-news-grid .news-overlay {
        position: relative;
        z-index: 2;
        padding: 30px;
        color: white;
        width: 100%;
      }

      .yacht-news-grid .news-overlay-title {
        font-size: 1.6rem;
        font-weight: 300;
        line-height: 1.2;
        margin-bottom: 0;
      }

      .yacht-news-grid .news-title-desc {
        padding-left: 30px;
      }

      .yacht-news-grid a.news-title {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 15px;
        color: #333;
        display: flex;
        align-items: center;
        font-family: var(--heading-font);
      }

      .yacht-news-grid a.news-title::after {
        content: '→';
        margin-left: 15px;
        color: #c6a274;
        font-weight: normal;
      }

      .yacht-news-grid .news-description {
        font-size: 1rem;
        line-height: 1.6;
        color: #666;
        margin-bottom: 20px;
      }

      @media (max-width: 992px) {
        .yacht-news-grid {
          grid-template-columns: 1fr;
          gap: 30px;
        }

        .yacht-news-grid .news-image {
          min-height: 350px;
          margin-bottom: 15px;
        }

        .yacht-news-grid .news-overlay {
          padding: 25px;
        }

        .yacht-news-grid .news-overlay-title {
          font-size: 1.4rem;
        }
      }

      @media (max-width: 768px) {
        .yacht-news-grid .news-image {
          min-height: 300px;
        }

        .yacht-news-grid .news-overlay {
          padding: 20px;
        }

        .yacht-news-grid .news-overlay-title {
          font-size: 1.4rem;
        }

        .yacht-news-grid .news-title {
          font-size: 1.3rem;
        }

        .yacht-news-grid .news-description {
          font-size: 0.95rem;
        }
      }

      @media (max-width: 576px) {
        .yacht-news-grid .news-image {
          min-height: 280px;
        }

        .yacht-news-grid .news-overlay {
          padding: 15px;
        }

        .yacht-news-grid .news-overlay-title {
          font-size: 1.2rem;
        }

        .yacht-news-grid .news-title {
          font-size: 1.2rem;
        }

        .yacht-news-grid .news-description {
          font-size: 0.9rem;
        }
      }
      .hero.subpage {padding: 235px 0 0 0;min-height: auto !important;}
      .hero.subpage::after {
          content: "";
          position: absolute;
          bottom: 120px;
          left: 0;
          height: 1px;
          width: 100%;
          background-color: rgba(255, 255, 255, 0.5);
      }
      .hero.subpage ul.breadcrumb {
          column-gap: 10px;
          padding: 45px 0;
          font-size: 18px;
          margin-bottom: 0;
          z-index: 1;
      }
      .hero.subpage ul.breadcrumb li a, ul.breadcrumb li span{
          color: var(--white-color);
      }
      .hero.subpage ul.breadcrumb li a:hover{
          color: var(--accent-color);
      }
      .subpage-description {
          font-family: var(--body-font, "Poppins", sans-serif);
          font-size: 1.1rem;
          color: #555;
          margin: 0 auto;
          line-height: 1.4;
      }
      .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 60px;
            text-align: center;
        }

        .stat-item {
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        .stat-item:nth-child(1) { animation-delay: 0.2s; }
        .stat-item:nth-child(2) { animation-delay: 0.4s; }
        .stat-item:nth-child(3) { animation-delay: 0.6s; }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 300;
            color: var(--accent-color);
            line-height: 1;
            margin-bottom: 20px;
            font-family: 'Georgia', serif;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 4.5rem;
        }

        /* Odometer override */
        .odometer {
            font-size: 3.5rem !important;
            font-weight: 300 !important;
            color: var(--accent-color) !important;
            font-family: 'Georgia', serif !important;
        }

        .odometer .odometer-digit {
            color: var(--accent-color) !important;
        }

        .stat-suffix {
            font-size: 3.5rem;
            font-weight: 300;
            color: var(--accent-color);
            margin-left: 0.1em;
            font-family: 'Georgia', serif;
        }

        .stat-title {
            font-size: 1.8rem;
            color: var(--dark-color);
            font-weight: 400;
            line-height: 1.3;
            margin: 0;
        }

        .stat-subtitle {
            font-size: 0.9rem;
            color: #666;
            margin-top: 8px;
            font-style: italic;
        }

        /* Mobile responsive */
        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .stat-number,
            .odometer,
            .stat-suffix {
                font-size: 3rem !important;
                height: 3.5rem;
            }
            
            .stat-title {
                font-size: 1.5rem;
            }
        }

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

      .about-section{}
      .about-image-left {
            clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%, 0 20%);
      }
      .about-image-right {
            clip-path: polygon(0 0, 100% 0, 100% 80%, 80% 100%, 0 100%);
      }
      .about-image-left img,
      .about-image-right img{
            height: 100%;
            width: 100%;
            object-fit: cover;
        }
       .custom-container-w .container-fluid {
            margin: 0 auto;
            max-width: 1720px;
       }

      .heading-box {
        margin-bottom: 1.2rem;
        position: relative;
      }
      .heading-box.light {
          color: var(--heading-color);
      }

      .heading-box.light .sub-title {
          color: var(--accent-color);
          font-family: var(--body-font);
          font-size: 0.9rem;
          font-weight: 500;
          text-transform: uppercase;
          letter-spacing: 1px;
          margin-bottom: 0.5rem;
          display: block;
      }

      .heading-box.light .heading-title {
          color: var(--heading-color);
          font-family: var(--body-font, "Poppins", sans-serif);
          font-size: clamp(1.5rem, 4vw, 2rem);
          font-weight: 400;
          line-height: 1.2em;
          margin-bottom: 1rem;
      }

      .heading-box.light .heading-description {
          color: var(--body-color);
          font-family: var(--body-font);
          font-size: 1.1rem;
          line-height: 1.6;
          max-width: 600px;
          margin: 0;
      }

      .heading-box.dark {
          color: var(--white-color);
      }

      .heading-box.dark .sub-title {
          color: var(--accent-color);
          font-family: var(--body-font);
          font-size: 0.9rem;
          font-weight: 500;
          text-transform: uppercase;
          letter-spacing: 1px;
          margin-bottom: 0.5rem;
          display: block;
      }

      .heading-box.dark .heading-title {
          color: var(--white-color);
          font-family: var(--body-font, "Poppins", sans-serif);
          font-size: clamp(1.5rem, 4vw, 2rem);
          font-weight: 400;
          line-height: 1.2em;
          margin-bottom: 1rem;
      }

      .heading-box.dark .heading-description {
          color: rgba(255, 255, 255, 0.85);
          font-family: var(--body-font);
          font-size: 1.1rem;
          line-height: 1.6;
          max-width: 600px;
          margin: 0;
      }

      /* Center alignment variant */
      .heading-box.center {
          text-align: center;
      }

      .heading-box.center .heading-description {
          margin: 0 auto;
      }

      /* Responsive adjustments */
      @media (max-width: 768px) {
          .heading-box {
              margin-bottom: 2rem;
          }
          
          .heading-box .sub-title {
              font-size: 0.8rem;
          }
          
          .heading-box .heading-description {
              font-size: 1rem;
          }
      }

      /* ================================================== */
      /* Yacht Theme Lists - Modular */
      /* ================================================== */

      /* Standard List - Light Theme */
      .yacht-list {
          list-style: none;
          padding: 0;
          margin: 0;
      }

      .yacht-list.light li {
          position: relative;
          padding-left: 2rem;
          margin-bottom: 1rem;
          color: var(--body-color);
          font-family: var(--body-font);
          font-size: 1rem;
          line-height: 1.6;
      }

      .yacht-list.light li:before {
          content: '';
          position: absolute;
          left: 0;
          top: 0.5rem;
          width: 8px;
          height: 8px;
          background: var(--accent-color);
          border-radius: 50%;
      }

      .yacht-list.light li:last-child {
          margin-bottom: 0;
      }

      /* Standard List - Dark Theme */
      .yacht-list.dark li {
          position: relative;
          padding-left: 2rem;
          margin-bottom: 1rem;
          color: rgba(255, 255, 255, 0.85);
          font-family: var(--body-font);
          font-size: 1rem;
          line-height: 1.6;
      }

      .yacht-list.dark li:before {
          content: '';
          position: absolute;
          left: 0;
          top: 0.7rem;
          width: 8px;
          height: 8px;
          background: var(--accent-color);
          border-radius: 50%;
      }

      .yacht-list.dark li:last-child {
          margin-bottom: 0;
      }

      /* Check List - Light Theme */
      .yacht-checklist {
          list-style: none;
          padding: 0;
          margin: 0;
      }

      .yacht-checklist.light li {
          position: relative;
          padding-left: 2.5rem;
          margin-bottom: 1rem;
          color: var(--body-color);
          font-family: var(--body-font);
          font-size: 1rem;
          line-height: 1.6;
      }

      .yacht-checklist.light li:before {
          content: '✓';
          position: absolute;
          left: 0;
          top: 0;
          color: var(--accent-color);
          font-weight: 600;
          font-size: 1.1rem;
      }

      .yacht-checklist.light li:last-child {
          margin-bottom: 0;
      }

      /* Check List - Dark Theme */
      .yacht-checklist.dark li {
          position: relative;
          padding-left: 2.5rem;
          margin-bottom: 1rem;
          color: rgba(255, 255, 255, 0.85);
          font-family: var(--body-font);
          font-size: 1rem;
          line-height: 1.6;
      }

      .yacht-checklist.dark li:before {
          content: '✓';
          position: absolute;
          left: 0;
          top: 0;
          color: var(--accent-color);
          font-weight: 600;
          font-size: 1.1rem;
      }

      .yacht-checklist.dark li:last-child {
          margin-bottom: 0;
      }

      /* Arrow List - Light Theme */
      .yacht-arrow-list {
          list-style: none;
          padding: 0;
          margin: 0;
      }

      .yacht-arrow-list.light li {
          position: relative;
          padding-left: 2.5rem;
          margin-bottom: 1rem;
          color: var(--body-color);
          font-family: var(--body-font);
          font-size: 1rem;
          line-height: 1.6;
      }

      .yacht-arrow-list.light li:before {
          content: '→';
          position: absolute;
          left: 0;
          top: 0;
          color: var(--accent-color);
          font-weight: 500;
          font-size: 1rem;
      }

      .yacht-arrow-list.light li:last-child {
          margin-bottom: 0;
      }

      /* Arrow List - Dark Theme */
      .yacht-arrow-list.dark li {
          position: relative;
          padding-left: 2.5rem;
          margin-bottom: 1rem;
          color: rgba(255, 255, 255, 0.85);
          font-family: var(--body-font);
          font-size: 1rem;
          line-height: 1.6;
      }

      .yacht-arrow-list.dark li:before {
          content: '→';
          position: absolute;
          left: 0;
          top: 0;
          color: var(--accent-color);
          font-weight: 500;
          font-size: 1rem;
      }

      .yacht-arrow-list.dark li:last-child {
          margin-bottom: 0;
      }

      /* Numbered List - Light Theme */
      .yacht-numbered-list {
          list-style: none;
          padding: 0;
          margin: 0;
          counter-reset: yacht-counter;
      }

      .yacht-numbered-list.light li {
          position: relative;
          padding-left: 3rem;
          margin-bottom: 1.5rem;
          color: var(--body-color);
          font-family: var(--body-font);
          font-size: 1rem;
          line-height: 1.6;
          counter-increment: yacht-counter;
      }

      .yacht-numbered-list.light li:before {
          content: counter(yacht-counter);
          position: absolute;
          left: 0;
          top: 0;
          width: 2rem;
          height: 2rem;
          background: var(--accent-color);
          color: var(--white-color);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-weight: 600;
          font-size: 0.9rem;
          line-height: 1;
      }

      .yacht-numbered-list.light li:last-child {
          margin-bottom: 0;
      }

      /* Numbered List - Dark Theme */
      .yacht-numbered-list.dark li {
          position: relative;
          padding-left: 3rem;
          margin-bottom: 1.5rem;
          color: rgba(255, 255, 255, 0.85);
          font-family: var(--body-font);
          font-size: 1rem;
          line-height: 1.6;
          counter-increment: yacht-counter;
      }

      .yacht-numbered-list.dark li:before {
          content: counter(yacht-counter);
          position: absolute;
          left: 0;
          top: 0;
          width: 2rem;
          height: 2rem;
          background: var(--accent-color);
          color: var(--white-color);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-weight: 600;
          font-size: 0.9rem;
          line-height: 1;
      }

      .yacht-numbered-list.dark li:last-child {
          margin-bottom: 0;
      }

      /* Features List with Icons */
      .yacht-features-list {
          list-style: none;
          padding: 0;
          margin: 0;
      }

      .yacht-features-list li {
          position: relative;
          padding-left: 3.5rem;
          margin-bottom: 1.5rem;
          font-family: var(--body-font);
          font-size: 1rem;
          line-height: 1.6;
      }

      .yacht-features-list.light li {
          color: var(--body-color);
      }

      .yacht-features-list.dark li {
          color: rgba(255, 255, 255, 0.85);
      }

      .yacht-features-list li .feature-icon {
          position: absolute;
          left: 0;
          top: 0.2rem;
          width: 2.5rem;
          height: 2.5rem;
          background: var(--accent-color);
          color: var(--white-color);
          border-radius: 6px;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 1.1rem;
      }

      .yacht-features-list li:last-child {
          margin-bottom: 0;
      }

      .yacht-features-list li .feature-title {
          font-weight: 600;
          margin-bottom: 0.3rem;
          display: block;
          font-family: var(--heading-font);
      }

      .yacht-features-list.light li .feature-title {
          color: var(--heading-color);
      }

      .yacht-features-list.dark li .feature-title {
          color: var(--white-color);
      }

      /* Responsive */
      @media (max-width: 768px) {
          .yacht-list li,
          .yacht-checklist li,
          .yacht-arrow-list li,
          .yacht-numbered-list li,
          .yacht-features-list li {
              font-size: 0.95rem;
              margin-bottom: 0.8rem;
          }
          
          .yacht-numbered-list li:before {
              width: 1.8rem;
              height: 1.8rem;
              font-size: 0.8rem;
          }
          
          .yacht-features-list li {
              padding-left: 3rem;
          }
          
          .yacht-features-list li .feature-icon {
              width: 2rem;
              height: 2rem;
              font-size: 1rem;
          }
      }
      .cta-section-one {
          text-align: center;
          padding: 100px 0;
          background-image: url(../images/call-to-action1-bg.webp);
          background-position: center;
          background-size: cover;
          position: relative;
      }
      .cta-section-one.bgservices {
          background-image: url(../images/call-to-action2-bg.jpg);
      }
      .cta-section-one::before {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          height: 100%;
          width: 100%;
          background: linear-gradient(90deg, #333939 15.26%, #131414 50.68%, #333939 85.55%);
          opacity: 0.7;
      }
      .yacht-services-list {
            background: var(--white-color);
            border-radius: 0px;
            padding: 2rem 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 2rem;
        }

        .yacht-services-list .services-title {
            font-family: var(--heading-font);
            font-size: 1.5rem;
            color: var(--heading-color);
            font-weight: 400;
            margin-bottom: 1rem;
            text-align: left;
        }

        .yacht-services-list ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .yacht-services-list ul li {
            position: relative;
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.3s ease;
        }

        .yacht-services-list ul li:last-child {
            border-bottom: none;
        }

        .yacht-services-list ul li a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.8rem 0;
            color: var(--body-color);
            text-decoration: none;
            font-family: var(--body-font);
            font-size: 1rem;
            font-weight: 400;
            transition: all 0.3s ease;
        }

        .yacht-services-list ul li a:hover {
            color: var(--accent-color);
            padding-left: 0.5rem;
        }

        .yacht-services-list ul li a .service-arrow {
            color: var(--accent-color);
            font-size: 1.1rem;
            font-weight: 300;
            transition: transform 0.3s ease;
        }

        .yacht-services-list ul li a:hover .service-arrow {
            transform: translateX(5px);
        }

        /* Quick CTA Component */
        .yacht-quick-cta {
            background: var(--heading-color);
            border-radius: 20px;
            padding: 3rem 2.5rem;
            text-align: center;
            color: var(--white-color);
            position: relative;
            overflow: hidden;
        }

        .yacht-quick-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, 
                transparent 30%, 
                rgba(197, 165, 111, 0.1) 50%, 
                transparent 70%);
            animation: shimmer 3s infinite;
        }

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

        .yacht-quick-cta .cta-logo {
            width: 60px;
            height: 60px;
            background: var(--accent-color);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
            position: relative;
            z-index: 2;
        }

        .yacht-quick-cta .cta-title {
            font-family: var(--heading-font);
            font-size: 1.6rem;
            font-weight: 400;
            line-height: 1.3;
            margin-bottom: 2rem;
            position: relative;
            z-index: 2;
        }

        .yacht-quick-cta .cta-btn {
            background: var(--accent-color);
            color: var(--white-color);
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 8px;
            font-family: var(--body-font);
            font-size: 0.95rem;
            font-weight: 500;
            text-transform: capitalize;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
            text-decoration: none;
            display: inline-block;
        }

        .yacht-quick-cta .cta-btn:hover {
            background: var(--white-color);
            color: var(--accent-color);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(197, 165, 111, 0.3);
        }

        .yacht-quick-cta .cta-btn::after {
            content: '+';
            margin-left: 0.5rem;
            font-weight: 300;
            font-size: 1.1rem;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .yacht-services-list {
                padding: 2rem 1.5rem;
            }

            .yacht-services-list .services-title {
                font-size: 1.5rem;
                margin-bottom: 1.5rem;
            }

            .yacht-services-list ul li a {
                font-size: 0.95rem;
                padding: 1rem 0;
            }

            .yacht-quick-cta {
                padding: 2.5rem 2rem;
            }

            .yacht-quick-cta .cta-logo {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
                margin-bottom: 1rem;
            }

            .yacht-quick-cta .cta-title {
                font-size: 1.4rem;
                margin-bottom: 1.5rem;
            }

            .yacht-quick-cta .cta-btn {
                padding: 0.7rem 1.5rem;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .yacht-services-list {
                padding: 1.5rem 1rem;
            }

            .yacht-quick-cta {
                padding: 2rem 1.5rem;
            }

            .yacht-quick-cta .cta-title {
                font-size: 1.2rem;
            }
        }

        .yacht-page-navigation {
            border-top: 1px solid #e0e0e0;
            padding: 1rem 0 1rem 0;
            margin-top: 2rem;
            border-bottom: 1px solid #e0e0e0;
        }

        .yacht-nav-container {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            position: relative;
        }

        .yacht-nav-item {
            flex: 0 0 45%;
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
            position: relative;
        }

        .yacht-nav-item:hover {
            color: inherit;
            text-decoration: none;
        }

        .yacht-nav-item.prev {
            text-align: left;
        }

        .yacht-nav-item.next {
            text-align: right;
        }

        .yacht-nav-label {
            font-family: var(--body-font);
            font-size: 0.8rem;
            color: var(--body-color);
            text-transform: uppercase;
            margin-bottom: 0.5rem;
            display: block;
            position: relative;
            padding-left: 40px;
        }

        .yacht-nav-label.right-label {
            padding-right: 40px;
        }

        .yacht-nav-label::before {
            content: '';
            position: absolute;
            top: 50%;
            width: 30px;
            height: 1px;
            background: var(--accent-color);
            transform: translateY(-50%);
        }

        .yacht-nav-item.prev .yacht-nav-label::before {
            left: 0px;
        }

        .yacht-nav-item.next .yacht-nav-label::before {
            right: 0px;
        }

        .yacht-nav-title {
            font-family: var(--heading-font);
            font-size: 1.5rem;
            color: var(--heading-color);
            font-weight: 400;
            line-height: 1.3;
            margin: 0;
            transition: color 0.3s ease;
        }

        .yacht-nav-item:hover .yacht-nav-title {
            color: var(--accent-color);
        }

        .yacht-nav-subtitle {
            font-family: var(--body-font);
            font-size: 0.9rem;
            color: var(--body-color);
            margin-top: 0.3rem;
            opacity: 0.8;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .yacht-nav-container {
                flex-direction: column;
                gap: 3rem;
            }

            .yacht-nav-item {
                flex: none;
                width: 100%;
                text-align: left !important;
            }

            .yacht-nav-item.next {
                text-align: left !important;
            }

            .yacht-nav-label::before {
                left: 0px !important;
                right: auto !important;
            }

            .yacht-nav-item::after {
                left: -15px !important;
                right: auto !important;
            }

            .yacht-nav-title {
                font-size: 1.3rem;
            }

            .yacht-page-navigation {
                padding-top: 2rem;
                margin-top: 3rem;
            }
        }

        @media (max-width: 480px) {

            .yacht-nav-title {
                font-size: 1.2rem;
            }

            .yacht-nav-container {
                gap: 2rem;
            }
        }
        
        .service-content {
            background: white;
            padding: 70px 40px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            z-index: 2;
            margin-left: -100px;
        }
        
        
        .service-link {
            color: #c8a882;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            display: inline-block;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .service-link:hover {
            color: #b8976f;
            transform: translateX(5px);
        }
        
        .service-link::after {
            content: '→';
            margin-left: 8px;
            transition: margin-left 0.3s ease;
        }
        
        .service-link:hover::after {
            margin-left: 12px;
        }
        .service-content-left {
          margin-right: -100px;
          margin-left: 0;
          padding-left: 0;
      }

      @media (max-width: 991.98px) {
          .service-content-left {
              margin-right: 0;
              margin-top: -60px;
          }
      }
            /* Responsive */
      @media (max-width: 991.98px) {
          .service-content {
              padding: 40px 30px;
              margin-left: 0;
              margin-top: -60px;
          }
      }
        
        @media (max-width: 767.98px) {
            .service-content {
                padding: 30px 20px;
                margin-top: -40px;
            }
        }

        .yacht-search-input {
            position: relative;
        }

        .yacht-search-input .search-field {
            width: 100%;
            padding: 8px 15px 8px 45px;
            border: 1px solid #ddd;
            border-radius: 0px;
            font-size: 14px;
            color: #333;
            background: white;
            outline: none;
            transition: all 0.3s ease;
        }

        .yacht-search-input .search-field::placeholder {
            color: #999;
            font-weight: 400;
        }

        .yacht-search-input .search-field:focus {
            border-color: none;
            box-shadow: none;
        }

        .yacht-search-input .search-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: #666;
            font-size: 16px;
            pointer-events: none;
        }
/* Sort & Filter Dropdown Stilleri - Filter stiline uyumlu */

/* Sort Dropdown - Filter stiline uyarlandı */
.sort-dropdown {
    position: relative;
    display: inline-block;
}

.sort-btn {
    background: #343a40;
    color: white;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    justify-content: space-between;
}

.sort-btn:hover {
    background: #495057;
    color: white;
}

.sort-btn.active {
    background: #495057;
}

.sort-arrow {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.sort-dropdown.show .sort-arrow {
    transform: rotate(180deg);
}

.sort-dropdown-menu {
    position: absolute;
    top: 100%;
    left: auto;
    right: 0;
    background: white;
    border: 1px solid #dee2e6;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 180px;
}

.sort-dropdown.show .sort-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sort-option {
    display: block;
    padding: 10px 16px;
    color: #495057;
    text-decoration: none;
    transition: background-color 0.2s ease;
    font-size: 14px;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.sort-option:hover {
    background-color: #f8f9fa;
    color: #495057;
    text-decoration: none;
}

.sort-option.selected {
    background-color: #343a40;
    color: white;
}

.sort-option.selected:hover {
    background-color: #495057;
    color: white;
}

.sort-divider {
    height: 1px;
    background-color: #dee2e6;
    margin: 5px 0;
}

/* Filter Dropdown - Orijinal stil */
.filter-dropdown {
    position: relative;
    display: inline-block;
}

.filter-btn {
    background: #343a40;
    color: white;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    justify-content: space-between;
}

.filter-btn:hover {
    background: #495057;
    color: white;
}

.filter-arrow {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.filter-dropdown.show .filter-arrow {
    transform: rotate(180deg);
}

.filter-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #dee2e6;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 180px;
}

.filter-dropdown.show .filter-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.filter-option {
    display: block;
    padding: 10px 16px;
    color: #495057;
    text-decoration: none;
    transition: background-color 0.2s ease;
    font-size: 14px;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.filter-option:hover {
    background-color: #f8f9fa;
    color: #495057;
    text-decoration: none;
}

.filter-option.active {
    background-color: #343a40;
    color: white;
}

.filter-option.active:hover {
    background-color: #495057;
    color: white;
}

.filter-divider {
    height: 1px;
    background-color: #dee2e6;
    margin: 5px 0;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .sort-dropdown,
    .filter-dropdown {
        width: 100%;
    }
    
    .sort-btn,
    .filter-btn {
        width: 100%;
        justify-content: space-between;
    }
    
    .sort-dropdown-menu {
        left: auto;
        right: 0;
       }
    .filter-dropdown-menu {
        left: 0;
        right: 0;
        width: 100%;
    }
}

/* Gap düzenlemeleri - Search, Filter ve Sort arasında */
.d-flex.align-items-center.ms-auto.gap-2 > * {
    margin-right: 8px;
}

.d-flex.align-items-center.ms-auto.gap-2 > *:last-child {
    margin-right: 0;
}
        .galleryYachtGrid.yachtDtlGrid {
            display: grid;
            grid-template-columns: 0.52fr 0.24fr 0.24fr;
            grid-template-rows: 1fr 1fr;
            gap: 10px;
          }
          .galleryYachtGrid.yachtDtlGrid.single-image {
              grid-template-columns: 1fr;
              grid-template-rows: 1fr;
          }

          .galleryYachtGrid.yachtDtlGrid.single-image img {
              grid-column: 1 / -1;
              grid-row: 1 / -1;
          }
          @media (max-width: 991px) {
            .galleryYachtGrid.yachtDtlGrid {
              grid-template-columns: 1fr 1fr 1fr;
            }
          }

          @media (max-width: 767px) {
            .galleryYachtGrid.yachtDtlGrid {
              grid-template-columns: 1fr 1fr;
            }
          }

          @media (max-width: 575px) {
              .galleryYachtGrid.yachtDtlGrid {
                  grid-template-columns: 1fr;
                  grid-template-rows: auto;
              }
              
              .galleryYachtGrid.yachtDtlGrid > *:not(:first-child) {
                  display: none !important;
              }
          }

          .galleryYachtGrid.yachtDtlGrid > *:nth-child(1) {
            grid-row: 2 span;
          }

          @media (max-width: 991px) {
            .galleryYachtGrid.yachtDtlGrid > *:nth-child(1) {
              grid-row: 1;
            }
          }

          .galleryYachtGrid.yachtDtlGrid img {
            width: 100%;
            height: 100%;
            -o-object-fit: cover;
               object-fit: cover;
          }

          @media (max-width: 991px) {
            .galleryYachtGrid.yachtDtlGrid img {
              width: 100%;
            }
          }
          .bread-crumb-light {background-color: var(--bs-gray-100);}
          .bread-crumb-light p {margin-bottom: 0px;}
          .yacht-details p {margin-bottom: 0}

          .yacht-form {
              border: 1px solid var(--bs-secondary-bg-subtle);
              background-color: white;
          }
          .qty-buttons {
              position: relative;
              width: 100%;
              display: inline-block;
          }
          .qty-buttons label {
              position: absolute;
              color: #999;
              left: 15px;
              top: 13px;
              font-weight: 500;
              color: #6c757d;
              font-size: 15px;
              font-size: 0.9375rem;
          }
          .qty-buttons input.qtyplus {
              background: #f5f5f5 url(../images/plus.svg) no-repeat center center;
              right: 15px;
          }
          .qty-buttons input.qtyminus, .qty-buttons input.qtyplus {
              position: absolute;
              width: 36px;
              height: 36px;
              border: 0;
              outline: none;
              cursor: pointer;
              -webkit-appearance: none;
              text-indent: -9999px;
              box-shadow: none;
              border-radius: 0;
              top: 12px;
              z-index: 5;
          }
          .qty-buttons input.qty {
              width: 100%;
              text-align: left;
              padding-left: 20px;
          }
          .qty-buttons input.qtyminus {
              background: #f5f5f5 url(../images/minus.svg) no-repeat center center;
              right: 55px;
          }
          .form-validate-icons {
        top: 10px;
        right: 0;
        height: 22px;
        position: absolute;
        line-height: 0;
        z-index: 1;
    }

    .form-validate-icons span {
      opacity: 0;
      visibility: hidden;
      -webkit-transition: all 0.5s ease;
      transition: all 0.5s ease;
    }

    .form-validate-icons span:before {
        width: 22px;
        height: 22px;
        text-align: center;
        line-height: 22px;
        border-radius: 0;
        color: #fff;
        display: inline-block;
        font-size: 14px;
        font-family: "Font Awesome 6 Free" !important;
        font-weight: 700;
    }

    .form-validate-icons span.error {
      opacity: 1;
      visibility: visible;
    }

    .form-validate-icons span.error:before {
      content: "\f00d";
      color: #f27474;
      background: rgba(242, 116, 116, 0.2);
    }

    .form-validate-icons span.success {
      opacity: 1;
      visibility: visible;
    }

    .form-validate-icons span.success:before {
      content: "\f560";
      color: #0ac083;
      background: rgba(10, 192, 131, 0.2);
    }
    .contact-field-frame {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.contact-field-frame label {
    font-family: var(--font-primary-2);
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 500;
    border-radius: 60px;
    color: rgb(32,79,94);
    white-space: nowrap;
}
.contact-field-frame input {
    position: relative;
    font-family: var(--font-primary-2);
    font-size: 15px;
    padding: 0 20px;
    height: 60px;
    width: 100%;
    border: solid 1px #e9ecef;
    border-radius: 0px;
    background-color: transparent;
}
.contact-field-frame svg {
    pointer-events: none;
    position: absolute;
    top: 45px;
    right: 20px;
    width: 16px;
}
.contact-field-frame textarea {
    position: relative;
    font-family: var(--font-primary-2);
    font-size: 15px;
    padding: 20px 20px;
    height: 150px;
    width: 100%;
    border: solid 1px #e9ecef;
    background-color: transparent;
    resize: none;
}


.brochure-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid #333;
    background: transparent;
    color: #333;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    min-width: 140px;
    justify-content: center;
}

.brochure-btn:hover {
    background: #333;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.brochure-btn:hover .brochure-icon {
    transform: translateY(2px);
}

.brochure-icon {
    transition: transform 0.3s ease;
}
.yachtDetail-gallery-mobileCta {
    position: absolute;
    bottom: 15px;
    right: 0;
    z-index: 10;
}

.yachtDetail-gallery-mobileBtn {
  background: rgba(198, 162, 116, 0.9);
  color: white;
  padding: 8px 15px;
  border-radius: 0px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.yachtDetail-gallery-mobileBtn:hover {
  background: rgba(198, 162, 116, 1);
  color: white;
  transform: translateY(-2px);
}

.yachtDetail-gallery-icon {
  font-size: 14px;
  font-weight: 700;
}

.yachtDetail-gallery-text {
  font-size: 12px;
}

/* Desktop CTA - 4. resmin üzerinde overlay */
.yachtDetail-gallery-desktopCta {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.yachtDetail-gallery-desktopCta:hover {
  background: rgba(198, 162, 116, 0.8);
}

.yachtDetail-gallery-desktopContent {
  text-align: center;
  color: white;
}

.yachtDetail-gallery-count {
  display: block;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.yachtDetail-gallery-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hover effects */
.galleryYachtGrid__item {
  overflow: hidden;
}


@media (max-width: 768px) {
  .yachtDetail-gallery-mobileBtn {
    padding: 6px 12px;
    font-size: 11px;
  }
  
  .yachtDetail-gallery-icon {
    font-size: 12px;
  }
  
  .yachtDetail-gallery-text {
    font-size: 10px;
  }
}
.yachtDetail-mobileInfo {
}

.yachtDetail-mobileTitle {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.yachtDetail-mobileSpecs {
  font-size: 13px;
  color: #666;
  gap: 0;
}
.journalSubPage {
    background: #fff;
}

/* Featured Post Section */
.journalSubPage-featured {
    padding: 0;
    background: #fff;
}

.journalSubPage-featured-content {
    padding: 0rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.journalSubPage-featured-main {
    margin-bottom: 3rem;
}

.journalSubPage-category {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.journalSubPage-title {
    font-size: 2.2rem;
    line-height: 1.2;
    color: var(--heading-color);
    margin-bottom: 2rem;
    font-weight: 400;
    font-family: var(--heading-font);
}

.journalSubPage-article-excerpt {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--body-color);
    margin-bottom: 1rem;
}

/* Next Read Section */
.journalSubPage-next {
    border-top: 1px solid #eee;
    padding-top: 2rem;
}

.journalSubPage-next-title {
    font-size: 1.2rem;
    color: var(--body-color);
    margin-bottom: 1.5rem;
    font-weight: 400;
    font-family: var(--heading-font);
}

.journalSubPage-next-content {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.journalSubPage-next-image {
    width: 120px;
    height: 90px;
    object-fit: cover;
    flex-shrink: 0;
}

.journalSubPage-next-text h4 {
    font-size: 1.3rem;
    line-height: 1.3;
    color: var(--heading-color);
    margin-bottom: 1rem;
    font-weight: 400;
    font-family: var(--body-font);
}

/* SEO H4 - Next Read makale başlığı */
.journalSubPage-next-h4 {
    font-size: 1.3rem;
    line-height: 1.3;
    color: var(--heading-color);
    margin-bottom: 1rem;
    font-weight: 400;
    font-family: var(--heading-font);
}

.journalSubPage-next-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.journalSubPage-next-author-image {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.journalSubPage-next-author-info span {
    font-size: 0.8rem;
    color: var(--body-color);
}

/* Categories Section */
.journalSubPage-categories {
    text-align: center;
    background: #fff;
}

.journalSubPage-categories h2 {
    font-size: 2.5rem;
    color: var(--heading-color);
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: var(--heading-font);
}

/* SEO H2 - Categories ana başlığı */
.journalSubPage-categories-h2 {
    font-size: 2.5rem;
    color: var(--heading-color);
    margin-bottom: 4rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: var(--heading-font);
}

.journalSubPage-category-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.journalSubPage-category-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.journalSubPage-category-item {
    border: 1px solid var(--accent-color);
    padding: 0.8rem 2rem;
    text-decoration: none;
    color: var(--accent-color);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-weight: 400;
    white-space: nowrap;
    font-family: var(--body-font);
}

.journalSubPage-category-item:hover {
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
}

/* Latest Articles Section */
.journalSubPage-latest {
}

.journalSubPage-latest-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 6rem;
}
.journalSubPage-latest-left h3 {
    color: var(--black-color);
    margin-bottom: 1rem;
    font-family: var(--body-font);
}

.journalSubPage-latest-subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-family: var(--body-font);
}

.journalSubPage-latest-left h2 {
    font-size: 2.2rem;
    color: var(--heading-color);
    font-weight: 400;
    margin-bottom: 2rem;
    font-family: var(--body-font);
}

/* SEO H2 - Latest Articles ana başlığı */
.journalSubPage-latest-h2 {
    font-size: 2.5rem;
    color: var(--heading-color);
    font-weight: 400;
    margin-bottom: 4rem;
    font-family: var(--heading-font);
}

.journalSubPage-articles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.journalSubPage-article-card {
    text-decoration: none;
    color: inherit;
}

.journalSubPage-article-card:hover {
    text-decoration: none;
    color: inherit;
}

.journalSubPage-article-title {
    font-size: 1.3rem;
    line-height: 1.3;
    color: var(--heading-color);
    margin-bottom: 1rem;
    font-weight: 400;
    font-family: var(--heading-font);
}

.journalSubPage-article-category {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-family: var(--body-font);
}

.journalSubPage-article-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.journalSubPage-article-author-image {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.journalSubPage-article-author-info span {
    font-size: 0.8rem;
    color: var(--body-color);
}

/* Right Side - Popular Articles */
.journalSubPage-latest-right h3 {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 3rem;
    text-align: right;
    font-family: var(--body-font);
}

/* SEO H3 - Popular Articles başlığı */
.journalSubPage-popular-h3 {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 3rem;
    text-align: right;
    font-family: var(--body-font);
}

.journalSubPage-popular-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 3rem;
    text-decoration: none;
    color: inherit;
}

.journalSubPage-popular-item:hover {
    text-decoration: none;
    color: inherit;
}

.journalSubPage-popular-number {
    font-size: 2.5rem;
    color: var(--accent-color);
    font-weight: 300;
    min-width: 50px;
    font-family: var(--heading-font);
}

.journalSubPage-popular-content h5 {
    font-size: 1.2rem;
    line-height: 1.4;
    color: var(--heading-color);
    margin-bottom: 0.8rem;
    font-weight: 400;
    font-family: var(--heading-font);
}

/* SEO H4 - Popular makale başlıkları */
.journalSubPage-popular-h4 {
    font-size: 1.2rem;
    line-height: 1.4;
    color: var(--heading-color);
    margin-bottom: 0.8rem;
    font-weight: 400;
    font-family: var(--heading-font);
}

.journalSubPage-popular-content span {
    font-size: 0.8rem;
    color: var(--body-color);
}

/* Popular Tags */
.journalSubPage-tags {
    margin-top: 4rem;
}

.journalSubPage-tags h4 {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-align: right;
    font-family: var(--body-font);
}

/* SEO H4 - Tags başlığı */
.journalSubPage-tags-h4 {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-align: right;
    font-family: var(--body-font);
}

.journalSubPage-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-end;
}

.journalSubPage-tag {
    border: 1px solid var(--accent-color);
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    color: var(--accent-color);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: var(--body-font);
}

.journalSubPage-tag:hover {
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .journalSubPage-featured-content {
        padding: 3rem 2rem;
    }
    
    .journalSubPage-title {
        font-size: 2rem;
    }
    
    .journalSubPage-next-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .journalSubPage-next-image {
        width: 100%;
        height: 200px;
    }
    
    .journalSubPage-category-row {
        gap: 1rem;
    }
    
    .journalSubPage-latest-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .journalSubPage-articles-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .journalSubPage-latest-right h3,
    .journalSubPage-popular-h3 {
        text-align: left;
    }
    
    .journalSubPage-tags-list {
        justify-content: flex-start;
    }
    
    .journalSubPage-tags h4,
    .journalSubPage-tags-h4 {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .journalSubPage-featured-content {
        padding: 2rem 1.5rem;
    }
    
    .journalSubPage-title {
        font-size: 1.8rem;
    }
    
    .journalSubPage-articles-grid {
        grid-template-columns: 1fr;
    }
    
    .journalSubPage-category-item {
        padding: 0.6rem 1.5rem;
        font-size: 0.7rem;
    }
}
/* ========================================
   JOURNAL DETAIL PAGE - COMPLETE CSS
======================================== */

/* Single Journal Detail Container */
.journalDetail-page {
    background: #fff;
}

/* Breadcrumb */
.journalDetail-breadcrumb {
    font-size: 0.85rem;
    color: var(--body-color);
}
.journalDetail-breadcrumb a {
    color: var(--accent-color);
    text-decoration: none;
}
.journalDetail-breadcrumb a:hover {
    text-decoration: underline;
}

/* Main Content Layout */
.journalDetail-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
}

/* Left Side - Article Content */
.journalDetail-article {
    background: #fff;
}

/* Article Header */
.journalDetail-header {
    margin-bottom:2rem;
}

.journalDetail-category {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-weight: 400;
    font-family: var(--body-font);
}

.journalDetail-title {
    font-size: 2.1rem;
    line-height: 1.2;
    color: var(--heading-color);
    margin-bottom: 1rem;
    font-weight: 400;
    font-family: var(--body-font);
}

.journalDetail-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.journalDetail-date {
    font-size: 0.85rem;
    color: var(--body-color);
}

.journalDetail-reading-time {
    font-size: 0.85rem;
    color: var(--body-color);
}

/* Table of Contents */
.journalDetail-toc {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin: 2rem 0 3rem 0;
    overflow: hidden;
}

.journalDetail-toc-header {
    padding: 1rem 1.5rem;
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    color: var(--heading-color);
    font-family: var(--body-font);
    font-size: 0.9rem;
}

.journalDetail-toc-icon {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
    color: var(--accent-color);
}

.journalDetail-toc.collapsed .journalDetail-toc-icon {
    transform: rotate(-90deg);
}

.journalDetail-toc-content {
    padding: 1.5rem;
    max-height: 300px;
    overflow-y: auto;
    transition: all 0.3s ease;
}

.journalDetail-toc.collapsed .journalDetail-toc-content {
    display: none;
}

.journalDetail-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.journalDetail-toc li {
    margin-bottom: 0.5rem;
}

.journalDetail-toc a {
    color: var(--body-color);
    text-decoration: none;
    font-size: 0.85rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.journalDetail-toc a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

.journalDetail-featured-image {
    margin-bottom: 3rem;
}

.journalDetail-featured-image .imgscale {
    border-radius: 0px;
}

/* Article Content */
.journalDetail-content {
    font-family: var(--body-font);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--body-color);
}

.journalDetail-content h2 {
    font-size: 1.8rem;
    color: var(--heading-color);
    margin: 3rem 0 1.5rem 0;
    font-weight: 400;
    font-family: var(--body-font);
}

.journalDetail-content h3 {
    font-size: 1.6rem;
    color: var(--heading-color);
    margin: 2.5rem 0 1.2rem 0;
    font-weight: 400;
    font-family: var(--body-font);
}

.journalDetail-content h4 {
    font-size: 1.4rem;
    color: var(--heading-color);
    margin: 2rem 0 1rem 0;
    font-weight: 400;
    font-family: var(--body-font);
}

.journalDetail-content h5 {
    font-size: 1.3rem;
    color: var(--heading-color);
    margin: 1.8rem 0 0.8rem 0;
    font-weight: 400;
    font-family: var(--body-font);
}

.journalDetail-content h6 {
    font-size: 1.1rem;
    color: var(--heading-color);
    margin: 1.5rem 0 0.5rem 0;
    font-weight: 500;
    font-family: var(--body-font);
}

.journalDetail-content p {
    margin-bottom: 1.5rem;
}

.journalDetail-content blockquote {
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: #f8f9fa;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--heading-color);
}

.journalDetail-content a {
    color: var(--accent-color);
    text-decoration: none;
}

.journalDetail-content a:hover {
    text-decoration: underline;
}


.journalDetail-content .imgscale {
    margin: 2rem 0;
    border-radius: 8px;
}


.journalDetail-content img:not(.pic-scale) {
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 0px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    max-height: 500px;
    object-fit: cover;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.journalDetail-content img:not(.pic-scale):hover {
    transform: translateY(-5px);
}

@media (min-width: 768px) {
    .journalDetail-content img:not(.pic-scale) {
        max-width: 80%;
    }
    
    .journalDetail-content figure img {
        max-width: 80%;
    }
}

/* Custom List Styles */
.journalDetail-content ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.journalDetail-content ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--body-color);
    font-family: var(--body-font);
    font-size: 1.1rem;
    line-height: 1.8;
}

.journalDetail-content ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
}

.journalDetail-content ul li:last-child {
    margin-bottom: 0;
}

/* Ordered Lists */
.journalDetail-content ol {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    counter-reset: main-counter;
}

.journalDetail-content ol li {
    position: relative;
    margin-bottom: 1.5rem;
    color: var(--body-color);
    font-family: var(--body-font);
    font-size: 1.1rem;
    line-height: 1.8;
}


.journalDetail-content ol li:has(strong) {
    counter-increment: main-counter;
    padding-left: 3rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.journalDetail-content ol li:has(strong):first-child {
    margin-top: 0;
}

.journalDetail-content ol li:has(strong):before {
    content: counter(main-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1;
}

/* Alt öğeler (strong içermeyenler) - dot */
.journalDetail-content ol li:not(:has(strong)) {
    padding-left: 2rem;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    font-size: 1rem;
}

.journalDetail-content ol li:not(:has(strong)):before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
}

/* Strong elementler için */
.journalDetail-content ol li strong {
    color: var(--heading-color);
    font-weight: 600;
}

/* Son element margin düzeltmesi */
.journalDetail-content ol li:last-child {
    margin-bottom: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .journalDetail-content ol li:has(strong) {
        padding-left: 2.5rem;
        font-size: 1rem;
    }
    
    .journalDetail-content ol li:has(strong):before {
        width: 1.8rem;
        height: 1.8rem;
        font-size: 0.8rem;
    }
    
    .journalDetail-content ol li:not(:has(strong)) {
        padding-left: 1.5rem;
        font-size: 0.95rem;
    }
}

/* Social Sharing - Popular Topics Style */
.journalDetail-sharing {
    padding: 2rem 0;
    border-top: 1px solid #eee;
}

.journalDetail-sharing-title {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-weight: 500;
    font-family: var(--body-font);
}

.journalDetail-sharing-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.journalDetail-share-btn {
    border: 1px solid var(--accent-color);
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    color: var(--accent-color);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: var(--body-font);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.journalDetail-share-btn:hover {
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
}

.journalDetail-share-btn i {
    font-size: 0.8rem;
}

/* Tags Section */
.journalDetail-tags {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.journalDetail-tags-title {
    font-size: 0.9rem;
    color: var(--heading-color);
    margin-bottom: 1rem;
    font-weight: 500;
    font-family: var(--body-font);
}

.journalDetail-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.journalDetail-tag {
    border: 1px solid var(--accent-color);
    padding: 0.4rem 1rem;
    text-decoration: none;
    color: var(--accent-color);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: var(--body-font);
}

.journalDetail-tag:hover {
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
}

/* Right Side - Sidebar */
.journalDetail-sidebar {
    background: #fff;
}


.journalDetail-popular {
    margin-bottom: 2rem;
}

.journalDetail-popular-title {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-align: right;
    font-family: var(--body-font);
    font-weight: 500;
}

.journalDetail-popular-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1rem;
    text-decoration: none;
    color: inherit;
}

.journalDetail-popular-item:hover {
    text-decoration: none;
    color: inherit;
}

.journalDetail-popular-number {
    font-size: 2.5rem;
    color: var(--accent-color);
    font-weight: 300;
    min-width: 50px;
    font-family: var(--heading-font);
}

.journalDetail-popular-content-title {
    font-size: 1.2rem;
    line-height: 1.4;
    color: var(--heading-color);
    margin-bottom: 0.8rem;
    font-weight: 400;
    font-family: var(--heading-font);
}

.journalDetail-popular-content span {
    font-size: 0.8rem;
    color: var(--body-color);
}


.journalDetail-topics {
    margin-top: 2em;
}

.journalDetail-topics-title {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-align: right;
    font-family: var(--body-font);
    font-weight: 500;
}

.journalDetail-topics-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-end;
}

.journalDetail-topic {
    border: 1px solid var(--accent-color);
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    color: var(--accent-color);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: var(--body-font);
}

.journalDetail-topic:hover {
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
}



/* Mobile Responsive */
@media (max-width: 992px) {
    .journalDetail-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .journalDetail-title {
        font-size: 2rem;
    }
    
    .journalDetail-popular-title,
    .journalDetail-topics-title {
        text-align: left;
    }
    
    .journalDetail-topics-list {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .journalDetail-page {
        padding: 2rem 0;
    }
    
    .journalDetail-title {
        font-size: 1.6rem;
    }
    
    .journalDetail-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .journalDetail-content {
        font-size: 1rem;
    }
    
    .journalDetail-content h2 {
        font-size: 1.6rem;
    }
    
    .journalDetail-content h3 {
        font-size: 1.3rem;
    }
    
    .journalDetail-sharing-buttons {
        gap: 0.5rem;
    }
    
    .journalDetail-share-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .journalDetail-content ul li,
    .journalDetail-content ol li {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .journalDetail-content ol li:before {
        width: 1.8rem;
        height: 1.8rem;
        font-size: 0.8rem;
    }
    
    .journalDetail-toc-content {
        padding: 1rem;
    }
}
.quick-enquire-container {
            margin: 0rem auto 4rem 0;
        }
        
        .quick-enquire-content {
            margin-bottom: 2rem;
        }
        
        /* Quick Enquire Step Header */
        .quick-enquire-step-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .quick-enquire-step-number {
            font-size: 0.8rem;
            color: var(--accent-color);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            font-weight: 500;
        }
        
        .quick-enquire-step-title {
            font-size: 2rem;
            color: var(--heading-color);
            font-family: var(--heading-font);
            font-weight: 400;
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        
        .quick-enquire-step-description {
            font-size: 1rem;
            color: var(--body-color);
            line-height: 1.6;
        }
        
        /* Quick Enquire Step Content */
        .quick-enquire-step-content {
            display: none;
            min-height: 300px;
        }
        
        .quick-enquire-step-content.active {
            display: block;
        }
        
        /* Quick Enquire Selection Grid */
        .quick-enquire-selection-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .quick-enquire-selection-card {
            border: 1px solid #e9ecef;
            border-radius: 0;
            padding: 1rem;
            cursor: pointer;
            background: #fff;
            position: relative;
            display: flex;
            gap: 1rem;
            min-height: 120px;
        }
        
        .quick-enquire-selection-card:hover {
            border-color: var(--accent-color);
            /*box-shadow: 0 8px 25px rgba(0,0,0,0.1);*/
        }
        
        .quick-enquire-selection-card.selected {
            border-color: var(--accent-color);
            /*background: rgba(197, 165, 111, 0.05);
            box-shadow: 0 6px 20px rgba(197, 165, 111, 0.15);*/
        }
        
        .quick-enquire-selection-card.selected::after {
            content: '✓';
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 24px;
            height: 24px;
            background: var(--accent-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 10;
        }
        
        .quick-enquire-card-image {
            width: 80px;
            height: 80px;
            background: #f8f9fa;
            border-radius: 0px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .quick-enquire-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .quick-enquire-card-content {
            flex: 1;
            text-align: left;
        }
        
        .quick-enquire-card-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--heading-color);
            margin-bottom: 0.5rem;
            font-family: var(--heading-font);
        }
        
        .quick-enquire-card-description {
            font-size: 0.9rem;
            color: var(--body-color);
            line-height: 1.5;
            margin-bottom: 0.5rem;
        }
        
        .quick-enquire-card-budget {
            font-size: 0.85rem;
            color: var(--accent-color);
            font-weight: 500;
        }
        
        /* Quick Enquire Form Elements */
        .quick-enquire-form-group {
            margin-bottom:1rem;
        }
        
        .quick-enquire-form-label {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--heading-color);
            margin-bottom: 0.5rem;
            letter-spacing: 0.5px;
            display: block;
        }
        
        .quick-enquire-form-control {
            border: 1px solid #e9ecef;
            border-radius: 4px;
            padding: 12px 16px;
            font-size: 1rem;
            width: 100%;
        }
        
        .quick-enquire-form-control:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 0.2rem rgba(197, 165, 111, 0.25);
            outline: none;
        }
        
        /* Quick Enquire Budget Range Slider */
        .quick-enquire-budget-container {
            text-align: center;
            padding: 1rem;
        }
        
        .quick-enquire-range-container {
            position: relative;
            margin: 2rem 0;
            padding: 0 1rem;
        }
        
        .quick-enquire-range-slider-wrapper {
            position: relative;
            margin: 1rem 0;
        }
        
        .quick-enquire-form-range {
            width: 100%;
            height: 6px;
            border-radius: 3px;
            background: #e9ecef;
            outline: none;
            -webkit-appearance: none;
            appearance: none;
        }
        
        .quick-enquire-form-range::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--accent-color);
            cursor: pointer;
            border: 3px solid white;
            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
        }
        
        .quick-enquire-form-range::-moz-range-thumb {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--accent-color);
            cursor: pointer;
            border: 3px solid white;
            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
        }
        
        .quick-enquire-budget-value {
            font-size: 2rem;
            font-weight: 600;
            color: var(--accent-color);
            margin-top: 1.5rem;
            text-align: center;
        }
        
        .quick-enquire-budget-range-labels {
            display: flex;
            justify-content: space-between;
            margin-top: 0.5rem;
            font-size: 0.9rem;
            color: #666;
        }
        
        /* Quick Enquire Occasions Grid */
        .quick-enquire-occasions-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .quick-enquire-checkbox-card {
            border: 2px solid #e9ecef;
            padding: 1.5rem 1rem;
            text-align: center;
            cursor: pointer;
            background: #fff;
            position: relative;
            min-height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .quick-enquire-checkbox-card:hover {
            border-color: var(--accent-color);
            /*box-shadow: 0 4px 15px rgba(0,0,0,0.1);*/
        }
        
        .quick-enquire-checkbox-card.selected {
            border-color: var(--accent-color);
            /*background: rgba(197, 165, 111, 0.05);*/
        }
        
        .quick-enquire-checkbox-card.selected::after {
            content: '✓';
            position: absolute;
            top: 0.5rem;
            right: 0.5rem;
            width: 20px;
            height: 20px;
            background: var(--accent-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 600;
        }
        
        .quick-enquire-checkbox-card input {
            display: none;
        }
        
        .quick-enquire-checkbox-label {
            font-weight: 500;
            color: var(--heading-color);
            font-size: 0.9rem;
            line-height: 1.3;
        }
        
        /* Quick Enquire Fixed Bottom Navigation */
        .quick-enquire-fixed-bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #fff;
            border-top: 1px solid #eee;
            padding: 1rem 0;
            z-index: 1000;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        }
        
        .quick-enquire-nav-content {
            max-width: 1720px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 1rem;
            gap: 2rem;
        }
        
        /* Quick Enquire Progress */
        .quick-enquire-progress {
            flex: 1;
            max-width: 800px;
        }
        
        .quick-enquire-progress-wrapper {
            position: relative;
        }
        
        .quick-enquire-progress-bar-bg {
            height: 4px;
            background: #e9ecef;
            border-radius: 2px;
            overflow: hidden;
            margin-bottom: 0.75rem;
        }
        
        .quick-enquire-progress-fill {
            height: 100%;
            background: var(--accent-color);
            width: 0%;
            border-radius: 2px;
        }
        
        .quick-enquire-progress-steps {
            display: flex;
            justify-content: space-between;
            gap: 0.5rem;
        }
        
        .quick-enquire-progress-step {
            font-size: 0.65rem;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-align: center;
            white-space: nowrap;
            flex: 1;
        }
        
        .quick-enquire-progress-step.active {
            color: var(--accent-color);
            font-weight: 500;
        }
        
        /* Quick Enquire Navigation Buttons */
        .quick-enquire-nav-buttons {
            display: flex;
            gap: 1rem;
            flex-shrink: 0;
        }
        
        .quick-enquire-btn-enquiry {
            padding: 12px 24px;
            border: none;
            border-radius: 0px;
            font-family: var(--body-font);
            font-size: 0.9rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            min-width: 120px;
            justify-content: center;
            white-space: nowrap;
        }
        
        .quick-enquire-btn-primary {
            background: var(--accent-color);
            color: white;
        }
        
        .quick-enquire-btn-primary:hover {
            background: #b8976f;
            color: white;
        }
        
        .quick-enquire-btn-secondary {
            background: transparent;
            color: var(--accent-color);
            border: 1px solid var(--accent-color);
        }
        
        .quick-enquire-btn-secondary:hover {
            background: var(--accent-color);
            color: white;
        }
        
        /* Quick Enquire Summary Sidebar */
        .quick-enquire-summary {
            background: #f8f9fa;
            padding: 2rem;
            margin-top: 2rem;
        }
        
        .quick-enquire-summary-title {
            font-size: 1.5rem;
            font-family: var(--heading-font);
            color: var(--heading-color);
            margin-bottom: 1.5rem;
        }
        
        .quick-enquire-summary-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 0;
            border-bottom: 1px solid #e9ecef;
        }
        
        .quick-enquire-summary-item:last-child {
            border-bottom: none;
        }
        
        .quick-enquire-summary-label {
            font-weight: 500;
            color: var(--heading-color);
        }
        
        .quick-enquire-summary-value {
            color: var(--body-color);
            text-align: right;
        }
        .quick-enquire-summary-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .quick-enquire-summary-header .quick-enquire-summary-title {
            margin-bottom: 0;
            font-size: 1.25rem;
        }

        /* Mobile adjustments */
        @media (max-width: 991.98px) {
            .quick-enquire-summary {
                margin-bottom: 2rem;
                margin-top: 0;
                padding: 1.5rem;
            }
            
            .quick-enquire-summary-content {
                display: block;
            }
        }

        .quick-enquire-toggle-btn {
            background: none;
            border: none;
            color: var(--accent-color);
            font-size: 0.9rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            padding: 0;
        }

        .quick-enquire-toggle-btn:hover {
            color: #b8976f;
        }

        .toggle-icon {
            font-size: 0.8rem;
        }

        .quick-enquire-toggle-btn.expanded .toggle-icon {
            transform: rotate(180deg);
        }

        .quick-enquire-summary-content {
        }
        /* Mobile Responsive */
        @media (max-width: 768px) {
          .quick-enquire-container {
                margin: 0rem auto 8rem 0;
            }
            .quick-enquire-step-title {
                font-size: 1.5rem;
            }
            
            .quick-enquire-selection-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .quick-enquire-selection-card {
                min-height: auto;
                padding: 1rem;
            }
            
            .quick-enquire-card-image {
                width: 50px;
                height: 40px;
            }
            
            .quick-enquire-card-title {
                font-size: 1rem;
            }
            
            .quick-enquire-card-description {
                font-size: 0.8rem;
            }
            
            .quick-enquire-card-budget {
                font-size: 0.75rem;
            }
            
            .quick-enquire-occasions-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            
            .quick-enquire-checkbox-card {
                padding: 1rem 0.5rem;
                min-height: 70px;
            }
            
            .quick-enquire-checkbox-label {
                font-size: 0.8rem;
            }
            
            .quick-enquire-budget-value {
                font-size: 1.5rem;
            }
            
            .quick-enquire-range-container {
                padding: 0 0.5rem;
                margin: 1.5rem 0;
            }
            
            .quick-enquire-nav-content {
                flex-direction: column;
                gap: 1rem;
                padding: 0 1rem;
            }
            
            .quick-enquire-progress {
                width: 100%;
                max-width: none;
            }
            
            .quick-enquire-progress-step {
                font-size: 0.55rem;
            }
            
            .quick-enquire-nav-buttons {
                width: 100%;
                justify-content: space-between;
            }
            
            .quick-enquire-btn-enquiry {
                padding: 10px 20px;
                font-size: 0.8rem;
                min-width: 100px;
                flex: 1;
                max-width: 150px;
            }
            
            .quick-enquire-fixed-bottom-nav {
                padding: 0.75rem 0;
            }
        }
        
        @media (max-width: 480px) {
          .quick-enquire-container {
                margin: 0rem auto 10rem 0;
            }
            .quick-enquire-occasions-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.75rem;
            }
            
            .quick-enquire-checkbox-card {
                padding: 0.75rem 0.25rem;
                min-height: auto;
            }
            
            .quick-enquire-checkbox-label {
                font-size: 0.75rem;
            }
            
            .quick-enquire-progress-step {
                font-size: 0.5rem;
                letter-spacing: 0.3px;
            }
            
            .quick-enquire-btn-enquiry {
                padding: 8px 16px;
                font-size: 0.75rem;
                min-width: 80px;
            }
            
            .quick-enquire-nav-content {
                padding: 0 0.75rem;
            }
        }
        
        /* Wide Desktop */
        @media (min-width: 1200px) {
            .quick-enquire-nav-content {
                gap: 3rem;
            }
            
            .quick-enquire-progress-step {
                font-size: 0.7rem;
            }
            
            .quick-enquire-btn-enquiry {
                padding: 10px 20px;
                font-size: 0.95rem;
                min-width: 120px;
            }
        }

        .galleryModalStl-yacht-gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: none;
    margin:0;
    padding: 5px;
}

.galleryModalStl-modal-content {
    display: flex;
    height: 100vh;
    width: 100%;
    padding: 15px;
}

.galleryModalStl-sidebar {
    width: 280px;
    background: #1a1a1a;
    padding: 2rem;
    overflow-y: auto;
    flex-shrink: 0;
}

.galleryModalStl-categories {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.galleryModalStl-category-btn {
    padding: 0.5rem;
    font-size: 15px;
    background: transparent;
    border: 1px solid #333;
    color: white;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0px;
}

.galleryModalStl-category-btn.active,
.galleryModalStl-category-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.galleryModalStl-main {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.galleryModalStl-header {
    position: absolute;
    top: 0;
    right: 24px;
    z-index: 10;
    padding: 0.5rem;
    background: transparent;
    background: var(--accent-color);
}

.galleryModalStl-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.galleryModalStl-close:hover {
    background: rgba(255,255,255,0.1);
}

.galleryModalStl-grid {
    width: 100%;
    height: 100vh;
    padding: 0 1rem;
    overflow-y: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.galleryModalStl-item {
    /*width: calc(50% - 0.5rem);
    border-radius: 0px;
    overflow: hidden;
    position: relative;*/
    width: calc(50% - 0.5rem);
}
.galleryModalStl-item.imgscale:hover { transform: none !important }
.galleryModalStl-item img {
    /*width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;*/
}

.galleryModalStl-item:hover img {
    
}

.galleryModalStl-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.galleryModalStl-item:hover .galleryModalStl-item-overlay {
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .galleryModalStl-modal-content {
        flex-direction: column;
        padding: 5px;
    }
    
    .galleryModalStl-sidebar {
        width: 100%;
        height: auto;
        max-height: 150px;
        padding: 1rem;
    }
    
    .galleryModalStl-categories {
        flex-direction: row;
        overflow-x: auto;
        gap: 0.5rem;
        padding-bottom: 1rem;
    }
    
    .galleryModalStl-category-btn {
        white-space: nowrap;
        min-width: 120px;
        text-align: center;
        padding: 0.75rem 1rem;
    }
    
    .galleryModalStl-main {
        height: calc(100vh - 150px);
    }
    
    .galleryModalStl-grid {
        height: 100%;
        padding: 0 1rem;
        gap: 0.75rem;
    }
    
    .galleryModalStl-item {
        width: 100%;s
    }
    .galleryModalStl-header {
    top: 0px;
    right: 22px;
    }
}

/* Scrollbar Styling */
.galleryModalStl-sidebar::-webkit-scrollbar,
.galleryModalStl-grid::-webkit-scrollbar {
    width: 6px;
}

.galleryModalStl-sidebar::-webkit-scrollbar-track,
.galleryModalStl-grid::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
}

.galleryModalStl-sidebar::-webkit-scrollbar-thumb,
.galleryModalStl-grid::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 3px;
}
      .contact-page-section {
          padding-top:80px;
          padding-bottom:80px; 
          background-color: #f5f5f5;
      }
      .contact-section-one {
        padding-top: 3rem;
        padding-bottom: 80px;
        background: linear-gradient(0deg, #D9DEDD -1.6%, #FFFFFF 100%);
        background: -webkit-linear-gradient(90deg, #D9DEDD -1.6%, #FFFFFF 100%);
        overflow: hidden;
      }

      .contact-section-one .sub-title {
        margin-bottom: 9px;
      }

      .contact-section-one .heading-title {
        margin-bottom: 33px;
      }

      .contact-left-one>p {
        margin-bottom: 36px;
        padding-left: 19px;
      }

      ul.contact-details-home {
        margin: 0;
        padding: 0;
        list-style: none;
        padding-left: 65px;
        position: relative;
      }

      ul.contact-details-home::after {
        content: "";
        position: absolute;
        top: -60px;
        left: 0;
        height: 255px;
        width: 1px;
        background-color: #D4D4D4;
      }

      ul.contact-details-home::before {
        content: "";
        position: absolute;
        top: 40px;
        left: 0;
        height: 87px;
        width: 1px;
        background-color: #3B4443;
        z-index: 1;
      }

      ul.contact-details-home li {
        display: flex;
        align-items: center;
        column-gap: 20px;
        margin-bottom: 33px;
      }

      ul.contact-details-home li a,
      ul.contact-details-home li p {
        color: var(--uniqo-black);
        font-size: 18px;
        margin-bottom: 0;
      }

      .contact-form-home {
        margin-left: 60px;
        padding: 75px 56px;
        background-color: #fff;
        clip-path: polygon(0 0, 100% 0, 100% 80%, 80% 100%, 0 100%);
      }

      .contact-page-section .contact-form-home {
        margin-left: 0px;
        clip-path: none !important;
      }
      .form-group {
        display: flex;
        column-gap: 50px;
        margin-bottom: 37px;
      }

      .contact-form-home .form-control {
        border: none;
        border-radius: 0;
        border-bottom: 1px solid #56736C;
        padding: 11px 0;
      }

      .contact-form-home .btn-secondary {
        column-gap: 80px;
      }

      .footer-main {
        position: relative;
        background-color: var(--black-color);
        padding: 50px 0 0 0;
      }

      .footer-header {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 40px;
        margin-bottom: 40px;
      }

      .footer-about {
        width: calc(78% - 10px);
        display: flex;
        flex-wrap: wrap;
        align-items: center;
      }

      .footer-logo {
        border-right: 1px solid var(--border-color);
        margin-right: 40px;
        padding-right: 70px;
      }

      .footer-logo img {
        width: 100%;
        max-width: 181px;
      }

      .about-footer-content {
        width: calc(100% - 292px);
      }

      .about-footer-content p {
        color: var(--white-color);
        margin-bottom: 0;
      }

      .footer-social-links {
        width: calc(22% - 15px);
        text-align: right;
      }

      .footer-social-links ul {
        display: inline-block;
        list-style: none;
        padding: 0;
        margin: 0;
      }

      .footer-social-links ul li {
        display: inline-block;
        border-radius: 50%;
        margin-right: 15px;
      }

      .footer-social-links ul li:last-child {
        margin: 0;
      }

      .footer-social-links ul li a {
        width: 36px;
        height: 36px;
        background: var(--accent-color);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--white-color);
        transition: all 0.4s ease-in-out;
      }

      .footer-social-links ul li:hover a {
        background: var(--black-color);
      }

      .footer-social-links ul li a i {
        color: inherit;
        font-size: 18px;
      }

      .footer-links span {
            font-size: 24px;
            color: var(--white-color);
            text-transform: capitalize;
            margin-bottom: 30px;
            padding: 0;
            font-weight: 400;
            line-height: 1.2em;
            font-family: var(--heading-font);
        }

        .footer-links ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .footer-links ul li {
            color: var(--white-color);
            line-height: 1.7em;
            margin-bottom: 15px;
        }

        .footer-links ul li:last-child {
            margin-bottom: 0;
        }

        .footer-links ul li a {
            color: inherit;
            transition: all 0.3s ease-in-out;
            text-decoration: none;
        }

        .footer-links ul li a:hover {
            color: var(--accent-color);
        }

        .footer-accordion-toggle {
            background: none;
            border: none;
            padding: 0;
            width: 100%;
            text-align: left;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .footer-accordion-toggle:focus {
            outline: none;
            box-shadow: none;
        }

        .footer-accordion-icon {
            font-size: 16px;
            color: var(--accent-color);
            transition: transform 0.3s ease;
        }

        .footer-accordion-toggle[aria-expanded="true"] .footer-accordion-icon {
            transform: rotate(180deg);
        }

        .footer-accordion-toggle:hover {
            color: var(--accent-color);
        }

        .footer-accordion-toggle:hover .footer-accordion-icon {
            color: var(--white-color);
        }

        .footer-links .collapse {
            transition: none !important;
        }

        .footer-links .collapsing {
            transition: height 0.3s ease !important;
        }

        @media (min-width: 768px) {
            .footer-accordion-toggle {
                pointer-events: none;
            }
            
            .footer-accordion-icon {
                display: none;
            }
            
            .footer-links .collapse {
                display: block !important;
            }
        }

        @media (max-width: 767px) {
            .footer-links span {
                margin-bottom: 15px;
            }
            
            .footer-links .collapse:not(.show) {
                display: none;
            }
            
            .footer-links .collapse.show {
                display: block;
            }
            
            .footer-links {
                border-bottom: 1px solid rgba(255,255,255,0.1);
                padding-bottom: 20px;
                margin-bottom: 20px;
            }
            
            .footer-links:last-child {
                border-bottom: none;
                margin-bottom: 0;
            }
        }

      .footer-contact-links {
        margin-right: 50px;
      }

      .footer-newsletter-box .section-title span {
      	padding: 0;
    	margin: 0 0 20px 0;
    	font-weight: 400;
    	line-height: 1.2em;
    	font-family: var(--heading-font);
        color: var(--white-color);
        font-size:28px;
      }

      .newsletter-form .form-group {
        display: flex;
      }

      .newsletter-form .form-group .form-control {
        width: calc(100% - 56px);
        font-size: 16px;
        font-weight: 400;
        line-height: 1.4em;
        color: var(--white-color);
        background: transparent;
        border: 1px solid var(--border-color);
        border-radius: 100px;
        outline: none;
        box-shadow: none;
        padding: 15px 20px;
      }

      .newsletter-form .form-group .form-control::placeholder {
        color: var(--white-color);
      }

      .newsletter-form .form-group .newsletter-btn {
        background-color: var(--accent-color);
        width: 56px;
        height: 56px;
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        transition: all 0.3s ease-in-out;
      }

      .newsletter-form .form-group .newsletter-btn:hover {
        background-color: var(--accent-color);
        transform: rotate(15deg);
      }

      .newsletter-form .form-group .newsletter-btn i {
        font-size: 24px;
        color: var(--white-color);
        padding-right: 5px;
      }

      .footer-copyright {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        border-top: 1px solid var(--border-color);
        margin-top: 50px;
        padding: 50px 0;
      }

      .footer-copyright-text p {
        color: var(--white-color);
        margin-bottom: 0;
      }

      .footer-privacy-policy ul {
        margin: 0;
        padding: 0;
        list-style: none;
      }

      .footer-privacy-policy ul li {
        position: relative;
        color: var(--white-color);
        text-transform: capitalize;
        display: inline-block;
        margin-right: 10px;
        padding-right: 16px;
        transition: all 0.3s ease-in-out;
      }

      .footer-privacy-policy ul li:hover {
        color: var(--accent-color);
      }

      .footer-privacy-policy ul li::before {
        content: '/';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        color: var(--white-color);
      }

      .footer-privacy-policy ul li:last-child {
        padding: 0;
        margin: 0;
      }

      .footer-privacy-policy ul li:last-child:before {
        display: none;
      }

      .footer-privacy-policy ul li a {
        color: inherit;
      }
      .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 15px;
            width: 45px;
            height: 45px;
            background: var(--accent-color);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 0px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 9999;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
        }

        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-to-top:hover {
            background: var(--white-color);
            border-color: var(--accent-color);
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
        }

        .scroll-to-top i {
            font-size: 20px;
            color: var(--white-color);
            transition: color 0.3s ease;
        }

        .scroll-to-top:hover i {
            color: var(--accent-color);
        }
        .scroll-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 3px;
            background: rgba(255, 255, 255, 0.3);
            width: 100%;
            border-radius: 0 0 0px 0px;
        }

        .scroll-progress-bar {
            height: 100%;
            background: var(--white-color);
            width: 0%;
            transition: width 0.1s ease;
            border-radius: 0 0 0px 0px;
        }

        .scroll-to-top:hover .scroll-progress-bar {
            background: var(--accent-color);
        }

        @media (max-width: 768px) {
            .scroll-to-top {
                width: 35px;
                height: 35px;
                bottom: 20px;
                right: 15px;
            }

            .scroll-to-top i {
                font-size: 16px;
            }
        }
        .scroll-to-top.pulse {
            animation: pulseEffect 0.6s ease-out;
        }

        @keyframes pulseEffect {
            0% {
                transform: scale(0.8);
                opacity: 0;
            }
            50% {
                transform: scale(1.1);
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        .odometer.odometer-auto-theme, .odometer.odometer-theme-default {
  display: -moz-inline-box;
  -moz-box-orient: vertical;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  position: relative;
}
.odometer.odometer-auto-theme, .odometer.odometer-theme-default {
  *display: inline;
}
.odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-default .odometer-digit {
  display: -moz-inline-box;
  -moz-box-orient: vertical;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  position: relative;
}
.odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-default .odometer-digit {
  *display: inline;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer, .odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer {
  display: -moz-inline-box;
  -moz-box-orient: vertical;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  visibility: hidden;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer, .odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer {
  *display: inline;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner, .odometer.odometer-theme-default .odometer-digit .odometer-digit-inner {
  text-align: left;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon, .odometer.odometer-theme-default .odometer-digit .odometer-ribbon {
  display: block;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner, .odometer.odometer-theme-default .odometer-digit .odometer-ribbon-inner {
  display: block;
  -webkit-backface-visibility: hidden;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-value, .odometer.odometer-theme-default .odometer-digit .odometer-value {
  display: block;
  -webkit-transform: translateZ(0);
}
.odometer.odometer-auto-theme .odometer-digit .odometer-value.odometer-last-value, .odometer.odometer-theme-default .odometer-digit .odometer-value.odometer-last-value {
  position: absolute;
}
.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-up .odometer-ribbon-inner {
  -webkit-transition: -webkit-transform 2s;
  -moz-transition: -moz-transform 2s;
  -ms-transition: -ms-transform 2s;
  -o-transition: -o-transform 2s;
  transition: transform 2s;
}
.odometer.odometer-auto-theme.odometer-animating-up.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-up.odometer-animating .odometer-ribbon-inner {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.odometer.odometer-auto-theme.odometer-animating-down .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-down .odometer-ribbon-inner {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
  -webkit-transition: -webkit-transform 2s;
  -moz-transition: -moz-transform 2s;
  -ms-transition: -ms-transform 2s;
  -o-transition: -o-transform 2s;
  transition: transform 2s;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.odometer.odometer-auto-theme, .odometer.odometer-theme-default {
  font-family: "Helvetica Neue", sans-serif;
  line-height: 1.1em;
}
.odometer.odometer-auto-theme .odometer-value, .odometer.odometer-theme-default .odometer-value {
  text-align: center;
}

/**
 * YCB Calendar System - Complete CSS
 * Supports inline, triggered, and popup calendar modes
 */

/* Base Styles */
.ycb-calendar-base {
    font-family: var(--body-font, 'Poppins', sans-serif);
}

/* Input Wrapper Styles */
.ycb-calendar-input-wrapper {
    position: relative;
    margin-bottom: 15px;
}

.ycb-calendar-input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 2px solid var(--border-color, rgba(52, 57, 53, 0.5));
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--body-font, 'Poppins', sans-serif);
    background: var(--white-color, #fff);
    color: var(--heading-color, #343935);
    cursor: pointer;
    transition: all 0.3s ease;
}

.ycb-calendar-input:focus,
.ycb-calendar-input.ycb-calendar-active {
    outline: none;
    border-color: var(--accent-color, #C5A56F);
    box-shadow: 0 0 0 3px rgba(197, 165, 111, 0.15);
}

.ycb-calendar-input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--body-color, rgba(52, 57, 53, 0.75));
    font-size: 16px;
    pointer-events: none;
    transition: color 0.3s ease;
}

.ycb-calendar-input.ycb-calendar-active + .ycb-calendar-input-icon {
    color: var(--accent-color, #C5A56F);
}

/* Calendar Container Base */
.ycb-calendar-container {
    background: var(--white-color, #fff);
    border: 1px solid #e9ecef;
    border-radius: 0px;
    padding: 15px;
    max-width: 500px;
    margin: 0 auto;
    font-family: var(--body-font, 'Poppins', sans-serif);
}

/* Inline Calendar (always visible) */
.ycb-calendar-inline {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Triggered Calendar (dropdown style) */
.ycb-calendar-triggered {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    margin-top: 10px;
}

.ycb-calendar-triggered.ycb-calendar-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Popup Modal Styles */
.ycb-calendar-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin:0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ycb-calendar-modal.ycb-calendar-visible {
    opacity: 1;
    visibility: visible;
}

.ycb-calendar-modal-content {
    background: var(--white-color, #fff);
    border-radius: 0px;
    padding: 25px;
    max-width: 450px;
    width: calc(100vw - 40px);
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 40px rgba(52, 57, 53, 0.2);
}

.ycb-calendar-modal.ycb-calendar-visible .ycb-calendar-modal-content {
    transform: scale(1);
}

/* Modal Header */
.ycb-calendar-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--cream-color, #EDEAE5);
}

.ycb-calendar-modal-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color, #343935);
    font-family: var(--heading-font, 'Playfair Display', serif);
    margin: 0;
}

.ycb-calendar-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--body-color, rgba(52, 57, 53, 0.75));
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.2s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ycb-calendar-close-btn:hover {
    background: var(--cream-color, #EDEAE5);
    color: var(--heading-color, #343935);
}

/* Calendar Header */
.ycb-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--cream-color, #EDEAE5);
}

.ycb-calendar-nav {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--accent-color, #C5A56F);
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-family: var(--body-font, 'Poppins', sans-serif);
}

.ycb-calendar-nav:hover {
    background: var(--cream-color, #EDEAE5);
    transform: scale(1.1);
}

.ycb-calendar-month {
    font-size: 17px;
    font-weight: 600;
    color: var(--heading-color, #343935);
    font-family: var(--heading-font, 'Playfair Display', serif);
}

/* Calendar Grid */
.ycb-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
    margin-bottom: 15px;
}

.ycb-calendar-day-header {
    text-align: center;
    padding: 8px 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--body-color, rgba(52, 57, 53, 0.75));
    text-transform: uppercase;
    font-family: var(--body-font, 'Poppins', sans-serif);
    letter-spacing: 0.5px;
}

.ycb-calendar-day {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--body-font, 'Poppins', sans-serif);
    transition: all 0.2s ease;
    background: var(--white-color, #fff);
    color: var(--heading-color, #343935);
    border: 1px solid transparent;
    position: relative;
    height: 40px;
    width: 50px;
    margin: 0 auto;
}

.ycb-calendar-day:hover {
    background: var(--cream-color, #EDEAE5);
    border-color: var(--accent-color, #C5A56F);
    transform: scale(1.05);
}

.ycb-calendar-day.ycb-calendar-disabled {
    color: var(--gray-color, rgba(255, 255, 255, 0.75));
    cursor: not-allowed;
    background: #f5f5f5;
}

.ycb-calendar-day.ycb-calendar-disabled:hover {
    background: #f5f5f5;
    transform: none;
    border-color: transparent;
}

.ycb-calendar-day.ycb-calendar-selected {
    background: var(--accent-color, #C5A56F);
    color: var(--white-color, #fff);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(197, 165, 111, 0.3);
}

.ycb-calendar-day.ycb-calendar-in-range {
    background: rgba(197, 165, 111, 0.2);
    color: var(--accent-color, #C5A56F);
    font-weight: 500;
    border-color: rgba(197, 165, 111, 0.4);
}

.ycb-calendar-day.ycb-calendar-range-start {
    background: var(--accent-color, #C5A56F);
    color: var(--white-color, #fff);
    border-radius: 8px 2px 2px 8px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(197, 165, 111, 0.3);
}

.ycb-calendar-day.ycb-calendar-range-end {
    background: var(--accent-color, #C5A56F);
    color: var(--white-color, #fff);
    border-radius: 2px 8px 8px 2px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(197, 165, 111, 0.3);
}

.ycb-calendar-day.ycb-calendar-range-start.ycb-calendar-range-end {
    border-radius: 8px;
}

/* Selection Display */
.ycb-calendar-selection {
    background: linear-gradient(135deg, var(--cream-color, #EDEAE5) 0%, #f0ede8 100%);
    border-radius: 0px;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid rgba(197, 165, 111, 0.3);
}

.ycb-calendar-selection-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    font-family: var(--body-font, 'Poppins', sans-serif);
}

.ycb-calendar-selection-item:last-child {
    margin-bottom: 0;
}

.ycb-calendar-selection-label {
    font-weight: 600;
    color: var(--body-color, rgba(52, 57, 53, 0.75));
    font-size: 13px;
}

.ycb-calendar-selection-value {
    color: var(--accent-color, #C5A56F);
    font-weight: 700;
    font-size: 13px;
}

/* Calendar Actions */
.ycb-calendar-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--cream-color, #EDEAE5);
}

.ycb-calendar-btn {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 0px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--body-font, 'Poppins', sans-serif);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ycb-calendar-btn-cancel {
    background: var(--cream-color, #EDEAE5);
    color: var(--body-color, rgba(52, 57, 53, 0.75));
    border: 1px solid var(--border-color, rgba(52, 57, 53, 0.5));
}

.ycb-calendar-btn-cancel:hover {
    background: #ddd7ce;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(52, 57, 53, 0.15);
}

.ycb-calendar-btn-confirm {
    background: linear-gradient(135deg, var(--accent-color, #C5A56F) 0%, #b8966a 100%);
    color: var(--white-color, #fff);
    border: 1px solid var(--accent-color, #C5A56F);
}

.ycb-calendar-btn-confirm:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(197, 165, 111, 0.4);
}

.ycb-calendar-btn-confirm:disabled {
    background: var(--gray-color, rgba(255, 255, 255, 0.75));
    color: #999;
    cursor: not-allowed;
    transform: none;
    border-color: #ccc;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .ycb-calendar-container {
        padding: 12px;
        margin: 0 10px;
        max-width: calc(100vw - 20px);
    }
    
    .ycb-calendar-modal-content {
        padding: 20px;
        margin: 20px;
        width: calc(100vw - 40px);
    }
    
    .ycb-calendar-selection {
        padding: 10px;
        margin-bottom: 12px;
    }
    
    .ycb-calendar-selection-label,
    .ycb-calendar-selection-value {
        font-size: 12px;
    }
    
    .ycb-calendar-header {
        margin-bottom: 12px;
        padding-bottom: 10px;
    }
    
    .ycb-calendar-month {
        font-size: 15px;
    }
    
    .ycb-calendar-nav {
        font-size: 16px;
        padding: 6px 10px;
    }
    
    .ycb-calendar-grid {
        gap: 2px;
        margin-bottom: 12px;
    }
    
    .ycb-calendar-day {
        font-size: 12px;
        min-height: 28px;
    }
    
    .ycb-calendar-day-header {
        padding: 6px 2px;
        font-size: 10px;
    }
    
    .ycb-calendar-actions {
        margin-top: 12px;
        padding-top: 12px;
        gap: 8px;
    }
    
    .ycb-calendar-btn {
        padding: 8px 12px;
        font-size: 11px;
    }
    
    .ycb-calendar-modal-title {
        font-size: 16px;
    }
    
    .ycb-calendar-close-btn {
        width: 30px;
        height: 30px;
        font-size: 20px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .ycb-calendar-container,
    .ycb-calendar-modal-content {
        padding: 10px;
        margin: 0 5px;
    }
    
    .ycb-calendar-day {
        min-height: 26px;
        font-size: 11px;
    }
    
    .ycb-calendar-month {
        font-size: 14px;
    }
    
    .ycb-calendar-modal-title {
        font-size: 15px;
    }
}

/* Form Integration Styles */
.contact-field-frame .ycb-calendar-input-wrapper {
    margin-bottom: 0;
}

/* Validation States Integration */
.form-validate-icons span.success + .ycb-calendar-input-wrapper .ycb-calendar-input {
    border-color: #28a745;
}

.form-validate-icons span.error + .ycb-calendar-input-wrapper .ycb-calendar-input {
    border-color: #dc3545;
}

.form-validate-icons span.success + .ycb-calendar-input-wrapper .ycb-calendar-input-icon {
    color: #28a745;
}

.form-validate-icons span.error + .ycb-calendar-input-wrapper .ycb-calendar-input-icon {
    color: #dc3545;
}

/* Animation Enhancements */
@keyframes ycb-calendar-fade-in {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ycb-calendar-modal-in {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.ycb-calendar-triggered.ycb-calendar-visible {
    animation: ycb-calendar-fade-in 0.3s ease;
}

.ycb-calendar-modal.ycb-calendar-visible .ycb-calendar-modal-content {
    animation: ycb-calendar-modal-in 0.3s ease;
}
