/* ================= HERO ================= */

.kt-hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.kt-slider {
    position: absolute;
    inset: 0;
}

.kt-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.kt-slide.active {
    opacity: 1;
}

.kt-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.kt-content {
    position: relative;
    z-index: 2;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
}

.kt-content h1 {
    font-size: 3rem;
}

/* ================= SECTION ================= */

.kt-section {
    padding: 100px 20px;
}

.kt-container {
    max-width: 1100px;
    margin: auto;
}

.kt-text {
    margin-top: 20px;
    line-height: 1.8;
    opacity: 0.9;
}

/* ================= FEATURES ================= */

.kt-features {
    padding: 100px 20px;
}

.kt-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 40px;
}

.kt-card {
    padding: 40px;
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(212,175,55,0.3);
    transition: 0.4s ease;
}

.kt-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 35px rgba(212,175,55,0.5);
}

/* ================= CTA ================= */

.kt-cta {
    padding: 100px 20px;
    text-align: center;
}

.kt-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 40px;
    border-radius: 30px;
    background: linear-gradient(135deg,#d4af37,#f5d76e,#b8962e);
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.kt-btn:hover {
    box-shadow: 0 0 30px rgba(212,175,55,0.6);
    transform: translateY(-3px);
}

/* ================= RESPONSIVE ================= */

@media(max-width:900px){
    .kt-content h1 {
        font-size: 2.2rem;
    }
}


/* ================= IMAGE GRID ================= */

.kt-image-grid {
    margin-top: 50px;
}

.kt-image-card {
    padding: 0;
    overflow: hidden;
}

.kt-image-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 18px;
    transition: 0.6s ease;
}

.kt-image-card:hover img {
    transform: scale(1.08);
}

/* ================= MOBILE OPTIMIZATION ================= */

@media (max-width: 768px) {

    .kt-hero {
        height: 65vh;
    }

    .kt-content h1 {
        font-size: 1.8rem;
        padding: 0 15px;
    }

    .kt-content p {
        font-size: 0.95rem;
        padding: 0 20px;
    }

    .kt-section,
    .kt-features,
    .kt-cta {
        padding: 70px 20px;
    }

    .kt-card {
        padding: 30px;
    }

    .kt-image-card img {
        height: 220px;
    }

    .kt-btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
}