/* ============================================================
   HOME PAGE - PREMIUM DESIGN ENHANCEMENTS
   Dr. Yatri Thacker – Holistic Homeopathic Physician
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --hp-primary:    #0cacee;
    --hp-secondary:  #ea1b24;
    --hp-dark:       #0E2E50;
    --hp-gold:       #c9a84c;
    --hp-green:      #22c55e;
    --hp-light-bg:   #f8fbff;
    --hp-card-bg:    #ffffff;
    --hp-gradient:   linear-gradient(135deg, #0cacee 0%, #ea1b24 100%);
    --hp-gradient-r: linear-gradient(135deg, #ea1b24 0%, #0cacee 100%);
    --hp-shadow:     0 8px 32px rgba(12, 172, 238, 0.18);
    --hp-shadow-lg:  0 16px 48px rgba(0, 0, 0, 0.13);
    --hp-radius:     16px;
    --hp-transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ===================== REDUCE GLOBAL SECTION GAPS ===================== */
/* Override py-5 (3rem top/bottom) to 2rem for all home sections */
.top-header .container-xxl.py-5,
.top-header ~ .container-xxl.py-5,
.container-xxl.py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.hp-stats-strip + .container-xxl,
.container-xxl + .container-xxl {
    padding-top: 1.5rem !important;
}

/* Section spacing for specific named sections */
.services-section    { padding-top: 2rem !important; padding-bottom: 2rem !important; }
.about-section-hp    { padding-top: 2rem !important; padding-bottom: 2rem !important; }
.products-section-hp { padding-top: 2rem !important; padding-bottom: 2rem !important; }
.treatments-section-hp { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
.testimonials-section-hp { padding-top: 2rem !important; padding-bottom: 2rem !important; }

/* Reduce mb-5 in section headings */
.rcb .mb-5, .wow.mb-5 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 1.5rem !important; }

/* ===================== HERO SECTION ===================== */

/* ===================== HERO SECTION REDESIGN ===================== */

.elvideo {
    background: #000;
    min-height: 500px;
    width: 100%;
    object-fit: cover;
    filter: brightness(0.75);
}

.over-video {
    top: 18% !important;
    left: 6% !important;
    max-width: 60% !important;
}

.hero-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 45px ;
    font-weight: 700 !important;
    color: var(--hp-primary) !important; /* Theme Color */
    margin-bottom: 22px !important;
    text-shadow: 0 4px 12px rgba(0,0,0,0.25);
    line-height: 1;
}

.hero-labels {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 35px !important;
}

.hero-labels span {
    font-family: 'Poppins', sans-serif !important;
    font-size: 19px ;
    color: #fff !important;
    display: flex;
    align-items: center;
    gap: 12px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.hero-labels i {
    color: var(--hp-primary);
    background: rgba(12, 172, 238, 0.15);
    padding: 6px;
    border-radius: 5px;
}

/* Button Group Alignment */
.hero-btn-group.left-align {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    justify-content: flex-start;
}

/* Button Group Alignment */
.hero-btn-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    justify-content: flex-start;
}

/* Buttons */
.btn-hero-primary {
    background: var(--hp-gradient) !important;
    color: #fff !important;
    padding: 16px 32px !important;
    border-radius: 50px !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    box-shadow: 0 10px 25px rgba(12, 172, 238, 0.4);
    transition: var(--hp-transition) !important;
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(12, 172, 238, 0.6);
    filter: brightness(1.1);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: #fff !important;
    padding: 12px 28px !important;
    border-radius: 50px !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 15px !important;
    text-decoration: none !important;
    transition: var(--hp-transition) !important;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    transform: translateY(-2px);
}

/* Play/Watch button refinement */
.youtube-button {
    background: rgba(234, 27, 36, 0.9) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 12px 24px !important;
    box-shadow: 0 8px 16px rgba(234, 27, 36, 0.3) !important;
}

.youtube-button:hover {
    background: var(--hp-secondary) !important;
    box-shadow: 0 12px 24px rgba(234, 27, 36, 0.5) !important;
    transform: translate(-50%, -50%) scale(1.1) !important;
}

@media (max-width: 991px) {
    .over-video { 
        max-width: 85% !important; 
        top: 15% !important; 
        left: 5% !important;
        display: none;
    }
    .hero-title { font-size: 48px ; }
    .hero-labels span { font-size: 16px ; }
    .hero-btn-group { gap: 15px; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 15px; }
    .hero-labels { margin-bottom: 20px ; }
    .hero-labels span { font-size: 14px ; }
    .btn-hero-primary, .btn-hero-secondary { 
        padding: 12px 24px !important; 
        font-size: 14px !important; 
    }
}

@media (max-width: 576px) {
    .hero-btn-group { 
        flex-direction: column !important; 
        align-items: flex-start !important; 
        gap: 12px !important; 
    }
    .btn-hero-primary, .btn-hero-secondary { 
        width: 100% !important; 
        justify-content: center !important; 
    }
}

/* ===================== TV FEATURE SECTION ===================== */

.tv-feature-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #fef2f2 100%);
    border-radius: 20px;
    padding: 28px 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(12,172,238,0.09);
    border: 1px solid rgba(12,172,238,0.12);
}

.tv-feature-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(12,172,238,0.12), transparent 70%);
    pointer-events: none;
}

.tv-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--hp-gradient);
    color: #fff;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.tv-feature-section .ratio {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    border: 3px solid rgba(12,172,238,0.2);
}

/* ===================== STATS STRIP ===================== */

.hp-stats-strip {
    background: #06152b; /* Deep night blue for contrast */
    padding: 45px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.hp-stats-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hp-stat-item {
    text-align: center;
    position: relative;
    padding: 10px 25px;
    transition: var(--hp-transition);
}

.hp-stat-item:hover {
    transform: translateY(-5px);
}

.hp-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 50px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, 0.3), transparent);
}

.hp-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    background: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: block;
    margin-bottom: 8px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.hp-stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #cbd5e1;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    display: block;
}

/* ===================== SERVICES SECTION ===================== */

.services-section {
    background: var(--hp-light-bg);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--hp-gradient);
}

/* ===================== SERVICE CARD (Grid – Cover Image Design) ===================== */

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

.hp-section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #6b7280;
}

/* Card wrapper = <a> tag */
.hp-service-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--hp-radius);
    overflow: hidden;
    border: 1px solid rgba(12,172,238,0.1);
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    transition: var(--hp-transition);
    text-decoration: none !important;
    color: inherit !important;
    height: 100%;
    position: relative;
}

.hp-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 55px rgba(12,172,238,0.22);
    border-color: rgba(12,172,238,0.3);
    text-decoration: none;
    color: inherit;
}

/* ── Full-width cover image ── */
.hp-svc-img-wrap {
    position: relative;
    width: 100%;
    height: 210px;          /* tall enough to look great */
    overflow: hidden;
    background: linear-gradient(135deg, #e0f3fd 0%, #fde8e8 100%);
}

.hp-svc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;       /* fill the frame, crop if needed */
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    background: transparent;
}

/* Icon placeholder when no image is available */
.hp-svc-icon-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0f3fd 0%, #fde8e8 100%);
    transition: background 0.4s ease;
}

.hp-svc-icon-placeholder i {
    font-size: 64px;
    background: var(--hp-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.4s ease;
}

.hp-service-card:hover .hp-svc-icon-placeholder i {
    transform: scale(1.15);
}

.hp-service-card:hover .hp-svc-img-wrap img {
    transform: scale(1.07);
}

/* Dark gradient overlay at bottom of image */
.hp-svc-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 55%;
    background: linear-gradient(to top, rgba(14,46,80,0.55) 0%, transparent 100%);
    pointer-events: none;
    transition: var(--hp-transition);
}

.hp-service-card:hover .hp-svc-img-wrap::after {
    height: 70%;
    background: linear-gradient(to top, rgba(12,172,238,0.55) 0%, transparent 100%);
}

/* Category chip overlaid on image */
.hp-svc-chip {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(6px);
    color: var(--hp-dark);
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    z-index: 2;
}

/* ── Card text body ── */
.hp-svc-body {
    padding: 20px 22px 6px;
    flex: 1;
}

.hp-svc-title {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--hp-dark);
    margin: 0 0 8px;
    line-height: 1.3;
    transition: color 0.3s;
}

.hp-service-card:hover .hp-svc-title {
    color: var(--hp-primary);
}

.hp-svc-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    color: #6b7280;
    line-height: 1.75;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Footer CTA ── */
.hp-svc-footer {
    padding: 14px 22px 18px;
    border-top: 1px solid rgba(12,172,238,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hp-svc-cta {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--hp-primary);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: var(--hp-transition);
}

.hp-svc-cta i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.hp-service-card:hover .hp-svc-cta {
    color: var(--hp-secondary);
    gap: 11px;
}

.hp-service-card:hover .hp-svc-cta i {
    transform: translateX(5px);
}

/* Dot indicator in footer */
.hp-svc-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--hp-gradient);
    display: inline-block;
}

/* keep old cat-item fallback */
.cat-item { transition: var(--hp-transition); }


/* ===================== MODERN ABOUT SECTION ===================== */

.about-modern-section {
    background: #fff;
    position: relative;
    overflow: hidden;
}

.about-modern-img-wrap {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.about-modern-img-wrap .main-img {
    border-radius: 30px;
    box-shadow: var(--hp-shadow-lg);
    border: 8px solid #fff;
    transition: var(--hp-transition);
    width: 100%;
}

.about-modern-img-wrap:hover .main-img {
    transform: scale(1.02);
}

/* Glassmorphism Badge */
.modern-exp-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 25px 30px;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
    animation: float-badge 4s ease-in-out infinite;
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.modern-exp-badge .num {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    background: var(--hp-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.modern-exp-badge .txt {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--hp-dark);
    text-align: center;
    line-height: 1.2;
}

/* Pulse Play Button */
.modern-play-btn-wrap {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.pulse-play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--hp-gradient);
    border: none;
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 0 rgba(12, 172, 238, 0.7);
    animation: hp-pulse 2s infinite;
    cursor: pointer;
    transition: var(--hp-transition);
}

.pulse-play-btn:hover {
    transform: scale(1.1);
}

@keyframes hp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(12, 172, 238, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(12, 172, 238, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(12, 172, 238, 0);
    }
}

/* Decorative Circles */
.deco-circle-1 {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(12, 172, 238, 0.1), transparent 70%);
    z-index: 1;
}

.deco-circle-2 {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(234, 27, 36, 0.08), transparent 70%);
    z-index: 1;
}

/* Content Styles */
.premium-label {
    background: rgba(12, 172, 238, 0.08);
    color: var(--hp-primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.modern-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 30px !important;
    font-weight: 700 !important;
    color: var(--hp-dark);
    line-height: 1.25;
}

.modern-details-text {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #4b5563;
    line-height: 1.8;
}

.modern-details-text p {
    margin-bottom: 1.2rem;
}

.modern-details-text b, .modern-details-text strong {
    color: var(--hp-primary);
    font-weight: 600;
}

/* Premium CTA */
.btn-premium-about {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--hp-gradient);
    color: #fff !important;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-decoration: none !important;
    box-shadow: 0 10px 25px rgba(12, 172, 238, 0.4);
    transition: var(--hp-transition);
}

.btn-premium-about:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(12, 172, 238, 0.55);
    color: #fff !important;
}

.btn-premium-about i {
    transition: transform 0.3s;
}

.btn-premium-about:hover i {
    transform: translateX(5px);
}

/* ===================== PRODUCT CARD - REDESIGN ===================== */

.products-section-hp {
    background: linear-gradient(180deg, #fff 0%, var(--hp-light-bg) 100%);
}

.hp-product-card {
    background: #fff;
    border-radius: var(--hp-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(12,172,238,0.1);
    transition: var(--hp-transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.hp-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(12,172,238,0.2);
    border-color: rgba(12,172,238,0.3);
}

/* Image wrapper */
.hp-product-img-wrap {
    position: relative;
    overflow: hidden;
    background: #f8faff;
}

.hp-product-img-wrap a {
    display: block;
}

.hp-product-img-wrap img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.hp-product-card:hover .hp-product-img-wrap img {
    transform: scale(1.08);
}

/* === DISCOUNT BADGE === */
.hp-discount-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ff6b35, #ea1b24);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 50px;
    box-shadow: 0 4px 14px rgba(234,27,36,0.45);
    letter-spacing: 0.5px;
    z-index: 5;
    animation: badge-pop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes badge-pop {
    0%   { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* === "MOST PRESCRIBED" label bottom-left === */
.hp-label-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #0cacee, #0097d4);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 14px 4px 10px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-radius: 0 12px 0 0;
}

/* Card body */
.hp-product-body {
    padding: 14px 16px 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hp-product-name {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--hp-dark);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Doctor verified pill */
.hp-verified-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(34,197,94,0.1);
    color: #16a34a;
    border: 1px solid rgba(34,197,94,0.25);
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    width: fit-content;
    letter-spacing: 0.3px;
}

.hp-verified-pill i { font-size: 10px; }

/* Pricing row */
.hp-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
}

.hp-offer-price {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--hp-secondary);
    line-height: 1;
}

.hp-actual-price {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #9ca3af;
    text-decoration: line-through;
}

.hp-save-label {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #16a34a;
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.2);
    padding: 2px 8px;
    border-radius: 50px;
}

/* View Details CTA button */
.hp-view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--hp-gradient);
    color: #fff !important;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 20px;
    text-decoration: none !important;
    letter-spacing: 0.5px;
    transition: var(--hp-transition);
    border-top: 1px solid rgba(12,172,238,0.15);
}

.hp-view-btn i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.hp-view-btn:hover {
    opacity: 0.9;
    gap: 12px;
}

.hp-view-btn:hover i {
    transform: scale(1.2);
}

/* ===================== TREATMENT RESULTS SECTION ===================== */

.treatments-section-hp {
    background: var(--hp-dark);
    position: relative;
    overflow: hidden;
}

.treatments-section-hp::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 350px; height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(12,172,238,0.15), transparent 70%);
    pointer-events: none;
}

.treatments-section-hp::after {
    content: '';
    position: absolute;
    bottom: -120px; left: -120px;
    width: 350px; height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(234,27,36,0.12), transparent 70%);
    pointer-events: none;
}

.treatments-section-hp h3.spec-tags {
    color: #fff !important;
    font-family: 'Playfair Display', serif;
}

.team-item {
    border-radius: var(--hp-radius) !important;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
    transition: var(--hp-transition);
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
}

.team-item:hover {
    transform: translateY(-6px);
    border-color: var(--hp-primary) !important;
    box-shadow: 0 12px 36px rgba(12,172,238,0.3) !important;
}

.team-item img {
    height: 210px !important;
    filter: brightness(0.92);
    transition: var(--hp-transition);
}

.team-item:hover img { filter: brightness(1); transform: scale(1.04); }

.team-item .btn.bg-primary-1 {
    background: var(--hp-gradient) !important;
    border-radius: 50px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    padding: 7px 18px !important;
    border: none !important;
    box-shadow: 0 4px 16px rgba(12,172,238,0.4);
}

.team-item .btn.bg-primary-1:hover { transform: scale(1.05); }

/* ===================== TESTIMONIALS SECTION ===================== */

.testimonials-section-hp {
    background: #f8fbff;
    position: relative;
    padding: 100px 0;
}

.testimonial-item {
    height: 100%;
    padding: 15px;
}

.testimonial-card-lux {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(12, 172, 238, 0.1);
    box-shadow: 0 10px 30px rgba(12, 172, 238, 0.05);
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-item:hover .testimonial-card-lux {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(12, 172, 238, 0.12);
    border-color: var(--hp-primary);
}

.quote-icon-hp {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    color: var(--hp-primary);
    opacity: 0.15;
    position: absolute;
    top: 20px;
    left: 25px;
    line-height: 1;
}

.testimonial-stars-lux {
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
    z-index: 2;
    position: relative;
}

.testimonial-text-lux {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 25px;
    flex-grow: 1; /* Pushes footer to bottom */
    font-style: italic;
}

.testimonial-author-lux {
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
    text-align: center;
}

.author-name-lux {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--hp-dark);
    margin: 0;
    text-transform: capitalize;
}

.author-title-hp {
    font-size: 11px;
    text-transform: uppercase;
    color: #94a3b8;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 4px;
}

/* ===================== SECTION TITLE OVERRIDES ===================== */

.spec-tags {
    font-family: 'Playfair Display', serif !important;
    font-size: 28px !important;
    font-weight: 700 !important;
}

.spec-tags-1 {
    font-family: 'Playfair Display', serif !important;
    font-size: 24px !important;
    color: var(--hp-dark) !important;
    font-weight: 600 !important;
}

.line {
    background: var(--hp-gradient);
    height: 3px;
    border-radius: 3px;
    width: 50px;
    margin-bottom: 14px;
}

/* Browse More Products button */
.btn.btn-primary {
    background: var(--hp-gradient) !important;
    border: none !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px;
    transition: var(--hp-transition);
}

.btn.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12,172,238,0.38) !important;
}

/* ===================== MODAL IMPROVEMENTS ===================== */

.custom-video-wrapper {
    display: none;
    position: fixed;
    z-index: 99999 !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

.custom-video-content {
    background: #000;
    width: 90%;
    max-width: 900px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

.custom-video-content video {
    width: 100%;
    display: block;
}

.closeBtn, .closeBtn2 {
    width: 40px; height: 40px;
    background: #fff !important;
    color: #000 !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--hp-transition);
    position: absolute;
    top: 15px; right: 15px;
    z-index: 100;
}

.closeBtn:hover, .closeBtn2:hover { 
    transform: rotate(90deg) scale(1.1);
    background: var(--hp-secondary) !important;
    color: #fff !important;
}

/* ===================== WHAT WE TREAT SECTION (Premium Grid) ===================== */

.wt-section {
    padding: 30px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Diagonal background decor */
.wt-section::before {
    content: '';
    position: absolute;
    top: -10%; left: -5%;
    width: 40%; height: 60%;
    background: radial-gradient(circle, rgba(12, 172, 238, 0.03) 0%, transparent 70%);
    z-index: 1;
}

.wt-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 2;
}

.wt-label-pill {
    display: inline-block;
    background: rgba(12, 172, 238, 0.1);
    color: var(--hp-primary);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.wt-heading {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--hp-dark);
    margin: 0;
}

.wt-heading span {
    color: var(--hp-secondary);
}

.wt-subhead {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #64748b;
    margin-top: 15px;
}

/* Grid Layout */
.wt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Individual Card */
.wt-card {
    position: relative;
    height: 420px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    text-decoration: none !important;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.1);
}

.wt-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

/* Background Image & Overlays */
.wt-card-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.wt-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.wt-card:hover .wt-card-bg img {
    transform: scale(1.1);
}

.wt-card-overlay-base {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14, 46, 80, 0.9) 0%, rgba(14, 46, 80, 0.3) 50%, transparent 100%);
    z-index: 2;
}

.wt-card-overlay-color {
    position: absolute;
    inset: 0;
    background: var(--wt-accent);
    opacity: 0;
    z-index: 3;
    transition: opacity 0.5s ease;
    mix-blend-mode: multiply;
}

.wt-card:hover .wt-card-overlay-color {
    opacity: 0.7;
}

/* Card Badges & Icons */
.wt-card-num {
    position: absolute;
    top: 25px; left: 25px;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    z-index: 4;
    transition: color 0.3s;
}

.wt-card:hover .wt-card-num {
    color: #ffffff;
}

.wt-card-icon {
    position: absolute;
    top: 25px; right: 25px;
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    z-index: 4;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.wt-card:hover .wt-card-icon {
    background: #ffffff;
    color: var(--wt-accent);
    transform: rotateY(360deg);
}

/* Body Content */
.wt-card-body {
    position: relative;
    z-index: 5;
    transition: transform 0.4s ease;
}

.wt-card:hover .wt-card-body {
    transform: translateY(-15px);
}

.wt-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.wt-card-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 20px;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.wt-card:hover .wt-card-desc {
    height: auto;
    opacity: 1;
}

.wt-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 2px solid var(--wt-accent);
    padding-bottom: 2px;
    transform: translateX(-10px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.wt-card:hover .wt-card-cta {
    transform: translateX(0);
    opacity: 1;
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 991px) {
    .wt-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .wt-heading { font-size: 32px; }
    .wt-grid {
        grid-template-columns: 1fr;
    }
    .wt-card { height: 380px; }
}


@media (max-width: 768px) {
    .over-video p:nth-child(1) { font-size: 22px !important; }
    .over-video p:nth-child(2) { font-size: 11px !important; }
    .hp-stat-number { font-size: 30px; }
    .spec-tags { font-size: 22px !important; }
    .hp-stats-strip { padding: 24px 0; }
    .hp-stat-item:not(:last-child)::after { display: none; }
    .hp-product-img-wrap img { height: 190px; }
    .container-xxl.py-5 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
}

@media (max-width: 576px) {
    .hp-offer-price { font-size: 18px; }
}

/* ===================== HOMEPAGE HIGHLIGHTED BOOKING ===================== */

.hp-booking-section {
    background: #f4f7fe;
    padding: 80px 0;
}

.luxury-booking-card-hp {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10, 36, 114, 0.1);
    border: 1px solid rgba(165, 160, 89, 0.1);
}

.booking-brand-side {
    background: linear-gradient(135deg, #0a2472 0%, #03144d 100%);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.booking-brand-side::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('/img/pattern.png');
    opacity: 0.05;
}

.premium-tag {
    background: rgba(12, 172, 238, 0.2);
    color: #0cacee;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-content-hp h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
}

.dr-mini-profile {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.dr-avatar-hp {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 3px solid rgba(12, 172, 238, 0.4);
    overflow: hidden;
    padding: 2px;
    background: #fff;
    flex-shrink: 0;
}

.dr-avatar-hp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.dr-info-hp h5 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.booking-form-side-hp {
    padding: 60px 45px;
}

.form-header-hp h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #0a2472;
    font-weight: 700;
}

.hp-lux-label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: #94a3b8;
    margin-bottom: 8px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.hp-input-wrap {
    margin-bottom: 12px;
}

.hp-input-wrap .form-control,
.hp-input-wrap .form-select {
    height: 52px;
    border-radius: 12px;
    border: 1.5px solid #e2e8f0;
    background: #fdfeff;
    padding-left: 18px;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hp-input-wrap textarea.form-control {
    height: auto;
    padding-top: 15px;
}

.hp-input-wrap .form-control:focus,
.hp-input-wrap .form-select:focus {
    border-color: #0cacee;
    background: #fff;
    box-shadow: 0 8px 30px rgba(12, 172, 238, 0.08);
}

/* Toggle Switch Homepage */
.lux-toggle-container-hp {
    background: #eff6ff;
    padding: 6px;
    border-radius: 14px;
    margin-bottom: 20px;
}

.lux-toggle-options {
    display: flex;
    position: relative;
    z-index: 1;
}

.lux-radio-input {
    display: none !important;
}

.lux-toggle-label {
    flex: 1;
    padding: 12px;
    text-align: center;
    font-weight: 800;
    font-size: 13px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.4s;
    border-radius: 10px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lux-radio-input:checked + .lux-toggle-label {
    color: #fff;
}

.lux-toggle-slider {
    position: absolute;
    top: 0; left: 0;
    width: 50%; height: 100%;
    background: #0a2472;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
    box-shadow: 0 4px 15px rgba(10, 36, 114, 0.25);
}

#online_hp:checked ~ .lux-toggle-slider {
    transform: translateX(100%);
}

#rzp-button-hp {
    height: 58px;
    background: #0a2472;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 15px;
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(10, 36, 114, 0.2);
}

#rzp-button-hp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(10, 36, 114, 0.3);
    background: #061a55;
}

/* OFFCANVAS BACKGROUND */
.custom-offcanvas {
    background: var(--hp-gradient);
    color: #fff;
    width: 300px;
}
.custom-offcanvas img{
    padding:5px;
}
/* TEXT */
.custom-offcanvas .nav-link {
    color: #fff;
    font-weight: 500;
    padding: 12px 0;
    display: block;
}

.custom-offcanvas .nav-link:hover {
    opacity: 0.8;
}

/* ACCORDION */
.custom-offcanvas .accordion-item {
    background: transparent;
    border: none;
}

.custom-offcanvas .accordion-button {
    background: transparent;
    color: #fff;
    padding: 12px 0;
    font-weight: 500;
    border-color: none;
    box-shadow: none;
    border:none;
}

.custom-offcanvas .accordion-button::after {
    filter: brightness(0) invert(1); /* makes arrow white */
}

.custom-offcanvas .accordion-button:not(.collapsed) {
    color: #fff;
}

/* SUB MENU */
.custom-offcanvas .accordion-body {
    padding: 0 0 10px 10px;
}

.custom-offcanvas .accordion-body a {
    display: block;
    color: #fff;
    padding: 6px 0;
    font-size: 14px;
}

/* CLOSE BUTTON */
.btn-close-white {
    filter: invert(1);
}
.flag-img {
        display: flex;
    justify-content: center;
}
.flag-img img{
    height:100px !important;
    width:100px !important;
        border-radius: 50%;
    object-fit:contain;
}
.countryname{
    color:#000;
    font-weight:600;
    font-size:18px;
    text-align:center;
    text-transform:uppercase;
    margin-top:10px;
}
@media (max-width: 991px) {
    .booking-brand-side { padding: 40px 30px; }
    .booking-form-side-hp { padding: 40px 25px; }
}

@media (max-width: 768px) {
    .luxury-booking-card-hp { border-radius: 20px; }
}

/* ===============================
   FLAG CAROUSEL DOT DESIGN
================================== */

.flag-carousel .owl-dots {
    text-align: center;
    margin-top: 35px;
}

.flag-carousel .owl-dot {
    display: inline-block;
    margin: 0 6px;
}

.flag-carousel .owl-dot span {
    width: 14px;
    height: 14px;
    border-radius: 50px;
    background: #d7d7d7;
    display: block;
    position: relative;
    transition: all 0.35s ease;
    border: 2px solid transparent;
}

/* Hover Effect */
.flag-carousel .owl-dot:hover span {
    background: #0cacee;
    transform: scale(1.1);
}

/* Active Dot */
.flag-carousel .owl-dot.active span {
    width: 38px;
    border-radius: 50px;
    background: linear-gradient(135deg, #0cacee 0%, #ea1b24 100%);
    box-shadow: 0 5px 15px rgba(12, 172, 238, 0.35);
}



/* Mobile Responsive */
@media (max-width: 767px) {
    .flag-carousel .owl-dots {
        margin-top: 25px;
    }

    .flag-carousel .owl-dot span {
        width: 12px;
        height: 12px;
    }

    .flag-carousel .owl-dot.active span {
        width: 30px;
    }
}

