/* ------------------------------------------------------------
   Global Styles & Variables
   ------------------------------------------------------------ */
:root {
    --color-primary: #800000;
    --color-accent: #ff4d4d;
    --color-warm: #ff7a00;
    --color-gold: #ffb400;
    --color-bg: #ffffff;
    --color-light-grey: #f7f4f1;
    --color-text: #333333;
    --gradient-brand: linear-gradient(135deg, #800000 0%, #b8001f 35%, #ff4d4d 60%, #ff7a00 82%, #ffb400 100%);
    --gradient-cta: linear-gradient(135deg, #800000 0%, #ff4d4d 100%);
    --gradient-warm: linear-gradient(135deg, #ff7a00 0%, #ffb400 100%);
    --font-sans: 'Inter', sans-serif;
    --radius: 10px;
    --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 6px 18px rgba(128, 0, 0, 0.14);
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ------------------------------------------------------------
   Header
   ------------------------------------------------------------ */
.site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    z-index: 1000;
    border-bottom: 1px solid #ececec;
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 4px 14px rgba(128, 0, 0, 0.08);
    border-bottom-color: transparent;
}

.brand-logo {
    height: 44px;
    width: auto;
    display: block;
}

.brand-logo-hero {
    height: 110px;
    width: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.25));
}

.footer-brand .brand-logo {
    height: 40px;
    filter: brightness(1.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
}

.nav a:hover {
    color: var(--color-primary);
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.primary-cta {
    background: var(--color-primary);
    background-image: var(--gradient-cta);
    color: #fff;
    box-shadow: 0 4px 14px rgba(128, 0, 0, 0.28);
    border: none;
}

.primary-cta:hover {
    background-image: linear-gradient(135deg, #b8001f 0%, #ff7a00 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.35);
}

.secondary-cta {
    background: #fff;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.secondary-cta:hover {
    background: var(--color-primary);
    color: #fff;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ------------------------------------------------------------
   Hero Section
   ------------------------------------------------------------ */
.hero {
    position: relative;
    min-height: 86vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    background: var(--gradient-brand);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.10) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 180, 0, 0.18) 0%, transparent 45%),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0 2px, transparent 2px 24px);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.logo-portal {
    margin: 0 auto 2rem;
    width: 150px;
    height: 150px;
    position: relative;
}

.hexagon {
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 3s infinite;
}

.hexagon img {
    width: 70%;
    height: auto;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(128, 0, 0, 0.4);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(128, 0, 0, 0.0);
    }
}

.hero-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ------------------------------------------------------------
   Services Section
   ------------------------------------------------------------ */
.services {
    padding: 4rem 0;
    background: var(--color-light-grey);
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: var(--color-primary);
    position: relative;
    padding-bottom: 0.75rem;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    border-radius: 2px;
    background: var(--gradient-warm);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-card .icon {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

/* ------------------------------------------------------------
   Packages Section v2 — Premium Dark Redesign
   ------------------------------------------------------------ */
.packages {
    padding: 5rem 0 4rem;
    background: linear-gradient(160deg, #0d0415 0%, #1a0808 55%, #0d0415 100%);
    position: relative;
    overflow: hidden;
}

.packages::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 10% 20%, rgba(128, 0, 0, 0.22) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(255, 122, 0, 0.14) 0%, transparent 50%),
        repeating-linear-gradient(45deg, rgba(255,255,255,0.015) 0 1px, transparent 1px 28px);
    pointer-events: none;
}

.packages .container { position: relative; z-index: 1; }

.pkg-header-wrap { text-align: center; margin-bottom: 3rem; }

.pkg-eyebrow {
    display: inline-block;
    background: rgba(255, 122, 0, 0.12);
    color: var(--color-warm);
    border: 1px solid rgba(255, 122, 0, 0.35);
    padding: 0.3rem 1rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}

.pkg-title-light { color: #fff !important; }
.pkg-sub-light { color: rgba(255,255,255,0.65) !important; }

.pkg-cards-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    justify-items: center;
    align-items: start;
}

/* Card base */
.pkg-card-new {
    background: #fff;
    border-radius: 20px;
    max-width: 420px;
    width: 100%;
    position: relative;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: visible;
}

.pkg-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 36px 80px rgba(0, 0, 0, 0.45);
}

/* Empower elevated */
.pkg-empower-new {
    background: linear-gradient(#fff, #fff) padding-box,
                var(--gradient-brand) border-box;
    border: 2px solid transparent;
    transform: scale(1.03);
}

.pkg-empower-new:hover { transform: scale(1.03) translateY(-10px); }

/* Ribbon badge */
.pkg-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.3rem 1.35rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 5;
}

.impact-badge {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.5);
}

.empower-badge {
    background: var(--gradient-warm);
    color: #fff;
    box-shadow: 0 4px 14px rgba(255, 122, 0, 0.5);
}

/* Card top section */
.pkg-card-top {
    background: linear-gradient(160deg, #f5f3ff 0%, #fff8f0 100%);
    border-radius: 20px 20px 0 0;
    padding: 2.75rem 2rem 1.75rem;
    text-align: center;
}

.empower-top {
    background: linear-gradient(160deg, #fff5f5 0%, #fff8f0 100%);
}

/* Plan icon */
.pkg-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.impact-icon {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.35);
}

.empower-icon {
    background: var(--gradient-brand);
    color: #fff;
    box-shadow: 0 6px 20px rgba(128, 0, 0, 0.35);
}

.pkg-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: 0.04em;
    margin-bottom: 1.25rem;
}

/* Price circle */
.pkg-price-circle {
    width: 148px;
    height: 148px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.7rem;
    color: #fff;
    animation: priceBeat 3.5s ease-in-out infinite;
}

.pkg-price-circle.impact-circle {
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    box-shadow: 0 12px 32px rgba(6, 182, 212, 0.45), 0 0 0 10px rgba(6, 182, 212, 0.1);
}

.pkg-price-circle.empower-circle {
    background: var(--gradient-brand);
    box-shadow: 0 12px 32px rgba(128, 0, 0, 0.4), 0 0 0 10px rgba(128, 0, 0, 0.08);
}

@keyframes priceBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pkg-rupee {
    font-size: 1.1rem;
    font-weight: 700;
    opacity: 0.9;
    line-height: 1;
    margin-top: 6px;
}

.pkg-amount {
    font-size: 1.9rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.pkg-gst {
    color: #777;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.pkg-tagline {
    font-size: 0.82rem;
    color: #999;
    font-style: italic;
}

/* Features list */
.pkg-features-new {
    list-style: none;
    padding: 1.25rem 1.75rem 0.5rem;
    border-top: 1px solid #f0f0f0;
}

.pkg-features-new li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.44rem 0;
    font-size: 0.875rem;
    color: #444;
    border-bottom: 1px solid #fafafa;
}

.pkg-features-new li:last-child { border-bottom: none; }

/* Feature icon bubble */
.pfi {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #22c55e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.62rem;
    margin-top: 1px;
}

.pfi-gold { background: var(--gradient-warm); }

/* Highlighted rows */
.pkg-highlight {
    background: linear-gradient(90deg, rgba(255, 122, 0, 0.06), transparent);
    border-radius: 6px;
    margin-left: -0.5rem;
    padding-left: 0.5rem !important;
}

.pkg-more {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    flex-shrink: 0;
    background: var(--gradient-warm);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    padding: 0.1rem 0.45rem;
    border-radius: 999px;
    letter-spacing: 0.03em;
}

.pkg-note {
    font-size: 0.74rem;
    color: #999;
    font-weight: 400;
}

/* CTA */
.pkg-cta-wrap {
    padding: 1.25rem 1.75rem 1.75rem;
}

.pkg-cta-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.9rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.impact-cta {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.35);
}

.impact-cta:hover {
    background: linear-gradient(135deg, #4338ca, #6d28d9);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(79, 70, 229, 0.45);
}

.empower-cta {
    background: var(--gradient-brand);
    box-shadow: 0 6px 20px rgba(128, 0, 0, 0.3);
}

.empower-cta:hover {
    background: linear-gradient(135deg, #b8001f 0%, #ff7a00 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 122, 0, 0.4);
}

/* ------------------------------------------------------------
   Testimonials — Swiper Video Slider
   ------------------------------------------------------------ */
.testimonials {
    padding: 5rem 0 4rem;
    background: var(--color-light-grey);
    overflow: hidden;
}

.testi-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.testi-eyebrow {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Swiper container */
.testi-swiper {
    padding-bottom: 3.5rem !important;
    overflow: visible;
}

/* Cards */
.testi-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 42px rgba(128, 0, 0, 0.15);
}

/* Thumbnail */
.testi-thumb {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16 / 9;
}

.testi-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.testi-thumb:hover img { transform: scale(1.07); }

.testi-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 35%, rgba(0, 0, 0, 0.55) 100%);
    pointer-events: none;
}

/* Play button */
.testi-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.1rem;
    padding-left: 4px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
    transition: transform 0.3s ease, background 0.2s ease;
}

.testi-thumb:hover .testi-play {
    transform: translate(-50%, -50%) scale(1.14);
    background: #fff;
}

/* Card body */
.testi-body {
    padding: 1.2rem 1.4rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testi-cat {
    display: inline-block;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    padding: 0.2rem 0.75rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
}

.testi-quote {
    font-size: 0.865rem;
    color: #555;
    line-height: 1.65;
    flex: 1;
    font-style: italic;
    margin-bottom: 0.85rem;
}

.testi-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
}

/* Swiper navigation */
.testi-prev, .testi-next {
    color: var(--color-primary) !important;
    background: #fff;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
    top: 38% !important;
}

.testi-prev::after, .testi-next::after {
    font-size: 0.95rem !important;
    font-weight: 800;
}

.testi-dots { bottom: 0 !important; }

.testi-dots .swiper-pagination-bullet {
    background: var(--color-primary);
    opacity: 0.25;
    width: 8px;
    height: 8px;
    transition: all 0.3s ease;
}

.testi-dots .swiper-pagination-bullet-active {
    opacity: 1;
    width: 26px;
    border-radius: 4px;
    background: var(--gradient-brand);
}

/* YouTube Modal */
.yt-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.yt-modal.active {
    opacity: 1;
    visibility: visible;
}

.yt-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    cursor: pointer;
}

.yt-box {
    position: relative;
    width: 92%;
    max-width: 920px;
    background: #000;
    border-radius: 14px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.yt-frame-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.yt-frame-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.yt-close {
    position: absolute;
    top: -46px;
    right: 0;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s ease;
}

.yt-close:hover { background: rgba(255, 255, 255, 0.35); }

/* ------------------------------------------------------------
   Content Showcase Section
   ------------------------------------------------------------ */
.content-showcase {
    padding: 4rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.content-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.content-card:hover {
    transform: translateY(-5px);
}

.thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.content-card h4 {
    padding: 0.75rem;
    font-size: 1.1rem;
}

.content-card p {
    padding: 0 0.75rem 0.75rem;
    font-size: 0.9rem;
    color: #555;
}

/* ------------------------------------------------------------
   Case Study Section
   ------------------------------------------------------------ */
.case-study {
    padding: 4rem 0;
    background: var(--color-light-grey);
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.case-overview,
.case-results,
.case-visuals {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.case-results ul {
    list-style: disc inside;
    margin-top: 0.5rem;
}

/* ------------------------------------------------------------
   Social Links Section
   ------------------------------------------------------------ */
.social-links {
    padding: 4rem 0;
}

.social-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.social-card {
    background: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--color-text);
    font-weight: 600;
    transition: var(--transition);
}

.social-card:hover {
    background: var(--color-primary);
    color: #fff;
}

/* ------------------------------------------------------------
   Final CTA Section
   ------------------------------------------------------------ */
.final-cta {
    background: var(--gradient-brand);
    color: #fff;
    text-align: center;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.12), transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(255, 180, 0, 0.18), transparent 45%);
    pointer-events: none;
}

.final-cta > * {
    position: relative;
}

.final-cta .secondary-cta {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.final-cta .secondary-cta:hover {
    background: #fff;
    color: var(--color-primary);
}

.final-cta .btn + .btn {
    margin-left: 0.75rem;
}

.cta-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
.site-footer {
    background: #1a0808;
    background-image: linear-gradient(180deg, #2a0a0a 0%, #1a0505 100%);
    color: #ccc;
    padding: 3rem 0 1rem;
    font-size: 0.9rem;
    border-top: 4px solid;
    border-image: var(--gradient-brand) 1;
}

.footer-offices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #3a1515;
}

.footer-offices h4 {
    color: var(--color-warm);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-offices p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #bbb;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
}

.footer-brand img {
    max-width: 271px;
    border-radius: 6px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    margin-right: 1rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact p {
    margin: 0.25rem 0;
}

.footer-bottom {
    text-align: center;
    margin-top: 1rem;
    border-top: 1px solid #444;
    padding-top: 0.5rem;
}

/* ------------------------------------------------------------
   Section Subtitle
   ------------------------------------------------------------ */
.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.05rem;
    margin-top: -1.5rem;
    margin-bottom: 2.5rem;
}

/* ------------------------------------------------------------
   Updated Package Cards (Popular style)
   ------------------------------------------------------------ */
.popular-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    padding: 0.28rem 1.1rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.popular-card {
    background: #fff;
    border-radius: 14px;
    padding: 2rem 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.09);
    text-align: center;
    position: relative;
    width: 100%;
    max-width: 380px;
    transition: var(--transition);
    border-top: 4px solid transparent;
    border-image: var(--gradient-brand) 1;
}

.popular-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 36px rgba(128, 0, 0, 0.16);
}

.empower-card {
    background: linear-gradient(#fff, #fff) padding-box,
                var(--gradient-brand) border-box;
    border: 2px solid transparent;
    border-top: 4px solid transparent;
}

.package-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: 0.04em;
    margin-bottom: 1.25rem;
}

.price-circle {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.65rem;
    color: #fff;
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.38);
    animation: pricePulse 3s ease-in-out infinite;
}

.empower-circle {
    background: linear-gradient(135deg, #7c3aed, #4f46e5);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.38);
}

@keyframes pricePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

.price-circle .currency {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 4px;
    opacity: 0.9;
}

.price-circle .amount {
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1.15;
}

.price-note {
    color: #777;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 1.4rem;
}

.popular-card .features {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.popular-card .features li {
    padding: 0.45rem 0 0.45rem 1.85rem;
    position: relative;
    font-size: 0.875rem;
    color: #444;
    border-bottom: 1px solid #f3f3f3;
}

.popular-card .features li:last-child {
    border-bottom: none;
}

.popular-card .features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #22c55e url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E") center/11px no-repeat;
}

.feat-tag {
    font-size: 0.76rem;
    color: #888;
    font-weight: 400;
}

.chat-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.85rem;
    border-radius: 999px;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

/* ------------------------------------------------------------
   Doctor Case Study Cards
   ------------------------------------------------------------ */
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 1.5rem;
}

.doctor-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.doctor-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-brand);
}

.doctor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(128, 0, 0, 0.14);
}

.doctor-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 2px solid rgba(128, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.9rem;
    font-size: 1.5rem;
    color: var(--color-primary);
}

.doctor-specialty-tag {
    display: inline-block;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    padding: 0.22rem 0.8rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
}

.doctor-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.35rem;
}

.doctor-hospital {
    font-size: 0.83rem;
    color: #666;
    margin-bottom: 0.9rem;
}

.doctor-hospital i {
    color: var(--color-primary);
    margin-right: 0.25rem;
}

/* Social link buttons on doctor cards */
.doc-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    justify-content: center;
    margin-top: 0.85rem;
}

.doc-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.34rem 0.88rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.doc-social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}

.doc-fb {
    background: #1877f2;
    color: #fff;
}

.doc-ig {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
}

.doc-g {
    background: #fff;
    color: #444;
    border: 1.5px solid #dadce0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.doc-g i { color: #ea4335; }

/* ------------------------------------------------------------
   Responsive Adjustments
   ------------------------------------------------------------ */
@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Simple mobile menu toggle (JS will add .open class) */
.nav.open {
    display: flex;
    flex-direction: column;
    background: var(--color-bg);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1rem;
}

/* Mobile View */
/* Mobile View Only */
 /* Force Hide This Button on Mobile */
@media only screen and (max-width: 768px) {

    #mobile-hide-btn.btn.primary-cta {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        pointer-events: none !important;
        position: absolute !important;
    }

}
 /* Mobile Logo Fix */
/* Default Desktop Size */
 /* Desktop */
 
/* Mobile View Size */
