.kanos-home-condotel {
    width: 100%;
    padding: 60px 20px;
}

.k-hcdt-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.k-hcdt-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.k-hcdt-left-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.k-hcdt-main-image {
    width: 100%;
    aspect-ratio: 11 / 9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Overlay Styles */
.k-hcdt-image-overlay-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 2;
    pointer-events: none;
}

.k-hcdt-image-overlay-inner {
    backdrop-filter: blur(15px);
    background-color: rgba(66, 66, 66, 0.27);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: auto;
}

.k-hcdt-image-overlay-inner h3 {
    font-size: 20px;
    line-height: 1.2;
    color: #fff;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-transform: uppercase;
}

.k-hcdt-image-overlay-inner p {
    font-size: 16px;
    line-height: 1.4;
    color: #fff;
    margin: 0;
}

.k-hcdt-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.k-hcdt-video-row {
    display: flex;
    gap: 15px;
    align-items: stretch;
}

.k-hcdt-video-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    height: auto;
}

.k-hcdt-video-landscape {
    flex: 1.45;
    aspect-ratio: 16 / 9;
}

.k-hcdt-video-portrait {
    flex: 0.85;
    aspect-ratio: 3 / 4;
}

.k-hcdt-video-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.k-hcdt-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    pointer-events: none;
}

.k-hcdt-play-icon svg {
    width: 100%;
    height: 100%;
}

.k-hcdt-right-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.k-hcdt-heading h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: #ffffff;
}

.k-hcdt-highlight {
    display: block;
    background: linear-gradient(to right, #fff 0%, #55a630 50%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 3s linear infinite reverse;
    animation-play-state: paused;
}

.k-hcdt-highlight.is-visible {
    animation-play-state: running;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}



.k-hcdt-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.k-hcdt-checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
}

.k-hcdt-check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #55a630;
}

.k-hcdt-checklist-item span {
    font-size: 16px;
    font-weight: 600;
}

.k-hcdt-description {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.k-hcdt-description p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
}

.k-hcdt-cta-button {
    margin-top: 8px;
}

.k-hcdt-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 10px 10px 24px;
    background: #55a630;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(85, 166, 48, 0.3);
}

.k-hcdt-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(85, 166, 48, 0.4);
    background: #468c26;
    color: #ffffff;
}

.k-hcdt-arrow {
    width: 32px;
    height: 32px;
    background-color: #ffffff;
    border-radius: 50%;
    color: #55a630;
    padding: 6px;
    transition: transform 0.3s ease;
}

.k-hcdt-button:hover .k-hcdt-arrow {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .k-hcdt-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .k-hcdt-heading h2 {
        font-size: 36px;
    }

    .k-hcdt-main-image {
        aspect-ratio: 3 / 4;
    }
}

@media (max-width: 480px) {
    .k-hcdt-heading h2 {
        font-size: 28px;
    }

    .k-hcdt-video-row {
        grid-template-columns: 1fr;
    }

    .k-hcdt-video-portrait {
        aspect-ratio: 16 / 9;
    }
}