/* ===== HERO SECTION STYLES ===== */
.thcm-hero-section {
    position: relative;
    width: 100%;
    padding-top: 20px;
    margin: 0 0 50px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.thcm-col.thcm-col-slider {
    display: block;
}

span.thcm-banner-subtitle {
    display: none;
}

.thcm-container {
    margin: 0 auto;
    padding: 0 7%;
    display: flex;
	height: 450px;
    gap: 30px;
    align-items: stretch;
}

/* Columns */
.thcm-col {
    flex: 1;
    min-width: 0;
}

.thcm-col-banners {
    display: flex;
    flex-direction: column;
    gap: 25px;
	flex: 0.8;
}

/* Banner Styles */
.thcm-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.thcm-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.thcm-banner-main {
    height: 59%;
}

.thcm-banner-small {
    flex: 1;
}

.thcm-banners-grid {
    display: flex;
    gap: 25px;
	height: 41%;
}

.thcm-banner-content {
    position: absolute;
    bottom: 30px;
    right: 30px;
    left: 30px;
    color: white;
    z-index: 2;
    text-align: right;
}

.thcm-banner-main .thcm-banner-content {
    bottom: 40px;
    right: 40px;
    left: auto;
    max-width: 70%;
}

.thcm-banner-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.thcm-banner-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.thcm-banner-small .thcm-banner-title {
    font-size: 20px;
}

/* Button Styles */
.thcm-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    background: none;
}

.thcm-btn-primary {
    background: #1c61e7;
    color: white;
    box-shadow: 0 4px 15px rgba(28, 97, 231, 0.3);
}

.thcm-btn-primary:hover {
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(28, 97, 231, 0.4);
}

.thcm-btn-outline {
    background: transparent;
    border: 2px solid;
    color: white;
    padding: 8px 20px;
}

.thcm-btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px);
}

.thcm-btn-slide {
    background: white;
    color: #333;
    margin-top: 15px;
}

.thcm-btn-slide:hover {
    transform: translateX(-5px);
    background: #1c61e7;
    color: white;
}

.thcm-btn-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.thcm-btn:hover .thcm-btn-icon {
    transform: translateX(5px);
}

/* Slider Styles */
.thcm-slider {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.thcm-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

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

.thcm-slide-content {
    width: 100%;
    height: 100%;
    display: flex;
    padding: 50px;
    color: #ffffff;
    animation: slideUp 0.8s ease-out;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.thcm-slide-title {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 15px 0;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	background-color: #00000040;
}

.thcm-slide-description {
    font-size: 18px;
    margin: 0 0 20px 0;
    opacity: 0.9;
    line-height: 1.6;
	background-color: #00000040;
}

/* Slider Controls */
.thcm-slider-prev,
.thcm-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.thcm-slider-prev:hover,
.thcm-slider-next:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.thcm-slider-prev {
    left: 20px;
}

.thcm-slider-next {
    right: 20px;
}

.thcm-slider-prev svg,
.thcm-slider-next svg {
    width: 24px;
    height: 24px;
}

.thcm-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.thcm-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thcm-dot.active {
    background: white;
    width: 30px;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    	.thcm-container {
			padding: 0 2%;
		}
}	


@media (max-width: 1200px) {
    .thcm-slide-title {
        font-size: 36px;
    }
    
    .thcm-slide-description {
        font-size: 16px;
    }
    
    .thcm-banner-title {
        font-size: 24px;
    }
    
    .thcm-banner-main .thcm-banner-content {
        max-width: 80%;
    }
}

@media (max-width: 992px) {
	
	.thcm-container {
        height: auto !important;
	}	
    .thcm-col.thcm-col-slider {
        display: none !important;
    }
    .thcm-container {
        flex-direction: column;
    }
    
    .thcm-slider {
        min-height: 500px;
    }
    
    .thcm-slide-content {
        max-width: 80%;
        padding: 40px;
    }
    
    .thcm-slide-title {
        font-size: 32px;
    }
    
    .thcm-banner-main {
        min-height: 280px;
    }
    
    .thcm-banner-small {
        min-height: 220px;
    }
}

@media (max-width: 768px) {
    .thcm-container {
        padding: 0 15px;
        gap: 20px;
    }
    
    .thcm-slider {
        min-height: 400px;
    }
    
    .thcm-slide-content {
        max-width: 90%;
        padding: 30px;
    }
    
    .thcm-slide-title {
        font-size: 24px;
    }
    
    .thcm-slide-description {
        font-size: 14px;
    }
    
    .thcm-banners-grid {
        flex-direction: column;
    }
    
    .thcm-banner-main {
        min-height: 240px;
    }
    
    .thcm-banner-small {
        min-height: 200px;
    }
    
    .thcm-banner-main .thcm-banner-content {
        max-width: 100%;
        bottom: 25px;
        right: 25px;
        left: 25px;
    }
    
    .thcm-banner-title {
        font-size: 20px;
    }
    
    .thcm-banner-subtitle {
        font-size: 12px;
        padding: 4px 12px;
    }
    
    .thcm-btn {
        padding: 8px 20px;
        font-size: 12px;
    }
    
    .thcm-slider-prev,
    .thcm-slider-next {
        width: 36px;
        height: 36px;
    }
    
    .thcm-slider-prev svg,
    .thcm-slider-next svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .thcm-slider {
        min-height: 320px;
    }
    
    .thcm-slide-title {
        font-size: 20px;
    }
    
    .thcm-slide-description {
        font-size: 12px;
    }
    
    .thcm-banner-main {
        min-height: 200px;
    }
    
    .thcm-banner-small {
        min-height: 180px;
    }
    
    .thcm-banner-title {
        font-size: 18px;
    }
}