.room-card-three__content__btn .solinom-btn {
    font-size: 1rem;
    padding: 10px 24px;
}

@media (max-width: 600px) {
    .room-card-three__content__btn .solinom-btn {
        font-size: 0.85rem;
        padding: 7px 16px;
        min-width: 90px;
        border-radius: 6px;
    }
}

/* Apartment Carousel Image Fix - Taller Images with Blue Gradient Content */
.tours-one__carousel .room-card-three {
    height: auto !important;
    /* Let content determine height */
    min-height: auto !important;
    /* Remove fixed height */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tours-one__carousel .room-card-three__thumb {
    position: relative;
    overflow: hidden !important;
    /* Force hidden overflow */
    width: 100%;
    /* Full width */
    aspect-ratio: 3/2;
    /* Taller ratio - 3:2 instead of 4:3 */
    background-color: #f5f5f5;
    /* Fallback background */
}

.tours-one__carousel .room-card-three__thumb img {
    width: 100%;
    height: 100% !important;
    /* Force full height */
    object-fit: cover !important;
    /* Force cover mode */
    object-position: center center !important;
    /* Center positioning */
    transition: transform 0.3s ease;
    display: block;
    /* Remove any inline spacing */
}

.tours-one__carousel .room-card-three__thumb:hover img {
    transform: scale(1.05);
}

/* Dark Text Color Gradient Background for Content Area */
.tours-one__carousel .room-card-three__content {
    background: linear-gradient(135deg, #101D22 0%, #171730 30%, #27274c 70%, #171730 100%) !important;
    color: white !important;
    border-radius: 0 0 8px 8px;
    position: relative;
    z-index: 2;
}

/* Style text elements with white color */
.tours-one__carousel .room-card-three__content__title a,
.tours-one__carousel .room-card-three__content__text {
    color: white !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.tours-one__carousel .room-card-three__content__title a:hover {
    color: #CBA36B !important;
    /* Primary color hover effect */
    transition: color 0.3s ease;
}

/* Stars styling for contrast */
.tours-one__carousel .room-card-three__content__star i {
    color: #CBA36B !important;
    /* Primary color stars on dark background */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Enhanced Image Protection - Prevent Download and Right Click */
img,
.room-card-three__thumb,
.room-card-three__thumb *,
.benefit-one__item__thumb,
.benefit-one__item__thumb *,
.about-one__thumb,
.about-one__thumb *,
.feature-two__item__bg {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-user-drag: none !important;
    -moz-user-drag: none !important;
    -o-user-drag: none !important;
    -webkit-touch-callout: none !important;
    -khtml-user-select: none !important;
    -khtml-user-drag: none !important;
    pointer-events: none !important;
}

/* Re-enable pointer events for functional elements but keep protection */
.room-card-three__thumb__popup,
.room-card-three__thumb__popup *,
.video-popup,
.room-list-card-popup,
.solinom-btn {
    pointer-events: auto !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    user-select: none !important;
}

/* Disable image saving and context menu */
.room-card-three__thumb img,
.benefit-one__item__thumb img,
.benefit-one__feature__thumb img,
.about-one__thumb img,
.feature-two__item__bg {
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    -khtml-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-user-drag: none !important;
    -khtml-user-drag: none !important;
    -moz-user-drag: none !important;
    -o-user-drag: none !important;
    pointer-events: none !important;
}

/* Disable context menu on images */
.image-protected {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Watermark overlay for protected images */
.room-card-three__thumb::after,
.benefit-one__item__thumb::after,
.about-one__thumb__item::after {
    content: "© Garlon Residence";
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 2px 8px;
    font-size: 10px;
    border-radius: 3px;
    pointer-events: none;
    z-index: 10;
}

/* Print protection */
@media print {
    img {
        display: none !important;
    }

    .room-card-three__thumb,
    .benefit-one__item__thumb,
    .about-one__thumb {
        background: #f5f5f5 !important;
    }
}

/* Ensure consistent card heights */
.tours-one__carousel .room-card-three {
    min-height: 580px !important;
    /* Force minimum height for entire card */
    height: 580px !important;
    /* Fixed height for all cards */
}

.tours-one__carousel .room-card-three__inner {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

.tours-one__carousel .room-card-three__content {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    padding: 25px !important;
    /* Increased from 20px to 25px */
    height: auto;
    /* Fixed content height */
}

/* Consistent text heights */
.tours-one__carousel .room-card-three__content__title {
    height: 60px !important;
    /* Fixed height for title */
    overflow: hidden !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    margin-bottom: 15px !important;
}

.tours-one__carousel .room-card-three__content__text {
    height: auto;
    /* Fixed height for description */
    /* Fixed height for description */
    overflow: hidden !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    line-height: 1.4 !important;
    margin-bottom: 20px !important;
}

/* Button positioning */
.tours-one__carousel .room-card-three__content__btn {
    margin-top: auto;
}

/* Hero Section Responsive Fix */
.hero-section {
    position: relative;
    width: 100%;
    height: 38vh;
    min-height: 400px;
    overflow: hidden;

}

.hero-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    overflow: hidden;
    border-radius: 0 0 10px 10px;
}

.hero-carousel {
    width: 100%;
    height: 100%;
}

.hero-carousel .owl-stage-outer,
.hero-carousel .owl-stage,
.hero-carousel .owl-item {
    height: 100%;
}

.hero-slide {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-desktop,
.hero-mobile {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-desktop img,
.hero-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Desktop görsel göster, mobile gizle */
.hero-desktop {
    display: block;
}

.hero-mobile {
    display: none;
}

/* Mobile görsel göster, desktop gizle */
@media (max-width: 767px) {
    .hero-section {
        height: 60vh;
        min-height: 400px;
    }

    .hero-desktop {
        display: none;
    }

    .hero-mobile {
        display: block;
    }
}

/* Owl Carousel Dots Styling */
.hero-carousel .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-carousel .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-carousel .owl-dots .owl-dot.active {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

.hero-carousel .owl-dots .owl-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Mobile dots position */
@media (max-width: 767px) {
    .hero-carousel .owl-dots {
        bottom: 20px;
    }

    .hero-carousel .owl-dots .owl-dot {
        width: 10px;
        height: 10px;
    }
}

/* Mobile Typography Fixes */
@media (max-width: 768px) {

    /* Section titles - reduce size on mobile */
    .sec-title__title {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }

    .sec-title__tagline {
        font-size: 0.9rem !important;
    }

    /* Page headers - reduce size */
    .page-header__title {
        font-size: 2rem !important;
    }

    /* About section feature boxes - stack vertically */
    .about-one__feature {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .about-one__feature__item {
        margin-right: 0 !important;
        width: 100% !important;
    }

    /* Feature titles in about section */
    .about-one__feature__title {
        font-size: 1rem !important;
    }
}

@media (max-width: 576px) {

    /* Even smaller on very small screens */
    .sec-title__title {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
    }

    .sec-title__tagline {
        font-size: 0.8rem !important;
    }

    .page-header__title {
        font-size: 1.75rem !important;
    }

    /* About section mobile spacing */
    .about-one__content {
        margin-top: 2rem !important;
    }
}