/* ===================================
   NEW HERO SECTION STYLES
   ================================== */

/* Hero Section Container */
.hero-section-new {
    display: flex;
    min-height: 100vh;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

/* Left Sidebar */
.hero-sidebar {
    width: 280px;
    background: linear-gradient(180deg, #4CAF50 0%, #45a049 100%);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.2);
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sidebar-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.sidebar-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Call Button */
.btn-call-sidebar {
    background: #388E3C;
    color: white;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-call-sidebar:hover {
    background: #2E7D32;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.btn-call-sidebar i {
    font-size: 1.1rem;
}

/* Key Highlights */
.key-highlights {
    margin-bottom: 25px;
    flex: 1;
}

.key-highlights h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlights-list li {
    color: white;
    font-size: 0.85rem;
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.highlights-list i {
    color: #FFD700;
    font-size: 0.9rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Launch Offer */
.launch-offer {
    background: rgba(255, 255, 255, 0.15);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.offer-text {
    color: white;
    font-size: 0.85rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.offer-details {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.price-tag {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.price-tag sup {
    font-size: 0.7rem;
}

/* Enquire Button */
.btn-enquire-sidebar {
    background: white;
    color: #4CAF50;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-enquire-sidebar:hover {
    background: #FFD700;
    color: #2E7D32;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Image Slider Area */
.hero-image-slider {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid white;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
    backdrop-filter: blur(5px);
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 30px;
}

.carousel-nav.next {
    right: 30px;
}

.carousel-nav i {
    font-size: 1.5rem;
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
}

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

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: white;
    width: 14px;
    height: 14px;
}

/* Enquiry Section */
.enquiry-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.enquiry-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section-new {
        flex-direction: column;
        margin-top: 70px;
    }

    .hero-sidebar {
        width: 100%;
        min-height: auto;
        padding: 25px 20px;
    }

    .sidebar-title {
        font-size: 1.5rem;
    }

    .highlights-list li {
        font-size: 0.8rem;
        padding: 6px 0;
    }

    .hero-image-slider {
        min-height: 400px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }

    .carousel-nav.prev {
        left: 15px;
    }

    .carousel-nav.next {
        right: 15px;
    }

    .carousel-dots {
        bottom: 20px;
    }
}
/* Add margin between header and hero section */
.hero-section-new {
    margin-top: 80px;
}
