
    :root{
      --primary:#E85A7A; --accent:#FFB4C6; --dark:#0f1724;
      --muted:#6b7280; --radius:12px; font-family: 'Inter', sans-serif;
    }
    body { margin: 0; color: var(--dark); line-height: 1.6; overflow-x: hidden; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
    
    header { background: #fff; padding: 10px 0; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 1000; }
    .nav-flex { display: flex; justify-content: space-between; align-items: center; }
    .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
    .logo img { height: 45px; object-fit: contain; }
    nav a { margin-left: 20px; text-decoration: none; color: var(--dark); font-weight: 600; }

    /* Hero Slide Style 
    .hero-slider { width: 100%; height: auto; background: #fff5f7; }
    .slide-content { 
        display: flex; align-items: center; gap: 40px; 
        padding: 60px 0; min-height: 400px;
    }
    .hero-text { flex: 1; }
    .hero-img { flex: 1; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
    .hero-img img { width: 100%; height: 400px; object-fit: cover; display: block; }*/
    
    /* Cập nhật Hero Slide Style */
.hero-slider { 
    width: 100%; 
    height: 600px; /* Chiều cao cố định cho slide */
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Ảnh rộng hết màn hình */
.slide-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Lớp phủ chữ nằm trên ảnh */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Làm tối ảnh một chút để nổi bật chữ */
    display: flex;
    align-items: center; /* Căn giữa dọc */
    color: white;
}

.hero-text {
    max-width: 800px;
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-text p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 30px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

/* Responsive cho di động */
@media (max-width: 768px) {
    .hero-slider { height: 400px; }
    .hero-text h1 { font-size: 32px; }
    .hero-text p { font-size: 16px; }
}

    /* Utility */
    .section-title { text-align: center; margin-bottom: 40px; }
    .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
    .service-card { background: #fff; border: 1px solid #eee; border-radius: var(--radius); padding: 20px; text-align: center; transition: 0.3s; }
    .service-card:hover { transform: translateY(-10px); }
    .service-card img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; }
    .price { color: var(--primary); font-weight: 700; font-size: 18px; }
    
    .booking-box { background: var(--dark); color: #fff; padding: 50px 0; margin: 50px 0; }
    .form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; margin-top: 20px; }
    input, select, button { padding: 12px; border-radius: 8px; border: none; }
    .btn-submit { background: var(--primary); color: #fff; font-weight: 700; cursor: pointer; border:none; }

    @media (max-width: 768px) {
        .slide-content { flex-direction: column; text-align: center; padding: 30px 20px; }
        nav { display: none; }
    }
    
    
    /* Hiệu ứng cuộn mượt cho toàn bộ trang */
html {
    scroll-behavior: smooth;
}

/* Hiệu ứng làm nổi bật Form khi được trỏ tới */
.highlight-form {
    animation: flash-border 1.5s ease-out;
}

@keyframes flash-border {
    0% { box-shadow: 0 0 0 0 rgba(232, 90, 122, 0.7); }
    50% { box-shadow: 0 0 20px 10px rgba(232, 90, 122, 0.4); }
    100% { box-shadow: 0 0 0 0 rgba(232, 90, 122, 0); }
}

/* Tùy chỉnh thêm cho phần form để trông chuyên nghiệp hơn */
#booking {
    scroll-margin-top: 100px; /* Khoảng cách dừng lại cách top để không bị đè bởi Header */
}

/* News Section Style */
.news-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
    gap: 30px; 
    margin-top: 40px; 
}
.news-card { 
    background: #fff; 
    border-radius: var(--radius); 
    overflow: hidden; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); 
    transition: 0.3s;
    border: 1px solid #eee;
}
.news-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.news-card img { width: 100%; height: 220px; object-fit: cover; }
.news-content { padding: 20px; }
.news-date { font-size: 12px; color: var(--primary); font-weight: 600; text-transform: uppercase; margin-bottom: 10px; display: block; }
.news-title { font-size: 18px; margin: 0 0 10px; color: var(--dark); line-height: 1.4; }
.news-excerpt { font-size: 14px; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.footer-pamperme {
    background-color: #B5307B; /* Màu hồng đậm như hình */
    color: #ffffff;
    padding: 60px 0;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 30px;
}

.footer-col h3.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.footer-list a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-list a:hover {
    opacity: 0.8;
}

.footer-logo {
    width: 140px;
    margin-bottom: 20px;
}

.company-name {
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Icons Social */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icons img {
    width: 35px;
    height: 35px;
    background: white;
    padding: 5px;
    border-radius: 50%;
}

/* Responsive cho di động */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-list li {
        justify-content: center;
    }
    .social-icons {
        justify-content: center;
    }
    .footer-center {
        margin-bottom: 30px;
    }
}
/* Đảm bảo Header luôn hiển thị linh hoạt */
.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Fix logo bị mất trên mobile */
@media (max-width: 768px) {
    .logo {
        display: flex !important; /* Luôn hiển thị logo */
        align-items: center;
        gap: 8px;
    }
    .logo img {
        height: 35px; /* Thu nhỏ logo một chút cho cân đối trên điện thoại */
    }
    .contact-info {
        display: flex;
        font-size: 14px;
    }
    nav {
        display: none; /* Ẩn menu chữ nếu bạn chưa làm menu mobile (hamburger) */
    }

@media (max-width: 768px) {
    #contact > div > div {
        grid-template-columns: 1fr !important;
    }
    .contact-map {
        height: 300px !important;
        order: 2; /* Đưa bản đồ xuống dưới form trên mobile */
    }
}
