/* Luxury Yacht Preloader Styles */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1c2e4a 0%, #0f2035 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.yacht-icon {
    margin-bottom: 20px;
    transform-origin: center;
    animation: float 3s ease-in-out infinite;
}

.yacht-body {
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: draw 2s ease-in-out forwards;
}

.yacht-mast {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: draw 1s ease-in-out 0.5s forwards;
}

.yacht-sail {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: draw 1.5s ease-in-out 0.7s forwards;
}

.water-ripple {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    opacity: 0;
}

.ripple1 {
    animation: drawRipple 2s ease-in-out 1.2s infinite;
}

.ripple2 {
    animation: drawRipple 2s ease-in-out 1.4s infinite;
}

.ripple3 {
    animation: drawRipple 2s ease-in-out 1.6s infinite;
}

.loading-text {
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    letter-spacing: 5px;
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out 1s forwards;
}

/* Animation Keyframes */
@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes drawRipple {
    0% {
        stroke-dashoffset: 300;
        opacity: 0;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 0;
    }
}

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

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

/* Hide preloader when page is loaded */
.preloader-hidden {
    opacity: 0;
    visibility: hidden;
}

/* Yacht Cards Styles */
.yacht-card {
  transition: all 0.3s ease;
}
.yacht-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.b-goods.b-goods_list {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  background-color: #fff;
}

.b-goods__img {
  position: relative;
  height: 230px;
  overflow: hidden;
}

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

.b-goods__img img.img-scale:hover {
  transform: scale(1.05);
}

.b-goods__img .b-goods__label {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 4px;
  color: #fff;
  font-weight: 600;
  z-index: 2;
}

.b-goods__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 15px;
}

.b-goods__header {
  margin-bottom: 15px;
}

.b-goods__name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
}

.b-goods__info {
  font-size: 14px;
  color: #666;
}

.b-goods__section {
  flex: 1;
  margin-bottom: 15px;
}

.yacht-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.yacht-spec-item {
  display: flex;
  flex-direction: column;
}

.spec-label {
  font-size: 13px;
  color: #777;
  margin-bottom: 3px;
}

.spec-label i {
  margin-right: 5px;
  color: #0056b3;
}

.spec-value {
  font-size: 15px;
  font-weight: 600;
  color: #333;
}

.b-goods__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.b-goods__price {
  display: flex;
  flex-direction: column;
}

.b-goods__price-title {
  font-size: 12px;
  color: #666;
  margin-bottom: 3px;
}

.b-goods__price-number {
  font-size: 20px;
  font-weight: 700;
  color: #0056b3;
  white-space: nowrap;
}

.price-value {
  margin-right: 2px;
}

.price-currency {
  font-size: 16px;
}

.b-goods__link {
  display: inline-block;
  padding: 8px 16px;
  background-color: #0056b3;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.b-goods__link:hover {
  background-color: #003d7a;
  color: #fff;
  text-decoration: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .yacht-specs {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .b-goods__footer {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .b-goods__price {
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .b-goods__img {
    height: 200px;
  }
  
  .yacht-specs {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .b-goods__name {
    font-size: 16px;
  }
  
  .spec-value {
    font-size: 14px;
  }
  
  .b-goods__price-number {
    font-size: 18px;
  }
}

/* Loading and Error Placeholders */
.img-scale[src=""] {
  background-color: #f5f5f5;
  position: relative;
}

.img-scale[src=""]:before {
  content: "Yükleniyor...";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #999;
  font-size: 14px;
}

.img-scale[src*="yacht-placeholder.jpg"] {
  background-color: #f0f0f0;
}

/* End of Yacht Card Styles */

/* Add loading placeholder and fix image errors */
.yacht-card.loading .b-goods__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f7f7f7;
  z-index: 1;
}

.yacht-card.loading .b-goods__img::after {
  content: "Loading...";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #777;
  font-size: 14px;
  z-index: 2;
}

.img-error {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  background-color: #f7f7f7;
  color: #777;
  font-size: 14px;
}

/* Fullscreen Luxury Hero Slider Styles */
.fullscreen-hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100); /* Dynamic viewport height */
    overflow: hidden;
    background-color: #000;
    box-sizing: border-box;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 1.5s ease, transform 1.5s ease;
    transform: scale(1.05);
}

.slider-slide.active {
    opacity: 1;
    z-index: 2;
    transform: scale(1);
}

.slider-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slider-image-wrapper,
.slider-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-image,
.slider-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slider-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
    box-sizing: border-box;
}

.slider-text-container {
    max-width: 800px;
    padding: 2rem;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 1s ease 0.5s, opacity 1s ease 0.5s;
}

.slider-slide.active .slider-text-container {
    transform: translateY(0);
    opacity: 1;
}

.slider-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.slider-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.slider-cta {
    margin-top: 2rem;
}

.btn-hero {
    background-color: #c8a97e;
    border-color: #c8a97e;
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background-color: #a38966;
    border-color: #a38966;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.btn-hero::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #a38966;
    transition: all 0.3s;
    z-index: -1;
}

.btn-hero:hover::before {
    width: 100%;
}

/* Navigation Controls */
.slider-navigation {
    position: absolute;
    bottom: 2.5rem;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.slider-prev,
.slider-next {
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 1rem;
    padding: 0;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.slider-prev:hover,
.slider-next:hover {
    opacity: 1;
}

.slider-prev span,
.slider-next span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #fff;
    position: relative;
}

.slider-prev span:before,
.slider-next span:before {
    content: '';
    position: absolute;
    width: 12px;
    height: 2px;
    background-color: #fff;
    top: -4px;
    transition: all 0.3s ease;
}

.slider-prev span:after,
.slider-next span:after {
    content: '';
    position: absolute;
    width: 12px;
    height: 2px;
    background-color: #fff;
    top: 4px;
    transition: all 0.3s ease;
}

.slider-prev span:before,
.slider-prev span:after {
    left: 0;
    transform-origin: left;
}

.slider-next span:before,
.slider-next span:after {
    right: 0;
    transform-origin: right;
}

.slider-prev span:before {
    transform: rotate(-45deg);
}

.slider-prev span:after {
    transform: rotate(45deg);
}

.slider-next span:before {
    transform: rotate(45deg);
}

.slider-next span:after {
    transform: rotate(-45deg);
}

.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
    border: 2px solid transparent;
    margin: 0 0.5rem;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: transparent;
    border-color: #fff;
    transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .slider-title {
        font-size: 2.5rem;
    }
    
    .slider-subtitle {
        font-size: 1rem;
    }
}

/* Mobile browser address bar handling */
@media screen and (max-width: 768px) {
    /* Prevent mobile browser address bar from affecting viewport */
    html, body {
        height: 100%;
        overflow-x: hidden;
    }
    
    /* Ensure fullscreen on mobile */
    .fullscreen-hero-slider {
        position: relative;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        min-height: 100vh;
        min-height: 100dvh;
        z-index: 1;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    /* For iOS Safari */
    @supports (-webkit-touch-callout: none) {
        .fullscreen-hero-slider {
            height: -webkit-fill-available;
            min-height: -webkit-fill-available;
        }
    }
    
    /* Prevent any parent containers from interfering */
    .fullscreen-hero-slider * {
        box-sizing: border-box;
    }
    
    /* Mobile header background fix */
    .header {
        position: fixed !important;
        background: rgba(0, 35, 85, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1) !important;
        z-index: 9999 !important;
    }
    
    .header-main {
        background: rgba(0, 35, 85, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1) !important;
    }
    
    .header:not(.scrolled) .header-main {
        background: rgba(0, 35, 85, 0.9) !important;
    }
    
    .header.scrolled .header-main {
        background: rgba(0, 35, 85, 0.98) !important;
    }
}

@media (max-width: 768px) {
    .fullscreen-hero-slider {
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for modern browsers */
        min-height: 100vh;
        min-height: 100dvh;
        width: 100vw;
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    /* For iOS Safari address bar handling */
    @supports (-webkit-touch-callout: none) {
        .fullscreen-hero-slider {
            height: -webkit-fill-available;
            min-height: -webkit-fill-available;
        }
    }
    
    /* Ensure media fills entire screen */
    .slider-image-wrapper,
    .slider-video-wrapper {
        width: 100vw;
        height: 100vh;
        height: 100dvh;
    }
    
    .slider-image,
    .slider-video {
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        object-fit: cover;
        object-position: center;
    }
    
    /* Mobile content positioning */
    .slider-content {
        padding: 1rem;
        align-items: center;
        justify-content: center;
    }
    
    .slider-text-container {
        max-width: 90%;
        padding: 1rem;
    }
    
    .slider-title {
        font-size: 2rem;
    }
    
    .slider-navigation {
        bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .fullscreen-hero-slider {
        height: 100vh;
        height: 100dvh;
        min-height: 100vh;
        min-height: 100dvh;
        width: 100vw;
        position: relative;
    }
    
    /* Ensure proper fullscreen on very small devices */
    .slider-slide {
        width: 100vw;
        height: 100vh;
        height: 100dvh;
    }
    
    /* Optimize overlay for small screens */
    .overlay-gradient {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    }
    
    .slider-title {
        font-size: 1.75rem;
    }
    
    .slider-subtitle {
        font-size: 0.875rem;
        letter-spacing: 1px;
    }
    
    .btn-hero {
        padding: 0.75rem 2rem;
        font-size: 0.875rem;
    }
    
    .slider-prev,
    .slider-next {
        width: 30px;
        height: 30px;
    }
    
    .slider-prev span,
    .slider-next span {
        width: 24px;
    }
    
    .slider-dot {
        width: 4px;
        height: 4px;
        margin: 0 0.1rem;
    }
    
    .slider-dot.active {
        transform: scale(1.2);
    }
}

/* Ultra small mobile devices */
@media (max-width: 380px) {
    .fullscreen-hero-slider {
        height: 100vh;
        height: 100dvh;
        min-height: 100vh;
        min-height: 100dvh;
        width: 100vw;
    }
    
    /* Ensure proper fullscreen on very small devices */
    .slider-slide {
        width: 100vw;
        height: 100vh;
        height: 100dvh;
    }
    
    .slider-dots {
        gap: 4px;
    }
    
    .slider-dot {
        width: 3px;
        height: 3px;
        margin: 0 0.05rem;
    }
    
    .slider-dot.active {
        transform: scale(1.3);
    }
    
    .elite-indicators {
        gap: 4px;
    }
    
    .elite-indicator {
        width: 4px;
        height: 4px;
    }
    
    .owl-dots {
        gap: 4px !important;
    }
    
    .owl-dot {
        width: 4px !important;
        height: 4px !important;
    }
}

@media (max-width: 480px) {
    .fullscreen-hero-slider {
        height: 100vh;
        height: 100dvh;
        min-height: 100vh;
        min-height: 100dvh;
        width: 100vw;
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    /* Ensure proper fullscreen on very small devices */
    .slider-slide {
        width: 100vw;
        height: 100vh;
        height: 100dvh;
    }
    
    /* Optimize overlay for small screens */
    .overlay-gradient {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    }
    
    /* Touch optimization for mobile */
    .slider-navigation {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .slider-prev,
    .slider-next,
    .slider-dot {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .slider-dots {
        gap: 6px;
    }
    
    .slider-dot {
        width: 4px;
        height: 4px;
        margin: 0 0.15rem;
    }
    
    .slider-dot.active {
        transform: scale(1.1);
    }
}

/* Enhanced Luxury Styling */
.luxury-advantages {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.luxury-advantages::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #c8a97e, #dfca9c, #c8a97e);
}

.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-title .subtitle {
    font-size: 18px;
    color: #777;
    margin-top: 20px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.centered-decore {
    margin: 0 auto;
}

.luxury-card {
    padding: 40px 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.luxury-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c8a97e, #dfca9c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.luxury-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.luxury-card:hover::after {
    transform: scaleX(1);
}

.luxury-card .ic {
    font-size: 48px;
    margin-bottom: 25px;
    color: #c8a97e !important;
    display: inline-block;
    transition: all 0.4s ease;
}

.luxury-card:hover .ic {
    transform: scale(1.1) rotate(5deg);
}

.luxury-card .b-advantages__title {
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.luxury-card .b-advantages__info {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* Featured card styling */
.featured-card {
    transform: translateY(-10px);
    border: 1px solid rgba(200, 169, 126, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    z-index: 2;
}

.featured-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c8a97e, #dfca9c);
}

.featured-card .card-icon-wrapper {
    background: linear-gradient(135deg, rgba(200, 169, 126, 0.3), rgba(255, 255, 255, 0));
}

.featured-card:hover {
    transform: translateY(-25px);
}

/* Luxury card entrance animations */
@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardIconPop {
    0% {
        transform: scale(0.6);
        opacity: 0;
    }
    70% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes dividerWidth {
    from {
        width: 0;
    }
    to {
        width: 40px;
    }
}

/* Apply animations on load */
.col-lg-4:nth-child(1) .luxury-card {
    animation-delay: 0.1s;
}

.col-lg-4:nth-child(2) .luxury-card {
    animation-delay: 0.3s;
}

.col-lg-4:nth-child(3) .luxury-card {
    animation-delay: 0.5s;
}

.col-lg-4:nth-child(1) .card-icon-wrapper {
    animation-delay: 0.7s;
}

.col-lg-4:nth-child(2) .card-icon-wrapper {
    animation-delay: 0.9s;
}

.col-lg-4:nth-child(3) .card-icon-wrapper {
    animation-delay: 1.1s;
}

.col-lg-4:nth-child(1) .card-divider {
    animation-delay: 1.1s;
}

.col-lg-4:nth-child(2) .card-divider {
    animation-delay: 1.3s;
}

.col-lg-4:nth-child(3) .card-divider {
    animation-delay: 1.5s;
}

/* Elegant hover effects */
.luxury-card {
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.luxury-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.featured-card:hover {
    transform: translateY(-25px);
}

/* Luxurious radial gradient effect */
.luxury-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(200, 169, 126, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    pointer-events: none;
}

.luxury-card:hover::before {
    opacity: 1;
}



/* Luxury Deal Section */
.luxury-deal-section {
    padding: 90px 0 60px;
    background-color: #f9f9f9;
    position: relative;
}

.luxury-deal-wrapper {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 70px;
}

.deal-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 350px;
}

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

.deal-badge {
    position: absolute;
    top: 20px;
    left: 0;
    background: linear-gradient(90deg, #c8a97e, #dfca9c);
    color: #fff;
    padding: 8px 20px;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.deal-content {
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.deal-subtitle {
    color: #c8a97e;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 500;
}

.deal-title {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
}

.deal-price {
    color: #c8a97e;
    font-size: 24px;
    margin-top: 5px;
    font-weight: 700;
}

.deal-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #c8a97e, #dfca9c);
    margin-bottom: 25px;
}

.deal-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px 25px;
    margin-bottom: 30px;
}

.deal-spec {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 13px;
    color: #777;
    margin-bottom: 5px;
}

.spec-value {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.deal-cta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.deal-btn {
    background-color: #c8a97e;
    border-color: #c8a97e;
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(200, 169, 126, 0.3);
    transition: all 0.3s ease;
}

.deal-btn:hover {
    background-color: #a38966;
    border-color: #a38966;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(163, 137, 102, 0.4);
}

.deal-contact {
    display: flex;
    align-items: center;
    gap: 12px;
}

.deal-contact i {
    font-size: 24px;
    color: #c8a97e;
}

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

.contact-info span {
    font-size: 12px;
    color: #777;
}

.contact-info strong {
    font-size: 18px;
    color: #333;
}

/* Luxury Counters */
.luxury-counters {
    margin-top: 40px;
}

.luxury-counter {
    background-color: #fff;
    padding: 35px 25px;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 3px solid #c8a97e;
    transition: all 0.4s ease;
}

.luxury-counter:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.counter-icon {
    font-size: 48px;
    color: #c8a97e;
    margin-bottom: 20px;
}

.counter-number {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.counter-plus {
    font-size: 28px;
    margin-left: 2px;
    color: #c8a97e;
}

.counter-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* Essential Information Section */
.essential-info-section {
    padding: 90px 0;
    background-color: #fff;
    position: relative;
}

.essential-info-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(200, 169, 126, 0.3) 50%, transparent 100%);
}

.luxury-info-cards {
    margin-top: 60px;
    margin-bottom: 80px;
}

.info-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(200, 169, 126, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
}

.info-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #c8a97e, #dfca9c);
    transition: all 0.4s ease;
}

.info-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.info-card:hover::after {
    width: 100%;
}

.info-icon {
    font-size: 36px;
    color: #c8a97e;
    margin-bottom: 25px;
    display: inline-block;
    transition: all 0.4s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.1);
}

.info-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.info-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #c8a97e;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.info-list li {
    position: relative;
    padding: 10px 0 10px 28px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    color: #555;
    font-size: 15px;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #c8a97e;
    box-shadow: 0 0 0 3px rgba(200, 169, 126, 0.2);
}

.info-link {
    color: #c8a97e;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.info-link::after {
    content: "→";
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.info-link:hover {
    color: #a38966;
    text-decoration: none;
}

.info-link:hover::after {
    transform: translateX(4px);
}

/* Charter Policy Section */
.charter-policy {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 60px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.05);
    overflow: hidden;
    position: relative;
}

.policy-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.policy-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #c8a97e, #dfca9c);
    margin-bottom: 25px;
}

.policy-text {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.policy-features {
    margin-bottom: 40px;
}

.policy-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.policy-feature:last-child {
    margin-bottom: 0;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background-color: rgba(200, 169, 126, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: #c8a97e;
    font-size: 20px;
    transition: all 0.3s ease;
}

.policy-feature:hover .feature-icon {
    background-color: #c8a97e;
    color: #fff;
    transform: scale(1.1);
}

.feature-text h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.policy-btn {
    padding: 12px 30px;
    border: 2px solid #c8a97e;
    color: #c8a97e;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.policy-btn:hover {
    background-color: #c8a97e;
    color: #fff;
    border-color: #c8a97e;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.policy-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    background-image: url('../img/charter-policy.jpeg');
    background-size: cover;
    background-position: center 30%; /* Crop to show upper portion better */
    background-repeat: no-repeat;
    min-height: 400px;
    transition: all 0.5s ease;
}

.policy-image img {
    opacity: 0; /* Hide the img element, use background instead */
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.policy-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Responsive adjustments for policy image */
@media (max-width: 768px) {
    .policy-image {
        min-height: 300px;
        background-position: center 25%;
    }
}

@media (max-width: 480px) {
    .policy-image {
        min-height: 250px;
        background-position: center 20%;
        border-radius: 8px;
    }
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 120px;
    height: 120px;
    background: rgba(200, 169, 126, 0.9);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.experience-badge .years {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

@media (max-width: 991px) {
    .luxury-deal-section {
        padding: 60px 0 40px;
    }
    
    .deal-content {
        padding: 30px;
    }
    
    .deal-title {
        font-size: 28px;
    }
    
    .deal-details {
        grid-template-columns: 1fr;
    }
    
    .charter-policy {
        padding: 40px;
    }
    
    .policy-image {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .deal-image-wrapper {
        min-height: 250px;
    }
    
    .deal-content {
        padding: 25px;
    }
    
    .deal-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .deal-title {
        font-size: 24px;
    }
    
    .luxury-counter {
        padding: 25px 15px;
    }
    
    .counter-icon {
        font-size: 40px;
    }
    
    .counter-number {
        font-size: 36px;
    }
    
    .essential-info-section {
        padding: 60px 0;
    }
    
    .info-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .charter-policy {
        padding: 30px;
    }
    
    .policy-title {
        font-size: 28px;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
    }
    
    .experience-badge .years {
        font-size: 28px;
    }
    
    .experience-badge .text {
        font-size: 12px;
    }
}

/* Advantages Section - Premium Design */
.advantages-section {
    position: relative;
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    width: 30%;
    height: 1px;
    background: linear-gradient(90deg, rgba(200, 169, 126, 0), rgba(200, 169, 126, 0.5));
    top: 0;
    left: 0;
}

.advantages-section::after {
    content: '';
    position: absolute;
    width: 30%;
    height: 1px;
    background: linear-gradient(90deg, rgba(200, 169, 126, 0.5), rgba(200, 169, 126, 0));
    bottom: 0;
    right: 0;
}

.section-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: 1px;
    position: relative;
}

.heading-separator {
    display: inline-block;
    position: relative;
    width: 120px;
    height: 1px;
    margin-bottom: 50px;
}

.heading-separator::before, 
.heading-separator::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 1px;
    background-color: rgba(200, 169, 126, 0.8);
    top: 50%;
    transform: translateY(-50%);
}

.heading-separator::before {
    left: 0;
}

.heading-separator::after {
    right: 0;
}

.heading-separator span {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(200, 169, 126, 1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.advantages-row {
    position: relative;
}

.advantages-row::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(200, 169, 126, 0), 
        rgba(200, 169, 126, 0.1), 
        rgba(200, 169, 126, 0));
    z-index: 0;
}

.advantage-card {
    position: relative;
    padding: 35px 25px 45px;
    margin-bottom: 30px;
    text-align: center;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
    border: 1px solid rgba(200, 169, 126, 0.05);
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    border-radius: 8px;
    background: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.advantage-card:hover {
    transform: translateY(-10px);
    border-color: rgba(200, 169, 126, 0.1);
}

.advantage-card:hover::before {
    opacity: 1;
}

.advantage-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #c8a97e, #dfca9c);
    transition: width 0.4s ease;
    border-bottom-left-radius: 8px;
}

.advantage-card:hover::after {
    width: 100%;
    border-bottom-right-radius: 8px;
}

.advantage-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
}

.advantage-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(200, 169, 126, 0.05), rgba(200, 169, 126, 0.15));
    transform: scale(1);
    transition: transform 0.4s ease;
}

.advantage-card:hover .advantage-icon-bg {
    transform: scale(1.1);
}

.advantage-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #c8a97e;
    transition: all 0.4s ease;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.15) rotate(5deg);
}

.advantage-content {
    padding: 0 10px;
}

.advantage-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #1a1a1a;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.advantage-card:hover .advantage-title {
    color: #c8a97e;
}

.advantage-separator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 16px auto 20px;
    width: 100%;
    position: relative;
}

.separator-svg {
    filter: drop-shadow(0 2px 3px rgba(200, 169, 126, 0.3));
    transition: all 0.3s ease;
}

.advantage-card:hover .separator-svg {
    transform: scale(1.05);
    filter: drop-shadow(0 3px 5px rgba(200, 169, 126, 0.5));
}

.separator-svg circle {
    animation: pulse 3s infinite ease-in-out;
}

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

.advantage-text {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .advantages-section {
        padding: 80px 0;
    }
    
    .section-heading {
        font-size: 36px;
    }
    
    .advantage-card {
        padding: 30px 20px 40px;
    }
}

@media (max-width: 767px) {
    .advantages-section {
        padding: 60px 0;
    }
    
    .section-heading {
        font-size: 32px;
    }
    
    .advantage-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .advantage-title {
        font-size: 15px;
    }
    
    .advantage-text {
        font-size: 14px;
        max-width: 100%;
    }
}

/* Orient Yachting - Luxury UI Enhancement
-------------------------------------------------- */

:root {
  --luxury-gold: #d4af37;
  --luxury-navy: #002147;
  --luxury-cream: #f8f5e4;
  --luxury-charcoal: #333333;
  --luxury-silver: #e5e4e2;
  --text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  --box-shadow-light: 0 5px 15px rgba(0, 0, 0, 0.05);
  --box-shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.1);
  --transition-smooth: all 0.3s ease-in-out;
}

/* Typography Enhancements */
body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, .b-title-page {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--luxury-navy);
}

.b-title-page {
  text-shadow: var(--text-shadow);
  font-size: 3.2rem;
  margin-bottom: 20px;
}

.section-title-page {
  background-position: center center !important;
  background-size: cover !important;
  position: relative;
  padding: 120px 0 80px;
}

.section-title-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 33, 71, 0.7), rgba(0, 33, 71, 0.4));
  z-index: 1;
}

.area-bg__inner {
  position: relative;
  z-index: 2;
}

/* Enhanced Navigation */


.header-main .navbar-brand {
  padding: 12px 20px;
  margin: 10px 0;
}

.main-menu .nav-link {
  font-weight: 500;
  letter-spacing: 0.6px;
  padding: 30px 18px;
  text-transform: uppercase;
  font-size: 14px;
  transition: var(--transition-smooth);
}

.main-menu .nav-item:hover .nav-link {
  color: var(--luxury-gold);
}

.header-main__btn {
  background-color: var(--luxury-gold);
  border: none;
  font-weight: 600;
  padding: 12px 24px;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
}

.header-main__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.3);
}

/* Yacht Details Enhancement */
.b-goods-f {
  padding: 50px 0;
}

.b-goods-f__slider {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow-medium);
  margin-bottom: 40px;
}

.ui-slider-main {
  border-radius: 10px;
}

.ui-slider-nav img {
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.ui-slider-nav img:hover {
  transform: translateY(-5px);
}

.b-goods-f__title {
  font-size: 28px;
  border-bottom: 2px solid var(--luxury-gold);
  padding-bottom: 10px;
  margin: 30px 0;
  color: var(--luxury-navy);
}

.data-list-descriptions {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  height: 100%;
}

.dd-item {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.dd-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.dd-item dt {
  font-weight: 600;
  color: #002147;
  margin-bottom: 5px;
  font-size: 14px;
}

.dd-item dd {
  margin-bottom: 0;
  color: #333;
  font-size: 16px;
}

/* Tabs Enhancement */
.nav-tabs {
  border-bottom: 2px solid var(--luxury-gold);
  margin-bottom: 25px;
}

.nav-tabs .nav-link {
  font-weight: 600;
  color: var(--luxury-charcoal);
  border: none;
  padding: 12px 20px;
  border-radius: 6px 6px 0 0;
  transition: var(--transition-smooth);
}

.nav-tabs .nav-link.active, 
.nav-tabs .nav-link:hover {
  background-color: var(--luxury-gold);
  color: white;
  border: none;
}

.tab-content {
  padding: 20px;
  background: white;
  border-radius: 0 0 8px 8px;
  box-shadow: var(--box-shadow-light);
}

/* Sidebar Enhancements */
.l-sidebar {
  padding-left: 30px;
}

.b-goods-f-price {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow-medium);
  margin-bottom: 30px;
}

.b-goods-f-price__header {
  background-color: var(--luxury-gold) !important;
  padding: 20px;
  color: white;
  font-weight: 600;
  text-align: center;
  font-size: 1.2rem;
}

.b-goods-f-price__main {
  font-size: 2rem;
  font-weight: 700;
}

.b-goods__wrap-bnrs {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--box-shadow-light);
  margin-bottom: 30px;
}

.b-seller {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow-medium);
  margin-bottom: 30px;
}

.b-seller__header {
  background-color: var(--luxury-navy) !important;
  padding: 20px;
}

.b-seller__name {
  font-size: 1.3rem;
  font-weight: 600;
}

.b-seller__main {
  padding: 20px;
  background-color: white;
}

.widget-2 {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow-medium);
}

.widget-title-2 {
  background-color: var(--luxury-navy);
  color: white;
  padding: 15px 20px;
  margin: 0;
  font-size: 1.2rem;
}

.widget-content {
  padding: 20px;
  background-color: white;
}

.form-control {
  padding: 12px 15px;
  border-radius: 6px;
  border: 1px solid #e1e1e1;
}

.btn-secondary {
  background-color: var(--luxury-gold);
  border: none;
  padding: 12px 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background-color: var(--luxury-navy);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-medium);
}

/* Footer Enhancement */
.footer {
  background-color: var(--luxury-navy);
  color: #fff;
  padding-top: 70px;
}

.footer-section__title {
  color: var(--luxury-gold);
  margin-bottom: 25px;
  font-size: 1.4rem;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-smooth);
  padding: 6px 0;
  display: inline-block;
}

.footer-list a:hover {
  color: var(--luxury-gold);
  text-decoration: none;
  transform: translateX(5px);
}

.footer-contacts__item {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contacts__item i {
  color: var(--luxury-gold);
  margin-right: 10px;
}

.footer-soc__link {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: white;
  margin-right: 10px;
  transition: var(--transition-smooth);
}

.footer-soc__link:hover {
  background-color: var(--luxury-gold);
  transform: translateY(-5px);
  color: white;
}

.btn-white {
  background-color: white;
  color: var(--luxury-navy);
  border: none;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 4px;
  transition: var(--transition-smooth);
  margin-top: 20px;
  display: inline-block;
}

.btn-white:hover {
  background-color: var(--luxury-gold);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-medium);
  text-decoration: none;
}

.footer-copyright {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  margin-top: 50px;
  text-align: center;
}

/* Responsive Enhancements */
@media (max-width: 991px) {
  .l-sidebar {
    padding-left: 0;
    margin-top: 40px;
  }
  
  .b-title-page {
    font-size: 2.5rem;
  }
  
  .section-title-page {
    padding: 80px 0 50px;
  }
}

@media (max-width: 767px) {
  .b-title-page {
    font-size: 2rem;
  }
  
  .section-title-page {
    padding: 60px 0 40px;
  }
  
  .data-list-descriptions {
    margin-bottom: 15px;
  }
  
  .b-goods-f__title {
    font-size: 22px;
    margin: 20px 0;
  }
}

/* Animation Enhancements */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

/* Custom Preloader Enhancement */
#yacht-preloader {
  background-color: var(--luxury-navy);
}

.loading-text span {
  color: var(--luxury-gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.loading-progress {
  background-color: var(--luxury-gold);
}

/* Slick Slider Navigation Enhancement */
.slick-arrow {
  background-color: var(--luxury-gold);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  transition: var(--transition-smooth);
  z-index: 10;
}

.slick-arrow:hover, 
.slick-arrow:focus {
  background-color: var(--luxury-navy);
}

.slick-arrow:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
}

.slick-next {
  right: 20px;
}

.slick-prev {
  left: 20px;
}

/* Luxury Yacht Slider Styles */
.luxury-yacht-slider {
    margin-bottom: 40px;
}

.yacht-slider-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.yacht-slider-main {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.yacht-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 1;
}

.yacht-slide.active {
    opacity: 1;
    z-index: 2;
}

.yacht-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 6s ease;
}

.yacht-slide.active .yacht-slide-img {
    transform: scale(1.05);
}

.yacht-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.yacht-slide-count {
    color: white;
    font-size: 16px;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 500;
    letter-spacing: 1px;
}

.yacht-slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.yacht-slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    color: #002147;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0.8;
}

.yacht-slider-arrow:hover {
    background-color: #d4af37;
    color: white;
    opacity: 1;
    transform: scale(1.1);
}

.yacht-slider-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.yacht-thumb {
    width: calc(20% - 8px);
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.yacht-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.yacht-thumb:hover {
    opacity: 0.9;
    transform: translateY(-3px);
}

.yacht-thumb.active {
    opacity: 1;
    transform: translateY(-5px);
}

.yacht-thumb.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #d4af37;
}

.yacht-thumb.active img {
    transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .yacht-slider-main {
        height: 400px;
    }
    
    .yacht-thumb {
        width: calc(25% - 8px);
        height: 70px;
    }
}

@media (max-width: 767px) {
    .yacht-slider-main {
        height: 350px;
    }
    
    .yacht-slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .yacht-thumb {
        width: calc(33.333% - 7px);
        height: 60px;
    }
}

@media (max-width: 575px) {
    .yacht-slider-main {
        height: 300px;
    }
    
    .yacht-slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .yacht-thumb {
        width: calc(50% - 5px);
        height: 70px;
    }
}

/* Yacht Detail Page Slider */
.all {
    width: 100%;
    margin: 0 auto;
}

.slider {
    position: relative;
    margin-bottom: 20px;
}

.slider .item-box {
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.slider-two .item {
    height: 80px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    opacity: 0.7;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-two .item.active {
    opacity: 1;
    border: 2px solid #c9a45e;
}

.slider-two .item:hover {
    opacity: 1;
}

.left, .right, .left-t, .right-t {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.left, .left-t {
    left: 15px;
}

.right, .right-t {
    right: 15px;
}

.left:hover, .right:hover, .left-t:hover, .right-t:hover {
    background-color: #c9a45e;
    color: white;
}

/* Responsive fixes */
@media (max-width: 768px) {
    .slider .item-box {
        height: 350px;
    }
    
    .slider-two .item {
        height: 60px;
    }
}

@media (max-width: 576px) {
    .slider .item-box {
        height: 250px;
    }
    
    .slider-two .item {
        height: 50px;
    }
}

/* Uniform height for specification columns */
@media (min-width: 768px) {
    .row.yacht-specs {
        display: flex;
        flex-wrap: wrap;
    }
    
    .row.yacht-specs > [class*='col-'] {
        display: flex;
        flex-direction: column;
    }
    
    .row.yacht-specs .data-list-descriptions {
        flex: 1;
    }
}

/* No results SVG embedded as base64 to avoid file dependency */
.no-results svg, 
.no-results img[src$="no-results.svg"] {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNTAgMTUwIiBmaWxsPSJub25lIj48cGF0aCBkPSJNMTI1IDEwYzMzLjEgMCA2MCAyNi45IDYwIDYwcy0yNi45IDYwLTYwIDYwLTYwLTI2LjktNjAtNjAgMjYuOS02MCA2MC02MHptMCA5MGMyOC4yIDAgNTEtMjIuOCA1MS01MXMtMjIuOC01MS01MS01MS01MSAyMi44LTUxIDUxIDIyLjggNTEgNTEgNTF6IiBmaWxsPSIjZDVkZGU1Ii8+PHBhdGggZD0iTTgwIDYwYzAtNC40IDMuNi04IDgtOGg3NGM0LjQgMCA4IDMuNiA4IDhzLTMuNiA4LTggOEg4OGMtNC40IDAtOC0zLjYtOC04em0wIDMwYzAtNC40IDMuNi04IDgtOGg3NGM0LjQgMCA4IDMuNiA4IDhzLTMuNiA4LTggOEg4OGMtNC40IDAtOC0zLjYtOC04eiIgZmlsbD0iI2Q1ZGRlNSIvPjxwYXRoIGQ9Ik0xOTAgMTI1YzAgMi4yLTAuOSA0LjQtMi4zIDUuOWwtMi45IDIuOS0yLjkgMi45Yy0xLjUgMS41LTMuNyAyLjMtNS45IDIuM3MtNC40LTAuOS01LjktMi4zbC0xOS4zLTE5LjNjLTExLjEgOS0yNS4zIDE0LjYtNDAuOCAxNC42LTM1LjMgMC02NC0yOC43LTY0LTY0czI4LjctNjQgNjQtNjQgNjQgMjguNyA2NCA2NGMwIDE1LjUtNS41IDI5LjctMTQuNiA0MC44bDE5LjMgMTkuM2MxLjUgMS41IDIuMyAzLjcgMi4zIDUuOXoiIHN0cm9rZT0iI2Q1ZGRlNSIgc3Ryb2tlLXdpZHRoPSI2Ii8+PC9zdmc+");
  width: 150px;
  height: 150px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
}

/* Yacht placeholder styling for missing yacht images */
.yacht-card-image img[src$="yacht-placeholder.jpg"] {
  background: linear-gradient(45deg, #f1f5f9, #e2e8f0);
  position: relative;
}

.yacht-card-image img[src$="yacht-placeholder.jpg"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNTYgMjU2IiBmaWxsPSJub25lIj48cGF0aCBkPSJNMjE2IDQwSDQwdjE2MGgxNzZWNDB6IiBzdHJva2U9IiM5NGEzYjgiIHN0cm9rZS13aWR0aD0iOCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PHBhdGggZD0iTTIxNiAxNjBsLTQwLTQwLTQwIDQwLTY0LTY0LTMyIDMyIiBzdHJva2U9IiM5NGEzYjgiIHN0cm9rZS13aWR0aD0iOCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PHBhdGggZD0iTTcyIDk2YTE2IDE2IDAgMTAwLTMyIDE2IDE2IDAgMDAwIDMyeiIgc3Ryb2tlPSIjOTRhM2I4IiBzdHJva2Utd2lkdGg9IjgiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPjxwYXRoIGQ9Ik0xNzYgNjBINzkuOXYxMHY0MGw0MCAyMCIgc3Ryb2tlPSIjOTRhM2I4IiBzdHJva2Utd2lkdGg9IjQiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPjwvc3ZnPg==");
  background-size: 60px 60px;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  opacity: 0.6;
}

/* Yacht hero section background fallback styling */
.yacht-listing-hero[style*="yacht-hero-bg.jpg"] {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
              linear-gradient(to right, #0c4da2, #2073d4) !important;
  position: relative;
  overflow: hidden;
}

.yacht-listing-hero[style*="yacht-hero-bg.jpg"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMjAwIDYwMCIgZmlsbD0ibm9uZSI+PHBhdGggZD0iTTYwMCAwYzMwMCAwIDYwMCAzMDAgNjAwIDMwMHMtMzAwIDMwMC02MDAgMzAwUzAgMzAwIDAgMzAwIDMwMCAwIDYwMCAweiIgZmlsbD0iIzEwODFmZiIgZmlsbC1vcGFjaXR5PSIwLjEiLz48cGF0aCBkPSJNNjU1IDI1MHMxNTAtNzUgMjI1LTc1IDEyNSA1MCAxMjUgNTAtMTAwIDEwMC0xNzUgMTI1LTE3NSA1MC0xNzUgNTB2LTE1MHoiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iMC4xIi8+PHBhdGggZD0iTTYwMCAzMzVsMjAwLTEwMCA1MCAxMDAtMTUwIDEwMC0xMDAgNTAtNzUgNDV2LTc1bDc1LTEyMHoiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iMC4yIi8+PHBhdGggZD0iTTc3NSAyMzVsMTUwIDUwczI1IDEwIDI1IDUwLTI1IDUwLTI1IDUwbC0xNTAgNzUtMTAwLTc1di0xMDBsMTAwLTUweiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIwLjEiLz48cGF0aCBkPSJNNjAwIDQzNWwtNzUgNDAgMTAwIDI1IDUwLTY1LTc1IDB6IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMiIvPjwvc3ZnPg==");
  background-size: 1200px 600px;
  background-position: center;
  opacity: 0.15;
  mix-blend-mode: overlay;
} 

/* Reduce opacity for the exclusive yacht collection section */
.section-default.section-goods__inner.bg-dark {
    opacity: 0.9;
}

.section-default.section-goods__inner.bg-dark::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/yacht-list-bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.6;
    pointer-events: none;
    z-index: 1;
}

.section-default.section-goods__inner.bg-dark::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(10, 31, 53, 0.8) 0%, 
        rgba(0, 0, 0, 0.6) 50%, 
        rgba(10, 31, 53, 0.8) 100%);
    pointer-events: none;
    z-index: 2;
}

.section-default.section-goods__inner.bg-dark > * {
    position: relative;
    z-index: 3;
}

/* Enhanced text readability for yacht collection section */
.section-default.section-goods__inner.bg-dark .luxury-section-heading.light-theme .luxury-subheading {
    color: #c8a97e !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8) !important;
    font-weight: 600 !important;
    letter-spacing: 4px !important;
}

.section-default.section-goods__inner.bg-dark .luxury-section-heading.light-theme .luxury-heading {
    color: #ffffff !important;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.9) !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
}

.section-default.section-goods__inner.bg-dark .luxury-section-heading.light-theme .luxury-description {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7) !important;
    font-weight: 400 !important;
}

.section-default.section-goods__inner.bg-dark .luxury-section-heading.light-theme .luxury-heading-decoration .diamond {
    background-color: #c8a97e !important;
    box-shadow: 0 0 20px rgba(200, 169, 126, 0.6) !important;
}

.section-default.section-goods__inner.bg-dark .luxury-section-heading.light-theme .luxury-heading-decoration .line {
    background: linear-gradient(90deg, rgba(200, 169, 126, 0.4), rgba(200, 169, 126, 0.9)) !important;
    box-shadow: 0 2px 8px rgba(200, 169, 126, 0.3) !important;
}

.section-default.section-goods__inner.bg-dark .luxury-section-heading.light-theme .luxury-heading-decoration .line:last-child {
    background: linear-gradient(90deg, rgba(200, 169, 126, 0.9), rgba(200, 169, 126, 0.4)) !important;
}

/* Mobile responsive for section-goods background */
@media (max-width: 768px) {
    .section-default.section-goods__inner.bg-dark::before {
        background-attachment: scroll; /* Fixed backgrounds can cause issues on mobile */
        background-size: cover;
        background-position: center top;
    }
    
    .section-default.section-goods__inner.bg-dark::after {
        background: linear-gradient(135deg, 
            rgba(10, 31, 53, 0.85) 0%, 
            rgba(0, 0, 0, 0.7) 50%, 
            rgba(10, 31, 53, 0.85) 100%);
    }
    
    /* Enhanced mobile text styling */
    .section-default.section-goods__inner.bg-dark .luxury-section-heading.light-theme .luxury-subheading {
        font-size: 12px !important;
        letter-spacing: 3px !important;
        margin-bottom: 15px !important;
    }
    
    .section-default.section-goods__inner.bg-dark .luxury-section-heading.light-theme .luxury-heading {
        font-size: 36px !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }
    
    .section-default.section-goods__inner.bg-dark .luxury-section-heading.light-theme .luxury-description {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }
    
    .section-default.section-goods__inner.bg-dark .luxury-section-heading.light-theme {
        margin-bottom: 30px !important;
    }
}

@media (max-width: 480px) {
    .section-default.section-goods__inner.bg-dark::before {
        background-size: cover;
        background-position: center center;
    }
    
    .section-default.section-goods__inner.bg-dark::after {
        background: linear-gradient(135deg, 
            rgba(10, 31, 53, 0.9) 0%, 
            rgba(0, 0, 0, 0.8) 50%, 
            rgba(10, 31, 53, 0.9) 100%);
    }
    
    /* Ultra-mobile text styling */
    .section-default.section-goods__inner.bg-dark .luxury-section-heading.light-theme .luxury-subheading {
        font-size: 11px !important;
        letter-spacing: 2px !important;
    }
    
    .section-default.section-goods__inner.bg-dark .luxury-section-heading.light-theme .luxury-heading {
        font-size: 28px !important;
        line-height: 1.1 !important;
    }
    
         .section-default.section-goods__inner.bg-dark .luxury-section-heading.light-theme .luxury-description {
         font-size: 14px !important;
         line-height: 1.5 !important;
     }
}

/* Floating Contact Button - Multi-Action FAB */
.contact-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    transform: translateY(0) !important;
    transition: none !important;
}

.fab-container {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

/* Ana İletişim Butonu */
.fab-main {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
    font-size: 24px;
    z-index: 10001;
    line-height: 1;
}

.fab-main i {
    display: block;
    text-align: center;
    line-height: 1;
    margin: 0;
    padding: 0;
    transform: translateZ(0); /* Hardware acceleration */
}

.fab-main:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.fab-main.active {
    transform: rotate(45deg);
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.fab-main.active i:before {
    content: "\f00d"; /* FontAwesome times/close icon */
}

/* Tooltip Ana Buton */
.fab-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.fab-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.8);
}

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

/* Alt Aksiyon Butonları Container */
.fab-actions {
    position: absolute;
    bottom: 70px;
    display: flex;
    flex-direction: column-reverse;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
}

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

/* Alt Aksiyon Butonları */
.fab-action {
    position: relative;
    display: flex;
    align-items: center;
    animation: slideInUp 0.3s ease-out;
}

.fab-action:nth-child(1) { animation-delay: 0.1s; }
.fab-action:nth-child(2) { animation-delay: 0.2s; }
.fab-action:nth-child(3) { animation-delay: 0.3s; }

.fab-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    line-height: 1;
}

.fab-link i {
    display: block;
    text-align: center;
    line-height: 1;
    margin: 0;
    padding: 0;
    transform: translateZ(0); /* Hardware acceleration */
}

/* WhatsApp Buton */
#whatsapp-action .fab-link {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

#whatsapp-action .fab-link:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Telefon Buton */
#phone-action .fab-link {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

#phone-action .fab-link:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

/* Mail Buton */
#mail-action .fab-link {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

#mail-action .fab-link:hover {
    background: linear-gradient(135deg, #c82333 0%, #a71e2a 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

/* Label'lar */
.fab-label {
    position: absolute;
    right: 60px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.fab-label::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.8);
}

.fab-action:hover .fab-label {
    opacity: 1;
    visibility: visible;
}

/* Overlay */
.fab-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998;
}

.fab-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Animasyonlar */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Mobile - Fixed icon alignment */
@media (max-width: 768px) {
    .contact-floating-btn {
        bottom: 20px;
        right: 20px;
    }
    
    .fab-main {
        width: 55px;
        height: 55px;
        font-size: 22px;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .fab-actions {
        bottom: 65px; /* Ana butonun üstünde düzgün konumlandır */
    }
    
    .fab-action {
        width: 48px;
        height: 48px;
        margin-bottom: 10px;
    }
    
    .fab-link {
        width: 48px !important;
        height: 48px !important;
        font-size: 18px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        line-height: 1 !important;
    }
    
    .fab-link i {
        display: block !important;
        text-align: center !important;
        line-height: 1 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .fab-tooltip,
    .fab-label {
        display: none;
    }
}

/* Pulse animasyonu */
.fab-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: inherit;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile FAB Fix - Ensure proper touch handling */
@media (max-width: 768px) {
    .contact-floating-btn {
        pointer-events: auto !important;
        -webkit-user-select: none !important;
        user-select: none !important;
        -webkit-touch-callout: none !important;
        touch-action: manipulation !important;
    }
    
    .fab-main {
        pointer-events: auto !important;
        -webkit-user-select: none !important;
        user-select: none !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: transparent !important;
        cursor: pointer !important;
    }
    
    .fab-action {
        pointer-events: auto !important;
        -webkit-user-select: none !important;
        user-select: none !important;
        touch-action: manipulation !important;
    }
    
    .fab-link {
        pointer-events: auto !important;
        -webkit-user-select: none !important;
        user-select: none !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: transparent !important;
        cursor: pointer !important;
        /* Size controlled by responsive rules above */
    }
    
    /* Additional mobile optimizations */
    .fab-main.touching {
        transform: scale(0.95) !important;
        transition: transform 0.1s ease !important;
    }
    
    .fab-action:active,
    .fab-link:active {
        transform: scale(0.9) !important;
        transition: transform 0.1s ease !important;
    }
}

/* Ultra-mobile optimization for very small screens */
@media (max-width: 480px) {
    .contact-floating-btn {
        bottom: 15px !important;
        right: 15px !important;
    }
    
    .fab-main {
        width: 52px !important;
        height: 52px !important;
        font-size: 20px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .fab-actions {
        bottom: 60px !important; /* Ana butonun üstünde konumlandır */
        gap: 8px !important;
    }
    
    .fab-action {
        width: 44px !important;
        height: 44px !important;
        margin-bottom: 6px !important;
    }
    
    .fab-link {
        width: 44px !important;
        height: 44px !important;
        font-size: 16px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        line-height: 1 !important;
    }
    
    .fab-link i {
        display: block !important;
        text-align: center !important;
        line-height: 1 !important;
        font-size: 16px !important;
        margin: 0 !important;
        padding: 0 !important;
        transform: translateZ(0) !important; /* Hardware acceleration for smoother icons */
    }
}
