/* =====================================================
   BERANDA NEW LANDING PAGE STYLE
   ===================================================== */

/* HERO SECTION */
.hero-beranda {
    position: relative;
    width: 100%;
    min-height: 80vh;
    background: linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.45)), url('/assets/img/salon.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 100px 0;
    overflow: hidden; /* Clip the zoom effect on active slides */
}

/* Background Carousel Slides */
.hero-bg-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 6s ease;
}

/* Ken Burns (Zoom) effect when slide is active */
.hero-beranda .carousel-item.active .hero-bg-slide {
    transform: scale(1.08);
}

.hero-beranda-content {
    max-width: 800px;
    margin: 0 auto;
    z-index: 10;
}

.hero-beranda-content h1 {
    font-size: 65px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
    letter-spacing: -1px;
}

.hero-beranda-content p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 35px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* PROFIL/ABOUT SECTION */
.about-section {
    background: var(--white);
    padding: 100px 0;
    overflow: hidden;
}

.about-image-wrapper {
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
    padding-right: 20px;
}

.about-image-bg {
    position: absolute;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    background: linear-gradient(135deg, var(--primary), #7565FF);
    top: 30px;
    left: 30px;
    border-radius: 35px;
    z-index: 1;
    transform: rotate(-3deg);
    opacity: 0.15;
}

.about-img {
    border-radius: 35px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
}

.about-image-wrapper:hover .about-img {
    transform: translateY(-8px) scale(1.02);
}

.title-line {
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.lead-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.8;
}

.desc-text {
    font-size: 15px;
    color: var(--text2);
    line-height: 1.8;
    margin: 0;
}

/* VISI & MISI SECTION */
.visi-misi-section {
    background: var(--bg);
    padding: 100px 0;
}

.vision-mission-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 50px 45px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.vision-mission-card:hover {
    transform: translateY(-8px);
    border-color: rgba(86,65,252,0.15);
    box-shadow: 0 20px 45px rgba(86,65,252,0.1);
}

.card-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: rgba(86,65,252,0.1);
    color: var(--primary);
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: 0.3s ease;
}

.vision-mission-card:hover .card-icon-box {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.08);
}

.vision-mission-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text);
}

.card-line {
    width: 50px;
    height: 3px;
    background: var(--primary);
    border-radius: 1.5px;
    margin-bottom: 25px;
}

.vision-mission-card p {
    color: var(--text2);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

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

.misi-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--text2);
    line-height: 1.6;
}

.misi-list li:last-child {
    margin-bottom: 0;
}

.list-icon {
    color: var(--primary);
    font-size: 18px;
    margin-top: 2px;
}

.misi-list span {
    flex: 1;
}

/* WHY CHOOSE US SECTION */
.features-section {
    padding: 100px 0;
    background: var(--white);
}

.section-subtitle {
    display: block;
    text-align: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 50px;
}

.feature-card {
    background: var(--white);
    border-radius: 28px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,.02);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(86,65,252,0.12);
    border-color: rgba(86,65,252,0.25);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(86,65,252,0.1);
    color: var(--primary);
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text2);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* INFO BLOCK SECTION */
.info-block-section {
    padding: 100px 0;
    background: var(--bg);
}

.info-wrapper {
    background: var(--white);
    border-radius: 35px;
    padding: 50px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.info-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.info-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

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

.opening-hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
}

.opening-hours-list li:last-child {
    border-bottom: none;
}

.opening-hours-list li span.day {
    font-weight: 600;
}

.opening-hours-list li span.time {
    color: var(--primary);
    font-weight: 700;
}

.map-container {
    height: 100%;
    min-height: 350px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: none;
}

/* CONTACT SECTION */
.contact-section {
    background: var(--white);
    padding: 100px 0;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 40px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: rgba(86,65,252,0.25);
    box-shadow: 0 20px 45px rgba(86,65,252,0.12);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: rgba(86,65,252,0.1);
    color: var(--primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    background: var(--primary);
    color: var(--white);
}

.contact-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text2);
    font-size: 15px;
    margin: 0;
}

.social-links-box {
    margin-top: 60px;
}

.social-links-box h5 {
    font-weight: 600;
    color: var(--text);
}

.social-circles {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-circle:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-5px);
}
/* Media Queries */
@media (max-width: 991px) {
    .about-image-wrapper {
        margin-bottom: 40px;
    }
    .about-img {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .hero-beranda-content h1 {
        font-size: 48px;
    }
    .hero-beranda-content p {
        font-size: 17px;
    }
    .info-wrapper {
        padding: 30px 20px;
    }
    .vision-mission-card {
        padding: 35px 25px;
    }
}

/* GALLERY SECTION */
.gallery-section {
    background: var(--white);
    padding: 60px 0;
    overflow: hidden;
}

.gallery-carousel-container {
    position: relative;
    max-width: 1100px;
    height: 380px;
    margin: 40px auto 0;
    padding-bottom: 40px;
}

.gallery-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-slide {
    position: absolute;
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

/* Left slide (prev) */
.carousel-slide.prev {
    transform: translateX(-55%) scale(0.82);
    opacity: 0.6;
    filter: blur(4px);
    z-index: 2;
    pointer-events: auto;
}

/* Center slide (active) */
.carousel-slide.active {
    transform: translateX(0) scale(1);
    opacity: 1;
    filter: blur(0);
    z-index: 10;
    pointer-events: auto;
}

/* Right slide (next) */
.carousel-slide.next {
    transform: translateX(55%) scale(0.82);
    opacity: 0.6;
    filter: blur(4px);
    z-index: 2;
    pointer-events: auto;
}

.gallery-slide-caption {
    width: 100%;
    padding: 25px 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 12;
}

.carousel-slide.active .gallery-slide-caption {
    opacity: 1;
}

/* Indicators */
.gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.gallery-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(86, 65, 252, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-indicators .indicator.active {
    background: var(--primary);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(86, 65, 252, 0.3);
}

@media (max-width: 768px) {
    .gallery-carousel-container {
        height: 280px;
    }
    .carousel-slide {
        width: 75%;
    }
    .carousel-slide.prev {
        transform: translateX(-40%) scale(0.82);
        opacity: 0.4;
    }
    .carousel-slide.next {
        transform: translateX(40%) scale(0.82);
        opacity: 0.4;
    }
    .gallery-slide-caption {
        padding: 15px 20px;
        font-size: 14px;
    }
}

/* MICRO-ANIMATIONS FOR ICONS */
@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

.icon-float-1 {
    animation: iconFloat 3s ease-in-out infinite;
}

.icon-float-2 {
    animation: iconFloat 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

