/* 
   HealthMark - Custom Minimalist Healthcare UI Stylesheet
   Theme: Burgundy/Maroon & Warm Cream
*/

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

:root {
    /* Color Palette */
    --primary: #800020;
    /* Deep Maroon/Burgundy */
    --primary-rgb: 128, 0, 32;
    --primary-light: #9c1c38;
    /* Slightly lighter maroon for hover state */
    --primary-dark: #5c0016;
    /* Dark maroon */
    --accent: #c18c94;
    /* Soft Rose Accent */
    --accent-light: #faeef0;
    /* Very light rose */

    --bg-color: #fcfaf7;
    /* Warm Cream Base */
    --bg-color-alt: #f4ede2;
    /* Slightly darker cream for contrast */
    --white: #ffffff;
    --dark: #2d2224;
    /* Soft Charcoal for readability */
    --dark-muted: #6e5f61;
    /* Muted text color */

    /* Minimalist Shadows & Borders */
    --nm-shadow-dark: rgba(128, 0, 32, 0.04);
    --nm-shadow-light: transparent;
    --nm-shadow-dark-intense: rgba(128, 0, 32, 0.08);

    --nm-flat: 0 4px 15px var(--nm-shadow-dark);
    --nm-flat-sm: 0 2px 8px var(--nm-shadow-dark);
    --nm-flat-lg: 0 8px 24px var(--nm-shadow-dark-intense);
    --nm-inset: 0 0 0 transparent;
    --nm-inset-sm: 0 0 0 transparent;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Base Styles */
body {
    background-color: var(--bg-color);
    color: var(--dark);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
}

p,
span,
li,
a,
button,
input,
select,
textarea {
    font-family: var(--font-body);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--primary-light);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 5px;
    border: 2px solid var(--bg-color);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* Minimalist Utilities */
.nm-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(128, 0, 32, 0.03);
    border: 1px solid rgba(128, 0, 32, 0.08);
    transition: var(--transition-smooth);
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.nm-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(128, 0, 32, 0.08);
    border-color: rgba(128, 0, 32, 0.15);
}

.nm-card-inset {
    background: var(--bg-color-alt);
    border-radius: 12px;
    border: 1px solid rgba(128, 0, 32, 0.05);
    padding: 24px;
}

.nm-btn {
    background: transparent;
    color: var(--primary);
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 30px;
    border: 1.5px solid var(--primary);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.nm-btn:hover {
    background: var(--primary);
    color: var(--white) !important;
    box-shadow: 0 4px 12px rgba(128, 0, 32, 0.15);
    transform: translateY(-1px);
}

.nm-btn:active {
    transform: translateY(1px);
}

.nm-btn-primary {
    background: var(--primary);
    color: var(--white) !important;
    font-weight: 500;
    padding: 12px 28px;
    border-radius: 30px;
    border: none;
    box-shadow: 0 4px 12px rgba(128, 0, 32, 0.15);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.nm-btn-primary:hover {
    background: var(--primary-light);
    box-shadow: 0 6px 16px rgba(128, 0, 32, 0.25);
    transform: translateY(-2px);
}

.nm-btn-primary:active {
    transform: translateY(1px);
}

.nm-btn-whatsapp {
    background: #25d366;
    color: var(--white) !important;
    font-weight: 500;
    padding: 12px 28px;
    border-radius: 30px;
    border: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.15);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.nm-btn-whatsapp:hover {
    background: #20ba59;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.25);
    transform: translateY(-2px);
}

.nm-input {
    background: var(--white);
    border: 1px solid rgba(128, 0, 32, 0.15);
    border-radius: 8px;
    padding: 12px 18px;
    color: var(--dark);
    transition: var(--transition-smooth);
    width: 100%;
}

.nm-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.08);
}

/* Header & Navigation */
.top-bar {
    background: var(--bg-color-alt);
    font-size: 0.85rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(128, 0, 32, 0.05);
}

.top-bar a {
    color: var(--dark-muted);
}

.top-bar a:hover {
    color: var(--primary);
}

.navbar {
    padding: 0;
    transition: var(--transition-smooth);
}

.main-red-navbar {
    background-color: var(--primary) !important;
    border-bottom: none;
    box-shadow: 0 4px 15px rgba(128, 0, 32, 0.12);
}

.navbar.scrolled {
    box-shadow: 0 10px 30px rgba(128, 0, 32, 0.15);
    background: var(--primary) !important;
}

.navbar-brand img {
    height: 40px;
    transition: var(--transition-smooth);
}

.navbar-brand span {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-left: 8px;
    vertical-align: middle;
}

.main-red-navbar .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 18px 16px !important;
    transition: var(--transition-smooth);
}

.main-red-navbar .nav-link i {
    font-size: 0.95rem;
    opacity: 0.85;
    transition: var(--transition-smooth);
}

.main-red-navbar .nav-link:hover {
    color: #ffffff !important;
}

.main-red-navbar .nav-link:hover i {
    color: #ffffff !important;
    opacity: 1;
}

.main-red-navbar .nav-item.active .nav-link {
    color: #ffffff !important;
    font-weight: 700;
}

/* Navbar Dropdown Styles */
.navbar .dropdown-menu {
    border-radius: 12px;
    border: 1px solid rgba(128, 0, 32, 0.08);
    background-color: var(--white);
    padding: 8px;
    margin-top: 10px;
    box-shadow: var(--nm-flat-lg) !important;
    animation: dropdownFadeIn 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar .dropdown-item {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark) !important;
    border-radius: 8px;
    padding: 8px 16px;
    transition: var(--transition-smooth);
}

.navbar .dropdown-item:hover {
    background-color: var(--primary);
    color: var(--white) !important;
}

.navbar .dropdown-item:hover i {
    color: var(--white) !important;
}

/* Hero Section */
.hero-section {
    padding: 80px 0 100px 0;
    position: relative;
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-color-alt) 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(128, 0, 32, 0.04) 0%, rgba(252, 250, 247, 0) 70%);
    z-index: 1;
    border-radius: 50%;
}

.hero-tagline {
    background: var(--bg-color);
    box-shadow: var(--nm-inset-sm);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--primary-light);
    position: relative;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--dark-muted);
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-stats-badge {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-color);
    box-shadow: var(--nm-flat-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.95rem;
}

.hero-stat-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
}

.hero-image-wrapper {
    position: relative;
    padding: 20px;
    z-index: 2;
}

.hero-image-container {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(128, 0, 32, 0.08);
    overflow: hidden;
    border: 1px solid rgba(128, 0, 32, 0.1);
    position: relative;
}

.hero-image-container img {
    width: 100%;
    display: block;
    transition: var(--transition-smooth);
}

.hero-image-container:hover img {
    transform: scale(1.03);
}

/* Floating Cards in Hero */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: 0 8px 24px rgba(128, 0, 32, 0.06);
    border: 1px solid rgba(128, 0, 32, 0.08);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
    animation: float 4s ease-in-out infinite alternate;
}

.floating-card-1 {
    top: 15%;
    left: -5%;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 20%;
    right: -5%;
    animation-delay: 1.5s;
}

.floating-card-3 {
    bottom: 5%;
    left: 10%;
    animation-delay: 0.7s;
}

.floating-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.floating-card-2 .floating-icon {
    background: #25d366;
    /* WhatsApp color */
}

.floating-card-3 .floating-icon {
    background: var(--accent);
}

.floating-card-content h5 {
    font-size: 0.95rem;
    margin: 0;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-body);
}

.floating-card-content p {
    font-size: 0.75rem;
    margin: 0;
    color: var(--dark-muted);
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    100% {
        transform: translateY(-10px) rotate(1deg);
    }
}

/* Why HealthMark Section */
.section-title-wrapper {
    margin-bottom: 50px;
    text-align: center;
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 25%;
    width: 50%;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.section-desc {
    color: var(--dark-muted);
    max-width: 600px;
    margin: 0 auto;
}

.why-card {
    height: 100%;
}

.why-icon-container {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--bg-color-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary);
    font-size: 1.5rem;
    border: 1px solid rgba(128, 0, 32, 0.08);
}

.why-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    font-family: var(--font-body);
}

.why-card p {
    font-size: 0.9rem;
    color: var(--dark-muted);
    margin: 0;
}

/* Popular Tests Grid */
.test-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.test-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.test-badge {
    background: var(--bg-color-alt);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    border: 1px solid rgba(128, 0, 32, 0.08);
}

.test-title {
    font-size: 1.35rem;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.test-meta {
    font-size: 0.8rem;
    color: var(--dark-muted);
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.test-meta span i {
    color: var(--primary);
    margin-right: 4px;
}

.test-parameters {
    font-size: 0.85rem;
    background: rgba(128, 0, 32, 0.03);
    border-radius: 10px;
    padding: 10px 15px;
    margin-bottom: 20px;
    color: var(--dark);
    border: 1px dashed rgba(128, 0, 32, 0.1);
}

.test-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(128, 0, 32, 0.05);
    padding-top: 15px;
    margin-top: auto;
}

.price-tag {
    line-height: 1;
}

.actual-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}

.original-price {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: var(--dark-muted);
    margin-left: 5px;
}

.discount-badge {
    background: var(--accent);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: middle;
}

/* Health Packages */
.package-card {
    border: 2px solid transparent;
}

.package-card.recommended {
    border-color: var(--accent);
    transform: scale(1.02);
}

.package-card.recommended:hover {
    transform: scale(1.04) translateY(-6px);
}

.rec-label {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 30px;
    transform: rotate(45deg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
}

.package-price-box {
    margin: 25px 0;
    padding: 20px;
    background: var(--bg-color-alt);
    border: 1px solid rgba(128, 0, 32, 0.08);
    border-radius: 12px;
    text-align: center;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.package-features li {
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
}

.package-features li i {
    color: #25d366;
}

/* Home Collection CTA section */
.home-collection-section {
    background: linear-gradient(135deg, var(--bg-color-alt) 0%, var(--bg-color) 100%);
    padding: 90px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.home-collection-img {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(128, 0, 32, 0.08);
    border: 1px solid rgba(128, 0, 32, 0.1);
    overflow: hidden;
}

.home-collection-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.step-item-horizontal {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-num-badge {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--nm-flat-sm);
}

.step-content-horizontal h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary);
    font-family: var(--font-body);
}

.step-content-horizontal p {
    font-size: 0.9rem;
    color: var(--dark-muted);
    margin: 0;
}

/* Process Section */
.process-section {
    padding: 90px 0;
}

.process-flow {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 40px;
}

.process-flow::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: var(--accent-light);
    z-index: 1;
}

.process-step {
    flex: 1;
    text-align: center;
    z-index: 2;
    position: relative;
}

.process-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid rgba(128, 0, 32, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition-smooth);
}

.process-step:hover .process-icon {
    transform: scale(1.05);
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(128, 0, 32, 0.15);
}

.process-step h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.process-step p {
    font-size: 0.85rem;
    color: var(--dark-muted);
    max-width: 180px;
    margin: 0 auto;
}

.process-arrow {
    display: none;
}

/* Counters section */
.counter-section {
    background: linear-gradient(rgba(128, 0, 32, 0.92), rgba(92, 0, 22, 0.96)), url('../assets/hero-doctor.png') no-repeat center center/cover;
    background-attachment: fixed;
    color: var(--white);
    padding: 70px 0;
}

.counter-section h2,
.counter-section h3 {
    color: var(--white);
}

.counter-card {
    text-align: center;
    padding: 10px;
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-body);
    margin-bottom: 5px;
    color: var(--accent);
}

.counter-title {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
}

/* Patient Reviews / Testimonials Slider */
.reviews-section {
    padding: 90px 0;
}

.google-rating-summary {
    background: var(--white);
    border-radius: 12px;
    padding: 15px 25px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    border: 1px solid rgba(128, 0, 32, 0.08);
    box-shadow: 0 4px 15px rgba(128, 0, 32, 0.03);
}

.google-logo {
    height: 24px;
}

.stars {
    color: #ffc107;
    font-size: 1.1rem;
}

.review-card {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
    border-radius: var(--border-radius-lg);
    background: var(--white);
    border: 1px solid rgba(128, 0, 32, 0.04);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
.review-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-elevated);
    border-color: rgba(128, 0, 32, 0.12);
}
.review-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    background: #000;
}
.review-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.video-overlay-controls {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 8px;
    z-index: 5;
}
.video-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}
.video-btn:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.review-text {
    font-style: italic;
    color: var(--dark-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(128, 0, 32, 0.05);
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(128, 0, 32, 0.1);
}

.reviewer-info h5 {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0;
    color: var(--primary);
    font-family: var(--font-body);
}

.reviewer-info span {
    font-size: 0.75rem;
    color: var(--dark-muted);
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
}

/* FAQ Section */
.faq-section {
    padding: 90px 0;
    background: var(--bg-color-alt);
}

.accordion-item {
    background-color: var(--white) !important;
    border: 1px solid rgba(128, 0, 32, 0.08) !important;
    margin-bottom: 18px;
    border-radius: 12px !important;
    box-shadow: 0 2px 10px rgba(128, 0, 32, 0.02);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.accordion-button {
    background-color: var(--white) !important;
    color: var(--primary) !important;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 20px 25px !important;
    box-shadow: none !important;
    border: none !important;
    transition: var(--transition-smooth);
}

.accordion-button:not(.collapsed) {
    background-color: var(--bg-color-alt) !important;
}

.accordion-body {
    background-color: var(--white);
    padding: 20px 25px !important;
    font-size: 0.95rem;
    color: var(--dark-muted);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23800020'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

/* Contact & Map Section */
.contact-section {
    padding: 90px 0;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid rgba(128, 0, 32, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
}

.contact-info-text h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    font-family: var(--font-body);
}

.contact-info-text p {
    font-size: 0.9rem;
    color: var(--dark-muted);
    margin: 0;
}

.map-container {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(128, 0, 32, 0.04);
    border-radius: 16px;
    overflow: hidden;
    padding: 10px;
    border: 1px solid rgba(128, 0, 32, 0.08);
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 380px;
    border-radius: 15px;
    border: none;
    display: block;
}

/* Blog Cards Section */
.blog-section {
    padding: 90px 0;
}

.blog-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-img-container {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    border: 1px solid rgba(128, 0, 32, 0.05);
}

.blog-img-container img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-img-container img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(128, 0, 32, 0.9);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
}

.blog-title {
    font-size: 1.25rem;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-desc {
    font-size: 0.9rem;
    color: var(--dark-muted);
    margin-bottom: 20px;
}

.blog-link {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
}

.blog-link:hover {
    color: var(--primary-light);
    gap: 8px;
}

/* Footer styling */
.footer {
    background: linear-gradient(135deg, #4a0012 0%, #800020 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 0 20px 0;
    color: rgba(255, 255, 255, 0.75);
}

.footer-logo img {
    height: 52px;
    margin-bottom: 15px;
    background: var(--white);
    padding: 4px;
    border-radius: 8px;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    vertical-align: middle;
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 25px;
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-smooth);
}

.social-btn:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
    border-color: var(--white);
}

.footer-heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--white);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.footer-links a i {
    font-size: 0.75rem;
    color: #ffcbd5;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-links a:hover i {
    color: var(--white);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.local-seo-links {
    padding: 20px 0;
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
    margin-top: 30px;
}

.local-seo-links h6 {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 12px;
}

.seo-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.seo-tag {
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 5px 12px;
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition-smooth);
}

.seo-tag:hover {
    color: var(--primary);
    border-color: var(--white);
    background: var(--white);
}

/* Modals */
.modal-content {
    background-color: var(--white) !important;
    border-radius: 16px !important;
    border: 1px solid rgba(128, 0, 32, 0.08) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
    padding: 15px;
}

.modal-header {
    border-bottom: 1px solid rgba(128, 0, 32, 0.05) !important;
    padding-bottom: 15px !important;
}

.modal-header .btn-close {
    background: var(--white) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23800020'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat !important;
    border: 1px solid rgba(128, 0, 32, 0.15);
    border-radius: 50%;
    padding: 12px;
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.modal-header .btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
    background-color: var(--bg-color-alt) !important;
}

.modal-title {
    color: var(--primary);
    font-weight: 700;
}

.modal-body {
    padding-top: 25px !important;
}

.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 6px;
}

/* Floating WhatsApp & Call Buttons (Mobile & Desktop sticky) */
.sticky-action-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.sticky-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
}

.sticky-btn-whatsapp {
    background-color: #25d366;
}

.sticky-btn-whatsapp:hover {
    background-color: #20ba59;
    transform: scale(1.1) rotate(15deg);
    color: var(--white);
}

.sticky-btn-call {
    background-color: var(--primary);
}

.sticky-btn-call:hover {
    background-color: var(--primary-light);
    transform: scale(1.1) rotate(-15deg);
    color: var(--white);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-image-wrapper {
        margin-top: 50px;
    }

    .process-flow {
        flex-direction: column;
        gap: 30px;
        margin-top: 30px;
    }

    .process-flow::before {
        display: none;
    }

    .process-step {
        display: flex;
        text-align: left;
        align-items: center;
        gap: 20px;
    }

    .process-icon {
        margin: 0;
    }

    .process-step p {
        margin: 0;
        max-width: 100%;
    }

    .navbar-collapse {
        background: var(--white);
        box-shadow: 0 8px 30px rgba(128, 0, 32, 0.08);
        border-radius: 12px;
        padding: 20px;
        margin-top: 15px;
        border: 1px solid rgba(128, 0, 32, 0.08);
    }

    .sticky-action-buttons {
        bottom: 20px;
        right: 20px;
    }

    .sticky-btn {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }

    .package-card.recommended {
        transform: scale(1);
    }

    .package-card.recommended:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-stats-badge {
        flex-direction: column;
        gap: 15px;
    }

    .section-title {
        font-size: 2rem;
    }

    .floating-card-1 {
        left: -2%;
        top: 5%;
    }

    .floating-card-2 {
        right: -2%;
        bottom: 10%;
    }

    .floating-card-3 {
        display: none;
    }
}

/* --- New Healthians Inspired Sections & UI Upgrades --- */

/* Search Container in Hero */
.search-container-hero {
    position: relative;
    max-width: 550px;
    margin: 25px auto 0 auto;
    z-index: 100;
}

@media (min-width: 992px) {
    .search-container-hero {
        margin: 25px 0 0 0;
    }
}

.nm-input-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--white);
    border: 1px solid rgba(128, 0, 32, 0.15);
    border-radius: 50px;
    padding: 2px 8px;
    transition: var(--transition-smooth);
}

.nm-input-search-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.08);
}

.search-icon {
    position: absolute;
    left: 20px;
    color: var(--primary);
    font-size: 1.1rem;
}

.nm-input-search {
    width: 100%;
    border: none;
    background: transparent;
    padding: 14px 45px 14px 50px;
    outline: none;
    font-size: 0.95rem;
    color: var(--dark);
}

.search-clear-btn {
    position: absolute;
    right: 20px;
    border: none;
    background: transparent;
    color: var(--dark-muted);
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.search-clear-btn:hover {
    color: var(--primary);
}

.search-autocomplete-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    max-height: 320px;
    overflow-y: auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 999;
}

.search-dropdown-item {
    padding: 12px 20px;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    text-align: left;
}

.search-dropdown-item:last-child {
    border-bottom: none;
}

.search-dropdown-item:hover {
    background: var(--accent-light);
}

/* Quick Browse Filter Cards */
.filter-tab-btn {
    background: var(--white);
    color: var(--dark-muted);
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(128, 0, 32, 0.12);
    transition: var(--transition-smooth);
}

.filter-tab-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.filter-tab-btn.active {
    background: var(--primary);
    color: var(--white) !important;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(128, 0, 32, 0.15);
}

.browse-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 15px;
}

@media (min-width: 768px) {
    .browse-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .browse-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.browse-item {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid rgba(128, 0, 32, 0.08);
    padding: 20px 10px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.browse-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(128, 0, 32, 0.06);
    border-color: var(--primary);
}

.browse-item.active {
    border-color: var(--primary);
    background: var(--accent-light);
    color: var(--primary);
}

.browse-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-color-alt);
    border: 1px solid rgba(128, 0, 32, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px auto;
    color: var(--primary);
    font-size: 1.25rem;
    transition: var(--transition-smooth);
}

.browse-item:hover .browse-icon {
    color: var(--primary-light);
    transform: scale(1.05);
}

.browse-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    display: block;
}

/* Active Filter Banner */
.active-filter-banner {
    background: var(--accent-light);
    border: 1px solid rgba(128, 0, 32, 0.1);
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    animation: fadeIn 0.4s ease-in-out;
}

.clear-filter-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.clear-filter-btn:hover {
    background: var(--primary-light);
}

/* Smart Report Section styling */
.smart-report-preview-card {
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.parameter-row {
    transition: var(--transition-smooth);
}

.parameter-row:hover {
    transform: scale(1.02);
}

/* Safety Standards Section styling */
.safety-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* App Mockup positioning */
.app-mockup-wrapper {
    perspective: 1000px;
}

.app-screen-card {
    transition: var(--transition-smooth);
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.12);
}

.app-screen-card:hover {
    transform: rotateY(-10deg) rotateX(5deg);
}

/* General Layout adjustments */
.bg-light-section {
    background: var(--bg-color-alt);
}

/* --- Premium UI/UX Upgrades & Animations --- */

/* Floating Frosted Glass Navbar */
.navbar {
    background: rgba(252, 250, 247, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(128, 0, 32, 0.05);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(252, 250, 247, 0.94);
    box-shadow: 0 10px 30px rgba(128, 0, 32, 0.08);
    border-bottom: 1px solid rgba(128, 0, 32, 0.1);
}

/* Doctor Ambient Backdrop Glow */
.doctor-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(128, 0, 32, 0.12) 0%, rgba(193, 140, 148, 0.04) 50%, transparent 75%);
    z-index: 1;
    pointer-events: none;
    filter: blur(35px);
    border-radius: 50%;
}

/* Search Chips */
.search-chips {
    margin-top: 12px;
}

.search-chip {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border: 1.5px solid rgba(128, 0, 32, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-block;
}

.search-chip:hover {
    background: var(--primary);
    color: var(--white) !important;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(128, 0, 32, 0.15);
}

/* Button Pulse Animation */
.btn-pulse {
    animation: pulse-ring 2.2s infinite;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(128, 0, 32, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(128, 0, 32, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(128, 0, 32, 0);
    }
}

/* Browse Item pricing and cue colors */
.browse-price-tag {
    font-size: 0.72rem;
    color: var(--primary);
    margin-top: 5px;
    font-weight: 700;
    display: block;
    opacity: 0.85;
}

/* Tactile cue border highlight for browse filter items */
.browse-item {
    position: relative;
    overflow: hidden;
}

.browse-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    transition: var(--transition-smooth);
}

/* Risk factors styling */
.browse-item[data-filter="diabetes"]::before {
    background: #dc3545;
}

.browse-item[data-filter="diabetes"].active,
.browse-item[data-filter="diabetes"]:hover {
    border-color: #dc3545;
    background: rgba(220, 53, 69, 0.03);
}

.browse-item[data-filter="diabetes"] .browse-icon {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.06);
}

.browse-item[data-filter="thyroid"]::before {
    background: #0dcaf0;
}

.browse-item[data-filter="thyroid"].active,
.browse-item[data-filter="thyroid"]:hover {
    border-color: #0dcaf0;
    background: rgba(13, 202, 240, 0.03);
}

.browse-item[data-filter="thyroid"] .browse-icon {
    color: #0dcaf0;
    background: rgba(13, 202, 240, 0.06);
}

.browse-item[data-filter="heart"]::before {
    background: #e83e8c;
}

.browse-item[data-filter="heart"].active,
.browse-item[data-filter="heart"]:hover {
    border-color: #e83e8c;
    background: rgba(232, 62, 140, 0.03);
}

.browse-item[data-filter="heart"] .browse-icon {
    color: #e83e8c;
    background: rgba(232, 62, 140, 0.06);
}

.browse-item[data-filter="liver"]::before {
    background: #28a745;
}

.browse-item[data-filter="liver"].active,
.browse-item[data-filter="liver"]:hover {
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.03);
}

.browse-item[data-filter="liver"] .browse-icon {
    color: #28a745;
    background: rgba(40, 167, 69, 0.06);
}

.browse-item[data-filter="kidney"]::before {
    background: #fd7e14;
}

.browse-item[data-filter="kidney"].active,
.browse-item[data-filter="kidney"]:hover {
    border-color: #fd7e14;
    background: rgba(253, 126, 20, 0.03);
}

.browse-item[data-filter="kidney"] .browse-icon {
    color: #fd7e14;
    background: rgba(253, 126, 20, 0.06);
}

.browse-item[data-filter="bone"]::before {
    background: #6f42c1;
}

.browse-item[data-filter="bone"].active,
.browse-item[data-filter="bone"]:hover {
    border-color: #6f42c1;
    background: rgba(111, 66, 193, 0.03);
}

.browse-item[data-filter="bone"] .browse-icon {
    color: #6f42c1;
    background: rgba(111, 66, 193, 0.06);
}

/* Habits category highlight */
.browse-item[data-filter="obesity"]::before {
    background: #fd7e14;
}

.browse-item[data-filter="obesity"].active,
.browse-item[data-filter="obesity"]:hover {
    border-color: #fd7e14;
    background: rgba(253, 126, 20, 0.03);
}

.browse-item[data-filter="obesity"] .browse-icon {
    color: #fd7e14;
    background: rgba(253, 126, 20, 0.06);
}

.browse-item[data-filter="fatigue"]::before {
    background: #6f42c1;
}

.browse-item[data-filter="fatigue"].active,
.browse-item[data-filter="fatigue"]:hover {
    border-color: #6f42c1;
    background: rgba(111, 66, 193, 0.03);
}

.browse-item[data-filter="fatigue"] .browse-icon {
    color: #6f42c1;
    background: rgba(111, 66, 193, 0.06);
}

.browse-item[data-filter="alcohol"]::before {
    background: #dc3545;
}

.browse-item[data-filter="alcohol"].active,
.browse-item[data-filter="alcohol"]:hover {
    border-color: #dc3545;
    background: rgba(220, 53, 69, 0.03);
}

.browse-item[data-filter="alcohol"] .browse-icon {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.06);
}

.browse-item[data-filter="smoking"]::before {
    background: #343a40;
}

.browse-item[data-filter="smoking"].active,
.browse-item[data-filter="smoking"]:hover {
    border-color: #343a40;
    background: rgba(52, 58, 64, 0.03);
}

.browse-item[data-filter="smoking"] .browse-icon {
    color: #343a40;
    background: rgba(52, 58, 64, 0.06);
}

.browse-item[data-filter="fitness"]::before {
    background: #28a745;
}

.browse-item[data-filter="fitness"].active,
.browse-item[data-filter="fitness"]:hover {
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.03);
}

.browse-item[data-filter="fitness"] .browse-icon {
    color: #28a745;
    background: rgba(40, 167, 69, 0.06);
}

.browse-item[data-filter="elderly"]::before {
    background: #0dcaf0;
}

.browse-item[data-filter="elderly"].active,
.browse-item[data-filter="elderly"]:hover {
    border-color: #0dcaf0;
    background: rgba(13, 202, 240, 0.03);
}

.browse-item[data-filter="elderly"] .browse-icon {
    color: #0dcaf0;
    background: rgba(13, 202, 240, 0.06);
}


/* Report Modal Styles */
.report-tab-btn {
    background: var(--bg-color-alt);
    color: var(--dark-muted);
    border: 1.5px solid rgba(128, 0, 32, 0.12);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.report-tab-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.report-tab-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 10px rgba(128, 0, 32, 0.15);
}

.clinical-report-container {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.indicator-bar-wrapper {
    position: relative;
    height: 12px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: visible;
    /* so marker is fully visible */
    margin: 15px 0 10px 0;
}

.indicator-bar {
    position: absolute;
    height: 100%;
    border-radius: 10px;
}

.indicator-bar.bg-success {
    background-color: #28a745 !important;
}

.indicator-bar.bg-warning {
    background-color: #ffc107 !important;
}

.indicator-bar.bg-danger {
    background-color: #dc3545 !important;
}

.indicator-bar-wrapper .marker {
    position: absolute;
    top: -5px;
    width: 22px;
    height: 22px;
    background: var(--primary);
    border: 3.5px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    z-index: 10;
    transform: translateX(-50%);
    transition: left 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- Hero Swiper Slider Custom Styling --- */
.hero-swiper {
    position: relative;
    padding-bottom: 50px !important;
    overflow: hidden;
}

.hero-swiper .swiper-slide {
    opacity: 0 !important;
    transition: opacity 0.6s ease-in-out;
}

.hero-swiper .swiper-slide-active {
    opacity: 1 !important;
}

.hero-swiper-pagination {
    bottom: 10px !important;
}

.hero-swiper-pagination .swiper-pagination-bullet {
    background: var(--dark-muted) !important;
    opacity: 0.3;
    width: 10px;
    height: 10px;
    margin: 0 6px !important;
    transition: var(--transition-smooth);
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--primary) !important;
    opacity: 1;
    width: 28px;
    border-radius: 5px;
}

.hero-swiper-next,
.hero-swiper-prev {
    color: var(--primary) !important;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(128, 0, 32, 0.12);
    box-shadow: 0 8px 24px rgba(128, 0, 32, 0.08);
    transition: var(--transition-smooth);
    top: 50%;
    transform: translateY(-50%);
}

.hero-swiper-next:after,
.hero-swiper-prev:after {
    font-size: 1.15rem !important;
    font-weight: 800;
}

.hero-swiper-next:hover,
.hero-swiper-prev:hover {
    background: var(--primary);
    color: var(--white) !important;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 8px 24px rgba(128, 0, 32, 0.25);
}

.hero-swiper-prev {
    left: 10px !important;
}

.hero-swiper-next {
    right: 10px !important;
}

@media (max-width: 991.98px) {

    .hero-swiper-next,
    .hero-swiper-prev {
        display: none !important;
    }
}

/* Gold Package Pass Card */
.gold-package-pass-card {
    transition: var(--transition-smooth);
    position: relative;
}

.gold-package-pass-card:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 0 25px 50px rgba(128, 0, 32, 0.25) !important;
}

@keyframes shine {
    0% {
        transform: translate(-30%, -30%) rotate(0deg);
    }

    100% {
        transform: translate(30%, 30%) rotate(360deg);
    }
}

/* Category Filters & Popular Swiper */
.popular-filter-btn {
    background: var(--white);
    color: var(--primary);
    border: 1px solid rgba(128, 0, 32, 0.15);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    cursor: pointer;
}

.popular-filter-btn:hover {
    background: rgba(128, 0, 32, 0.05);
    transform: translateY(-2px);
}

.popular-filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(128, 0, 32, 0.25);
}

.popular-swiper-container .swiper-button-next,
.popular-swiper-container .swiper-button-prev {
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 1px solid rgba(128, 0, 32, 0.1);
    border-radius: 50%;
    color: var(--primary) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.popular-swiper-container .swiper-button-next:after,
.popular-swiper-container .swiper-button-prev:after {
    font-size: 1.1rem;
    font-weight: 900;
}

.popular-swiper-container .swiper-button-next:hover,
.popular-swiper-container .swiper-button-prev:hover {
    background: var(--primary);
    color: var(--white) !important;
    transform: scale(1.05);
}

.popular-swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--primary);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.popular-swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 20px;
    border-radius: 4px;
}

/* Redesigned Health Packages */
.package-card {
    border-radius: 20px !important;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: var(--white);
    padding: 30px 24px !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(128, 0, 32, 0.08);
}

.package-header-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.package-features-list li {
    font-size: 0.88rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
}

.package-features-list li i {
    font-size: 1rem;
}

/* Theme Accents for Packages */
.bg-secondary-light {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

.bg-warning-light {
    background: rgba(212, 175, 55, 0.15);
    color: #b8860b;
}

.bg-primary-light {
    background: rgba(128, 0, 32, 0.08);
    color: var(--primary);
}

.bg-pink-light {
    background: rgba(214, 51, 132, 0.1);
    color: #d63384;
}

.bg-teal-light {
    background: rgba(13, 202, 240, 0.1);
    color: #0aa2c0;
}

.bg-indigo-light {
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.package-card-silver {
    border-top: 5px solid #6c757d;
}

.package-card-gold {
    border-top: 5px solid var(--primary);
    background: linear-gradient(180deg, var(--white) 0%, rgba(128, 0, 32, 0.02) 100%);
}

.package-card-executive {
    border-top: 5px solid var(--primary);
    background: linear-gradient(180deg, var(--white) 0%, rgba(128, 0, 32, 0.02) 100%);
}

.package-card-women {
    border-top: 5px solid #d63384;
}

.package-card-senior {
    border-top: 5px solid #0dcaf0;
}

.package-card-corporate {
    border-top: 5px solid #0d6efd;
}

/* Gold Package Ribbon / Tag */
.recommended-card {
    border: 2px solid var(--primary) !important;
    box-shadow: 0 10px 35px rgba(128, 0, 32, 0.12) !important;
}

.rec-card-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, #4A0012 100%);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(128, 0, 32, 0.3);
}

.package-pricing-detail {
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
    margin-top: 25px;
}

.package-actual-price {
    font-family: var(--font-title);
}

.bg-success-light {
    background: rgba(25, 135, 84, 0.1);
}

.bg-danger-light {
    background: rgba(220, 53, 69, 0.1);
}





/* ==========================================================================
   Premium Redesigned Package Cards
   ========================================================================== */
.premium-package-card {
    background: var(--white);
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    min-height: 590px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-package-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(128, 0, 32, 0.12);
    border-color: rgba(128, 0, 32, 0.2);
}

.premium-package-card .package-header {
    padding: 32px 30px 24px 30px;
    position: relative;
}

.premium-package-card .package-body {
    padding: 24px 30px;
    flex-grow: 1;
}

.premium-package-card .package-footer {
    padding: 24px 30px 32px 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(0, 0, 0, 0.01);
}

/* Tiers Gradients */
.premium-package-card .package-header {
    background: linear-gradient(180deg, rgba(128, 0, 32, 0.06) 0%, rgba(255, 255, 255, 0) 100%);
    border-bottom: 1px solid rgba(128, 0, 32, 0.08);
}

.gold-theme {
    border: 2px solid var(--primary) !important;
    box-shadow: 0 15px 45px rgba(128, 0, 32, 0.08) !important;
}

.gold-theme:hover {
    box-shadow: 0 30px 60px rgba(128, 0, 32, 0.18) !important;
}

/* Tags & Titles */
.package-tag {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
    color: var(--primary);
}

.package-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.package-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0;
}

.package-badge {
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 800;
    background: rgba(128, 0, 32, 0.1);
    color: var(--primary);
}

.package-subtitle {
    font-size: 0.88rem;
    color: var(--dark-muted);
    margin-top: 5px;
    margin-bottom: 0;
}

/* Parameters */
.package-parameters {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dark-muted);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
}

/* Bullets */
.package-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-bullets li {
    font-size: 0.95rem;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    color: #374151;
}

.check-bullet {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 0.72rem;
    flex-shrink: 0;
    background: rgba(128, 0, 32, 0.1);
    color: var(--primary);
}

/* Pricing */
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.price-figures {
    display: inline-flex;
    align-items: baseline;
}

.price-figures .currency {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-right: 2px;
}

.price-figures .amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    font-family: var(--font-title);
}

.price-figures .original {
    font-size: 0.95rem;
    text-decoration: line-through;
    color: var(--dark-muted);
    margin-left: 8px;
}

.discount-percent {
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
}

/* Premium CTAs */
.premium-package-btn {
    border-radius: 50px;
    padding: 14px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(128, 0, 32, 0.2);
}

.premium-package-btn:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(128, 0, 32, 0.3);
}

/* Gold Badge Ribbon */
.gold-ribbon {
    position: absolute;
    top: 18px;
    right: -32px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 30px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    z-index: 5;
}

/* ==========================================
   PREMIUM SEO LANDING PAGES STYLING
========================================== */

.landing-header-section {
    background: linear-gradient(135deg, var(--accent-light) 0%, rgba(252, 250, 247, 0.9) 100%);
    border-bottom: 1px solid rgba(128, 0, 32, 0.08);
    position: relative;
    overflow: hidden;
}

.landing-header-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(128, 0, 32, 0.03) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.landing-badge {
    background: rgba(128, 0, 32, 0.08);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-block;
    border: 1px solid rgba(128, 0, 32, 0.15);
}

.landing-price-box {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(128, 0, 32, 0.08);
    box-shadow: 0 10px 30px rgba(128, 0, 32, 0.04);
    padding: 24px;
    position: relative;
}

.landing-price-tag {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.landing-price-label {
    font-size: 0.85rem;
    color: var(--dark-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-pill {
    background: var(--white);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(128, 0, 32, 0.02);
    border: 1px solid rgba(128, 0, 32, 0.05);
    transition: var(--transition-smooth);
}

.detail-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(128, 0, 32, 0.06);
    border-color: rgba(128, 0, 32, 0.12);
}

.detail-pill-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: var(--accent-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.detail-pill-info h6 {
    margin: 0;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dark-muted);
}

.detail-pill-info strong {
    font-size: 1rem;
    color: var(--dark);
}

/* Parameters Covered Section */
.param-title {
    font-size: 1.8rem;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.param-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.param-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.param-card {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid rgba(128, 0, 32, 0.06);
    padding: 20px;
    box-shadow: 0 4px 15px rgba(128, 0, 32, 0.02);
    transition: var(--transition-smooth);
}

.param-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(128, 0, 32, 0.08);
    border-color: rgba(128, 0, 32, 0.15);
}

.param-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.param-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.param-card-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: var(--dark);
}

.param-card-desc {
    font-size: 0.8rem;
    color: var(--dark-muted);
    margin: 0;
    line-height: 1.4;
}

/* Preparation Box */
.prep-info-box {
    background: var(--accent-light);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(128, 0, 32, 0.1);
}

.prep-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 16px;
}

.prep-info-item:last-child {
    margin-bottom: 0;
}

.prep-info-icon {
    font-size: 1.2rem;
    color: var(--primary);
    margin-top: 3px;
}

.prep-info-text strong {
    font-size: 0.95rem;
    color: var(--dark);
    display: block;
    margin-bottom: 2px;
}

.prep-info-text p {
    font-size: 0.85rem;
    color: var(--dark-muted);
    margin: 0;
}

/* Booking Card Premium */
.booking-card-premium {
    background: var(--white);
    border-radius: 20px;
    border: 1.5px solid var(--primary);
    box-shadow: 0 15px 40px rgba(128, 0, 32, 0.1);
    padding: 30px;
}

.booking-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 10px;
}

.booking-assurance {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(128, 0, 32, 0.08);
}

.assurance-item {
    font-size: 0.72rem;
    color: var(--dark-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.assurance-item i {
    color: #198754;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding-left: 30px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: rgba(128, 0, 32, 0.1);
}

.process-step-item {
    position: relative;
    margin-bottom: 24px;
}

.process-step-item:last-child {
    margin-bottom: 0;
}

.process-step-dot {
    position: absolute;
    left: -30px;
    top: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--white);
    border: 4px solid var(--primary);
    z-index: 2;
}

.process-step-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}

.process-step-desc {
    font-size: 0.85rem;
    color: var(--dark-muted);
    margin: 0;
}

/* Raipur coverage list */
.coverage-badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.coverage-badge {
    background: var(--white);
    border: 1px solid rgba(128, 0, 32, 0.08);
    color: var(--dark-muted);
    font-size: 0.82rem;
    padding: 6px 14px;
    border-radius: 30px;
    transition: var(--transition-smooth);
}

.coverage-badge:hover {
    background: var(--accent-light);
    color: var(--primary);
    border-color: rgba(128, 0, 32, 0.2);
    transform: translateY(-1px);
}

/* Fix to remove any white line/border/underline on hover and active states of navbar links */
.main-red-navbar .nav-link,
.main-red-navbar .nav-link:hover,
.main-red-navbar .nav-link:focus,
.main-red-navbar .nav-item.active .nav-link,
.main-red-navbar .dropdown-menu .dropdown-item,
.main-red-navbar .dropdown-menu .dropdown-item:hover {
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Subpage Header Banner Styling */
.subpage-header-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 70px 0;
    color: var(--white) !important;
    margin-bottom: 0;
}

.subpage-header-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(100, 5, 25, 0.9) 0%, rgba(30, 2, 8, 0.85) 100%);
    z-index: 1;
}

.subpage-header-banner .container {
    position: relative;
    z-index: 2;
}

.subpage-header-banner h1,
.subpage-header-banner .brand-heading {
    color: var(--white) !important;
    font-weight: 800;
}

.subpage-header-banner p.lead,
.subpage-header-banner .lead,
.subpage-header-banner .text-muted {
    color: rgba(255, 255, 255, 0.85) !important;
}

.subpage-breadcrumb {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 12px;
}

.subpage-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 500;
}

.subpage-breadcrumb .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.6) !important;
}