body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* ================= HERO ================= */
.lux-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* PANORAMA CONTAINER */
#panorama-view {
    width: 100%;
    height: 100%;
}

/* OVERLAY */
.hero-overlay{
    position: absolute;
    inset: 0;
    background: none; /* no shadow */
    pointer-events: none;
}

/* TEXT */
.hero-info {
    position: absolute;
    bottom: 50px;
    left: 60px;
    color: #fff;
    z-index: 10;
}

.hero-title {
    font-size: clamp(24px, 5vw, 60px);
    color: #fff9fb;
}

/* MOBILE */
@media(max-width:768px){
    .hero-info{
        left: 20px;
        bottom: 30px;
    }
}
/* =========================
🔥 SECTION BASE
========================= */
.lux-details {
    padding: 120px 0;
    background: linear-gradient(135deg, #f7f9fc, #eef1f5);
}

/* GRID */
.details-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT */
.details-text {
    max-width: 600px;
}

/* BADGE */
.badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0,0,0,67%);
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.title {
    font-size: clamp(26px, 3.5vw, 48px);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 12px;

    white-space: nowrap;
    word-break: break-word;
    letter-spacing: -0.5px;
}
/* LOCATION */
.location {
    color: #888;
    margin-bottom: 25px;
}

/* FEATURES */
.features {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}



.features span {
    display: inline-block;
    background: rgb(92, 197, 226);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 13px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);

    /* animation base */
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    filter: blur(6px);
}

.features span {
    transition: all 0.3s ease;
    cursor: default;
}

.features span:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
    
}

/* DESCRIPTION */
.description p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* INITIAL STATE */
.title .line,
.location,
.features span,
.description p,
.actions a {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    filter: blur(8px);
}

/* BUTTONS */
.actions {
    margin-top: 25px;
}

.btn-primary {
    background: #007bff;
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    margin-right: 10px;
    transition: 0.3s;
}

.btn-outline {
    border: 1px solid #333;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    color: #333;
}

.btn-primary:hover,
.btn-outline:hover {
    transform: translateY(-3px);
}

/* RIGHT IMAGE */
.details-image img {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}



.details-image img {
    width: 100%;
    display: block;

    /* initial animation state */
    opacity: 0;
    transform: translateX(80px) scale(1.1);
    filter: blur(10px);
}
/* RESPONSIVE */
@media(max-width: 992px) {
    .details-grid {
        grid-template-columns: 1fr;
    }
}



.rating-details {
    padding: 120px 0;
    background: linear-gradient(135deg, #93a1b8, #6e8db3);
}

/* HEADER */
.rating-header h2 {
    font-size: 34px;
    font-weight: 600;
}

.rating-header p {
    color: #000;
}

/* SLIDER */
.rating-slider {
    overflow: hidden;
    margin-top: 50px;
}

/* TRACK */
.rating-track {
    display: flex;
    gap: 40px;
    align-items: center;
    animation: scrollReview 25s linear infinite;
}

/* CARD (NO GAP, FULL IMAGE) */
.rating-logo {
    flex: 0 0 auto;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    background: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: 0.3s;
}

/* IMAGE FULL FIT */
.rating-logo img {
    width: 400px;
    height: 150px;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

/* HOVER */
.rating-logo:hover {
    transform: scale(1.05);
}

/* AUTO SLIDE */
@keyframes scrollReview {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* PAUSE ON HOVER */
.rating-slider:hover .rating-track {
    animation-play-state: paused;
}



.pharma-details {
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.1);
}





/* HEADER */
.pharma-header h2 {
    font-size: 48px;
    font-weight: 500;
    font-family: serif;
    color: #1a1a1a;
    margin-bottom: 20px;
}

/* TABS */
.pharma-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.pharma-tabs span {
    font-size: 13px;
    letter-spacing: 2px;
    color: #888;
    cursor: pointer;
    position: relative;
}

.pharma-tabs .active {
    color: #000;
}

.pharma-tabs .active::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: #c8a97e;
    bottom: -5px;
    left: 0;
}

/* GRID */
.pharma-grid {
    align-items: stretch;
}

/* CARD */
.pharma-card {
    overflow: hidden;
    transition: all 0.5s ease;
}

/* IMAGE */
.pharma-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: 0.6s;
}

/* INFO */
.pharma-info {
    padding: 20px 5px;
}

/* TITLE */
.pharma-info h3 {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 5px;
}

/* SUB */
.pharma-info h4 {
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
}

/* TEXT */
.pharma-info p {
    font-size: 14px;
    color: #888;
}

/* HOVER EFFECT */
.pharma-card:hover img {
    transform: scale(1.08);
}

/* RESPONSIVE */
@media(max-width:768px){
    .pharma-header h2 {
        font-size: 32px;
    }
}

.pharma-grid a {
    text-decoration: none;
    color: inherit;
    display: block;
}


.pharma-listing {
    padding: 20px 0;
    /* background:rgba(0, 0, 0, 0.1); */
}

/* TITLE */
.pharma-header h2 {
    font-size: 46px;
    font-weight: 500;
    font-family: serif;
    margin-bottom: 60px;
}

/* GRID SPACING */
.pharma-grid .col-md-6 {
    margin-bottom: 30px;
}

/* CARD */
.pharma-card.modern {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    height: 420px;
    cursor: pointer;
}

/* IMAGE */
.pharma-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s ease;
}

/* DARK OVERLAY */
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
}

/* TEXT */
.overlay h3 {
    font-size: 28px;
    margin-bottom: 5px;
}

.overlay p {
    font-size: 14px;
    opacity: 0.8;
}

/* HOVER EFFECT 🔥 */
.pharma-card:hover img {
    transform: scale(1.12);
}

.pharma-card:hover {
    transform: translateY(-8px);
}

/* RESPONSIVE */
@media(max-width:768px){
    .pharma-card.modern {
        height: 300px;
    }

    .pharma-header h2 {
        font-size: 30px;
    }
}