@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    /* Refined Color Palette */
    --primary-blue: #09203F;
    /* Deep rich navy */
    --primary-green: #00a651;
    /* Vibrant Medigo Green */
    --secondary-green: #e6f6ec;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;

    /* Legacy variables for secondary pages */
    --white: #ffffff;
    --light-text: #64748b;
    --gray-bg: #f8fafc;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
    --gradient-green: linear-gradient(135deg, #00A651 0%, #059669 100%);
    --gradient-dark: linear-gradient(135deg, #0F172A 0%, #09203F 100%);

    --text-muted: #475569;
    /* Slate 600 */
    --bg-white: #FFFFFF;
    --bg-gray: #F8FAFC;
    /* Slate 50 */
    --border-light: #E2E8F0;

    /* Shadows - Ultra Smooth */
    --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 10px 20px -5px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
    --shadow-glow: 0 10px 30px -10px rgba(0, 166, 81, 0.5);
    --shadow-glow-blue: 0 10px 30px -10px rgba(9, 32, 63, 0.5);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Headings use Manrope for a modern, geometric, confident look */
h1,
h2,
h3,
h4,
h5 {
    font-family: 'Manrope', sans-serif;
    color: var(--primary-blue);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-padding {
    padding: 80px 0;
    position: relative;
}

.bg-gray {
    background-color: var(--bg-gray);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: var(--gradient-green);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px -5px rgba(0, 166, 81, 0.6);
}

/* --- Premium Header --- */
.header-wrapper {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 24px;
}

.header {
    max-width: 1240px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-full);
    padding: 12px 24px 12px 30px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-blue);
    text-decoration: none;
}

.brand-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-blue);
    font-family: 'Manrope';
    letter-spacing: -1px;
}

.logo-text span {
    color: var(--primary-green);
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-muted);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* --- Stunning Hero Section --- */
.hero {
    padding: 160px 0 100px;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

/* --- Flyer Pixel Perfect Hero --- */
.flyer-hero {
    background: #fdfdfd;
    position: relative;
    padding: 150px 0 0;
    /* Increased padding to push text and image down away from the nav */
    overflow: hidden;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.4) 80%, rgba(255, 255, 255, 0) 100%), url('../images/hospital-banner-bg.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.flyer-layout {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Flyer Logo */
.flyer-logo {
    margin-bottom: 25px;
}

.flyer-logo-top {
    display: flex;
    align-items: center;
    gap: 15px;
}

.flyer-brand-logo {
    height: 56px;
    /* Increased from 48px */
    width: auto;
    object-fit: contain;
}

.flyer-brand {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 44px;
    /* Increased from 38px */
    color: var(--primary-blue);
    letter-spacing: -1px;
}

.flyer-brand span {
    color: var(--primary-green);
}

.flyer-brand .pvt {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-left: 5px;
}

.flyer-tagline {
    font-size: 16px;
    /* Increased */
    font-weight: 600;
    color: var(--primary-blue);
    margin-top: -8px;
    margin-left: 70px;
    /* Align with text */
}

/* Flyer Typography */
.flyer-title {
    font-family: Impact, 'Arial Black', sans-serif;
    font-weight: normal;
    /* Impact is naturally bold */
    font-size: 68px;
    /* Larger to match the visual scale */
    line-height: 1;
    /* Tight line height */
    color: #09203f;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: uppercase;
    margin-top: 15px;
}

.flyer-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    /* Matched to flyer proportion */
    font-weight: 600;
    color: #1e293b;
    line-height: 1.5;
    margin-bottom: 30px;
}

/* Flyer Icon Strip */
.flyer-icon-strip {
    display: flex;
    justify-content: space-between;
    background: white;
    padding: 25px 35px;
    /* Increased padding */
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    margin-top: 40px;
}

.strip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.strip-item span {
    font-size: 13px;
    font-weight: 700;
    color: #09203f;
    /* Made text dark blue instead of black */
    line-height: 1.2;
}

.strip-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    font-size: 24px;
    border: 3px solid;
}

.strip-circle.blue {
    border-color: #09203f;
    color: #09203f;
}

.strip-circle.green {
    border-color: #00a651;
    color: #00a651;
}

.strip-divider {
    width: 1px;
    height: 35px;
    background: #cbd5e1;
}

/* Flyer Image */
.flyer-image-area {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex: 1.7;
    /* Drastically increase space for image to pull it closer to text */
}

.hero-text {
    flex: 1.2;
    padding-bottom: 40px;
    z-index: 2;
    position: relative;
    min-width: 620px;
}

.flyer-img-wrap {
    position: relative;
    width: 150%;
    max-width: 1400px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-right: -150px;
    margin-left: -80px;
    transform: scale(1.15);
    /* Reduced slightly from 1.3 so the head doesn't clip out of the viewport */
    transform-origin: bottom right;
}

.flyer-main-img {
    width: 100%;
    max-height: 850px;
    /* Allow it to be much taller */
    object-fit: contain;
    object-position: bottom right;
    display: block;
}

/* --- Secondary Pages Header --- */
.page-header {
    padding: 200px 0 60px;
    background: var(--bg-light);
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Flyer Shield Badge --- */
.flyer-shield {
    position: absolute;
    bottom: 25px;
    right: 120px;
    /* Shifted even further left */
    width: 140px;
    height: 165px;
    /* Scaled up to match the newly larger family image */
    display: flex;
    flex-direction: column;
    align-items: center;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.3));
    z-index: 10;
}

.shield-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 160px;
    z-index: 1;
}

.shield-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-align: center;
    padding-top: 30px;
}

.shield-content .shield-small {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 800;
    opacity: 0.95;
    margin-bottom: -3px;
    letter-spacing: 0.5px;
}

.shield-content .shield-big {
    font-family: 'Inter', sans-serif;
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    text-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
}

.shield-ribbon-container {
    position: absolute;
    bottom: 15px;
    /* Shifted ribbon up slightly */
    width: 130%;
    /* Wider ribbon */
    display: flex;
    justify-content: center;
    z-index: 3;
}

.shield-ribbon {
    background: linear-gradient(to right, #008f45, #06d6a0 50%, #008f45);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800;
    padding: 8px 12px;
    text-align: center;
    border-radius: 3px;
    width: 105%;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.shield-ribbon::before,
.shield-ribbon::after {
    content: '';
    position: absolute;
    top: -6px;
    border-bottom: 6px solid #005f2e;
    z-index: -1;
}

.shield-ribbon::before {
    left: 4px;
    border-left: 6px solid transparent;
}

.shield-ribbon::after {
    right: 4px;
    border-right: 6px solid transparent;
}

/* --- Section Headers --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 44px;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Why Choose Us --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--light-green);
    color: var(--primary-green);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary-green);
    color: white;
    box-shadow: var(--shadow-glow);
}

.feature-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* --- Pricing Plans (SaaS Style) --- */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.plan-card {
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

/* The "Pop" Card */
.plan-card.popular {
    background: var(--gradient-dark);
    color: white;
    border: none;
    box-shadow: var(--shadow-glow-blue);
    transform: scale(1.05);
    z-index: 2;
    padding: 60px 40px;
}

.plan-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-card.popular h3,
.plan-card.popular .plan-icon {
    color: white;
}

.plan-card.popular .plan-price {
    color: var(--primary-green);
}

.plan-card.popular .plan-price span {
    color: #94A3B8;
}

.plan-card.popular .plan-features li {
    color: #E2E8F0;
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-green);
    color: white;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-glow);
}

.plan-header {
    margin-bottom: 30px;
}

.plan-icon {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.plan-header h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 48px;
    color: var(--primary-green);
    font-weight: 900;
    line-height: 1;
}

.plan-price span {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
}

.plan-features {
    flex-grow: 1;
    margin: 30px 0;
    border-top: 1px dashed var(--border-light);
    padding-top: 30px;
}

.plan-card.popular .plan-features {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.plan-features li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 600;
}

.plan-features li i {
    color: var(--primary-green);
    font-size: 20px;
    margin-top: 2px;
}

.plan-card .btn {
    margin-top: auto;
}

/* --- Services Showcase --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4/5;
}

.service-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.2, 1, 0.3, 1);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(9, 32, 63, 0.9) 0%, rgba(9, 32, 63, 0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px 24px;
    transition: background 0.3s ease;
}

.service-item:hover img {
    transform: scale(1.1);
}

.service-item:hover .service-overlay {
    background: linear-gradient(to top, rgba(0, 166, 81, 0.9) 0%, rgba(0, 166, 81, 0.2) 50%, transparent 100%);
}

.service-item h4 {
    color: white;
    font-size: 20px;
    margin-bottom: 8px;
}

.service-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.service-item:hover p {
    opacity: 1;
    transform: translateY(0);
}

/* --- Digital Card Section --- */
.digital-card-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 0;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.dc-content {
    padding: 80px;
    flex: 1.2;
}

.dc-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.dc-content h2 span {
    color: var(--primary-green);
}

.dc-content>p {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 40px;
}

.dc-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.dc-feat {
    display: flex;
    align-items: center;
    gap: 16px;
}

.dc-feat i {
    font-size: 36px;
    color: var(--primary-green);
    background: var(--light-green);
    padding: 12px;
    border-radius: 16px;
}

.dc-feat span {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
}

.app-dl {
    display: flex;
    gap: 16px;
}

.app-btn {
    background: var(--primary-blue);
    border-radius: 12px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    transition: all 0.3s;
}

.app-btn:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.app-btn i {
    font-size: 28px;
}

.app-btn div {
    display: flex;
    flex-direction: column;
}

.app-btn .small {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
}

.app-btn .big {
    font-size: 15px;
    font-weight: 800;
    font-family: 'Manrope';
}

.dc-mockup {
    flex: 1;
    background: var(--gradient-hero);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px;
    align-self: stretch;
}

.css-phone {
    width: 280px;
    height: 580px;
    background: var(--text-dark);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), inset 0 0 0 2px rgba(255, 255, 255, 0.2);
    position: relative;
    /* Will be controlled via JavaScript scroll event */
    transform: rotate(15deg) translateY(40px);
    transition: transform 0.1s ease-out;
}

.css-phone:hover {
    transform: scale(1.02) !important;
}

.css-phone .notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background: var(--text-dark);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 10;
}

.phone-screen {
    background: #f8fafc;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    padding-top: 50px;
    /* Space for notch */
}

/* App Header */
.app-top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    margin-bottom: 20px;
}

.app-logo {
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 2px;
}

.app-logo .m-blue {
    color: #0066cc;
    font-size: 20px;
}

.app-logo .m-plus {
    color: #00a651;
    font-size: 20px;
}

.app-logo .text-medigo {
    color: #0a1c3e;
    margin-left: 4px;
}

.app-logo .text-plus {
    color: #00a651;
    display: flex;
    align-items: center;
}

.app-bell {
    position: relative;
    font-size: 20px;
    color: #64748b;
}

.notification-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    border: 2px solid #f8fafc;
}

/* Greeting */
.app-greeting {
    padding: 0 20px;
    text-align: left;
    margin-bottom: 15px;
}

.app-greeting h3 {
    font-size: 18px;
    color: #0f172a;
    margin-bottom: 4px;
    font-weight: 700;
}

.app-greeting p {
    font-size: 12px;
    color: #64748b;
}

/* Membership Card */
.app-membership-card {
    background: linear-gradient(135deg, #09203F 0%, #00505a 100%);
    margin: 0 15px;
    border-radius: 16px;
    padding: 20px;
    color: white;
    text-align: left;
    position: relative;
    box-shadow: 0 10px 20px rgba(9, 32, 63, 0.2);
    overflow: hidden;
}

.app-membership-card::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.mc-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.mc-status {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.mc-icon {
    width: 32px;
    height: 32px;
    background: white;
    color: #00a651;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.mc-mid {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.mc-mid h4 {
    font-size: 22px;
    margin-bottom: 4px;
    color: white;
    font-weight: 800;
}

.mc-mid p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.mc-bot {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 2;
}

.mc-member-id {
    display: flex;
    flex-direction: column;
}

.mc-member-id span {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2px;
}

.mc-member-id strong {
    font-size: 14px;
    letter-spacing: 1px;
}

.mc-view-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
}

/* Savings */
.app-savings {
    background: white;
    margin: 15px 15px;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.sav-info {
    text-align: left;
}

.sav-info p {
    font-size: 10px;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 4px;
}

.sav-info h4 {
    font-size: 18px;
    color: #00a651;
    font-weight: 800;
}

.sav-chart {
    width: 50px;
    height: 25px;
}

/* Actions */
.app-actions {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    margin-bottom: 20px;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.act-icon {
    width: 44px;
    height: 44px;
    background: white;
    color: #0066cc;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
}

.action-item p {
    font-size: 10px;
    color: #475569;
    font-weight: 600;
    line-height: 1.2;
}

/* Offers */
.app-offers {
    padding: 0 20px;
    text-align: left;
}

.off-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.off-head h5 {
    font-size: 11px;
    color: #0f172a;
    font-weight: 700;
}

.off-head a {
    font-size: 10px;
    color: #0066cc;
    font-weight: 600;
}

.off-banner {
    background: linear-gradient(135deg, #0066cc 0%, #3b82f6 100%);
    border-radius: 12px;
    padding: 12px 15px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.off-text span {
    font-size: 9px;
    font-weight: 600;
    opacity: 0.9;
}

.off-text strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    margin: 2px 0;
}

.off-text p {
    font-size: 9px;
    opacity: 0.9;
    margin: 0;
}

.off-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Bottom Nav */
.app-bottom-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    display: flex;
    justify-content: space-between;
    padding: 10px 25px 25px;
    border-top: 1px solid #f1f5f9;
}

.b-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #94a3b8;
    font-size: 18px;
}

.b-nav-item span {
    font-size: 9px;
    font-weight: 600;
}

.b-nav-item.active {
    color: #0066cc;
}

/* --- Flyer Style Stats Row --- */
.stats-banner {
    background: var(--primary-blue);
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.stats-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    position: relative;
    z-index: 2;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon-circle {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon-circle i {
    font-size: 24px;
    color: var(--primary-blue);
}

.stat-box h4 {
    font-size: 20px;
    font-weight: 800;
    color: white;
    margin-bottom: 2px;
}

.stat-box p {
    font-size: 11px;
    color: #cbd5e1;
    font-weight: 500;
    line-height: 1.2;
}

.stats-green-shape {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 250px;
    background: var(--primary-green);
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
}

/* --- Footer --- */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 100px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-brand-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-logo span {
    font-size: 28px;
    font-weight: 900;
    font-family: 'Manrope';
}

.footer-desc {
    color: #94a3b8;
    font-size: 15px;
    margin-bottom: 30px;
    max-width: 350px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.footer-col h4 {
    color: white;
    font-size: 20px;
    margin-bottom: 30px;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: #94a3b8;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-green);
    transform: translateX(5px);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: #94a3b8;
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.5;
}

.contact-info i {
    color: var(--primary-green);
    font-size: 24px;
}

.contact-info strong {
    color: white;
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #64748b;
    font-size: 14px;
}

/* --- About Page Flyer Design --- */
.about-flyer-page {
    padding: 160px 0 60px;
    background: #ffffff;
}

.about-header-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.about-title {
    font-family: 'Arial Black', Impact, sans-serif;
    font-size: 28px;
    color: var(--primary-blue);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.about-title-line {
    flex: 1;
    height: 2px;
    background: var(--primary-blue);
}

.about-ekg-icon {
    color: var(--primary-blue);
    font-size: 40px;
}

.about-intro-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 70px;
    align-items: center;
}

.about-intro-text p {
    font-size: 14.5px;
    color: #1e293b;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Circular Image */
.about-circle-wrapper {
    position: relative;
    width: 380px;
    height: 380px;
    margin: 0 auto;
    padding: 15px;
}

.about-circle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.about-circle-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 6px solid;
    /* Create alternating colored border effect */
    border-color: var(--primary-blue) var(--primary-green) var(--primary-blue) var(--primary-green);
    border-radius: 50%;
    z-index: 0;
}

.about-overlay-logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: white;
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-overlay-logo {
    max-width: 90%;
    max-height: 90%;
}

/* 3 Columns */
.about-three-cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.about-col {
    padding: 10px;
}

.about-col-icon {
    font-size: 45px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.about-col-title {
    font-family: 'Arial Black', Impact, sans-serif;
    font-size: 16px;
    color: var(--primary-blue);
    margin-bottom: 25px;
    text-transform: uppercase;
}

.about-col-text {
    font-size: 14px;
    color: #1e293b;
    line-height: 1.7;
}

/* Custom Lists */
.about-mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-mission-list li {
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.5;
}

.about-mission-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 7px;
    height: 7px;
    background: var(--primary-green);
}

.about-do-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-do-list li {
    position: relative;
    padding-left: 28px;
    font-size: 14px;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.4;
}

.about-do-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 16px;
}

/* Features Strip */
.features-header {
    margin-bottom: 20px;
}

.about-features-title {
    font-family: 'Arial Black', Impact, sans-serif;
    font-size: 16px;
    color: var(--primary-blue);
}

.features-line {
    background: #cbd5e1;
    height: 1px;
}

.about-features-box {
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 30px 20px;
    display: flex;
    justify-content: space-between;
    background: white;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    flex: 1;
}

.feature-icon-wrap {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-blue);
}

.feature-item span {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.3;
}

/* --- Premium Features Grid --- */
.premium-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

/* Make the 7th item centered if it wraps alone */
.pf-card:nth-child(7) {
    grid-column: span 1;
}

@media (min-width: 1024px) {

    /* On large screens, 4 on top, 3 on bottom centered */
    .premium-features-grid {
        grid-template-columns: repeat(12, 1fr);
    }

    .pf-card:nth-child(1) {
        grid-column: 1 / span 3;
    }

    .pf-card:nth-child(2) {
        grid-column: 4 / span 3;
    }

    .pf-card:nth-child(3) {
        grid-column: 7 / span 3;
    }

    .pf-card:nth-child(4) {
        grid-column: 10 / span 3;
    }

    .pf-card:nth-child(5) {
        grid-column: 2 / span 3;
    }

    .pf-card:nth-child(6) {
        grid-column: 5 / span 3;
    }

    .pf-card:nth-child(7) {
        grid-column: 8 / span 3;
    }
}

.pf-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 166, 81, 0.08);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 40px -10px rgba(9, 32, 63, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pf-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(0, 166, 81, 0.15);
    border-color: rgba(0, 166, 81, 0.3);
}

.pf-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.1) 0%, rgba(0, 166, 81, 0.02) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-green);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.pf-card:hover .pf-icon {
    background: var(--primary-green);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.pf-content h4 {
    font-size: 17px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 10px;
    line-height: 1.3;
}

.pf-content p {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 1100px) {

    /* Scale down but keep side-by-side */
    .hero-text {
        min-width: 50%;
    }

    .flyer-title {
        font-size: 52px;
    }

    .flyer-img-wrap {
        margin-left: -30px;
        max-width: 50%;
    }
}

/* Mobile Menu Button - Default Hidden */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--primary-blue);
    cursor: pointer;
    padding: 5px;
}

/* ==========================================================================
   Page Banner
   ========================================================================== */
.page-banner {
    padding: 200px 0 60px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(235, 248, 255, 0.75) 100%), url('../images/about-banner-bg-2.png');
    background-size: cover;
    background-position: top bottom;
    background-attachment: fixed;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.page-banner h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.page-banner p {
    font-size: 15px;
}

/* ==========================================================================
   Partners Page Styles
   ========================================================================== */

/* Hero Banner Override */
.partner-banner {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.85) 0%, rgba(26, 54, 93, 0.7) 100%), url('../images/partners-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 200px 0 80px 0;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.partner-banner h1 {
    color: white;
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 15px;
}

.partner-banner p {
    color: var(--primary-green);
    font-size: 18px;
    font-weight: 500;
}

/* Partner Intro Modern */
.partner-intro-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.intro-content .badge {
    background: rgba(76, 175, 80, 0.1);
    color: var(--primary-green);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.intro-content h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.intro-content .lead-text {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.6;
}

.intro-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.7;
}

.intro-highlights {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.intro-highlights li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary-blue);
}

.intro-highlights i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.intro-image-wrapper {
    position: relative;
    border-radius: 16px;
    z-index: 1;
}

.intro-image-wrapper img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: block;
    position: relative;
    z-index: 2;
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary-green) 0%, #3a8a3d 100%);
    border-radius: 16px;
    z-index: 1;
    opacity: 0.8;
}

/* --- Section Header Box (like About page) --- */
.section-header-box {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.section-header-box h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-right: 30px;
    letter-spacing: -1px;
    white-space: nowrap;
}

.section-header-box h2 span {
    color: var(--primary-green);
}

.ecg-line-wrapper {
    flex-grow: 1;
    height: 2px;
    background-color: #cbd5e1;
    position: relative;
}

.ecg-wave-large {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 50px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 40'%3E%3Cpath d='M0,20 L25,20 L35,5 L45,35 L55,10 L65,20 L100,20' fill='none' stroke='%231A365D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.floating-badge i {
    font-size: 32px;
    color: var(--primary-green);
    background: rgba(76, 175, 80, 0.1);
    padding: 12px;
    border-radius: 12px;
}

.floating-badge div {
    display: flex;
    flex-direction: column;
}

.floating-badge strong {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.floating-badge span {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-blue);
}

@media (max-width: 992px) {
    .partner-intro-modern {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .floating-badge {
        bottom: 20px;
        left: 20px;
    }
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(26, 54, 93, 0.1) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.benefit-icon {
    font-size: 36px;
    color: var(--primary-green);
}

.benefit-card h4 {
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Doctors Section */
.doctors-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.doctors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.doctor-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.doctor-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 8px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.doc-list {
    list-style: none;
    padding: 0;
}

.doc-list li {
    background: white;
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.doc-list li:hover {
    transform: translateX(10px);
}

.doc-list-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
}

.doc-list h4 {
    margin: 0 0 8px 0;
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.doc-list p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Technology Platform */
.tech-platform {
    background: #0f172a;
    padding: 100px 0;
    color: white;
    position: relative;
}

.tech-platform::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
}

.tech-platform h2 {
    color: white;
    font-size: 36px;
    font-weight: 800;
}

.tech-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.tech-feature {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.tech-feature:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.1);
}

.tech-feature i {
    color: var(--primary-green);
    font-size: 28px;
    filter: drop-shadow(0 0 8px rgba(76, 175, 80, 0.5));
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2a528a 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

@media (max-width: 1024px) {

    /* Header / Nav Mobile Toggle */
    .nav-container {
        position: relative;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 20px;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        border-radius: 0 0 15px 15px;
        z-index: 100;
    }

    .nav-links.active {
        display: flex;
        animation: fadeIn 0.3s ease forwards;
    }

    .hero .container {
        /* flex-direction: column; */
        text-align: center;
    }

    .hero p {
        margin: 0 auto 40px;
    }

    .flyer-img-wrap {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        justify-content: center;
        margin-top: 30px;
    }

    .flyer-main-img {
        width: 100%;
        max-width: 500px;
        object-fit: contain;
        transform: scale(1);
        margin: 0 auto;
    }

    .flyer-shield {
        right: 50%;
        bottom: -20px;
        transform: translateX(50%) scale(0.9);
        transform-origin: center;
    }

    .hero-icons {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .plan-card.popular {
        transform: scale(1);
    }

    .digital-card-wrap {
        flex-direction: column;
    }

    .dc-content {
        padding: 50px;
        text-align: center;
    }

    .dc-features {
        justify-content: center;
        text-align: left;
    }

    .app-dl {
        justify-content: center;
    }

    .dc-mockup {
        padding: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .stat-box {
        width: 30%;
        min-width: unset;
        justify-content: flex-start;
    }

    .stats-green-shape {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }

    .footer-desc {
        margin: 0 0 30px;
    }

    .social-links,
    .contact-info li {
        justify-content: flex-start;
        text-align: left;
    }
}

@media (max-width: 768px) {

    /* Hero Section Fixes */
    .flyer-layout {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        min-width: 100%;
        padding-bottom: 20px;
    }

    .flyer-brand {
        font-size: 32px;
    }

    .flyer-tagline {
        margin-left: 0;
        font-size: 14px;
        text-align: center;
    }

    .flyer-title {
        font-size: 42px;
        line-height: 1.1;
        margin-top: 20px;
    }

    /* Increased size for tablets */
    .flyer-desc {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .flyer-icon-strip {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
        padding: 20px;
        margin-top: 20px;
    }

    .strip-item {
        width: 45%;
    }

    .strip-divider {
        display: none;
    }

    /* Hide vertical lines because they break when items wrap */

    /* Premium Features */
    .premium-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pf-card {
        padding: 25px 20px;
    }

    .pf-card:nth-child(n) {
        grid-column: span 1;
    }

    /* Header / Nav */
    .navbar .btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .logo-text {
        font-size: 20px;
    }

    .brand-logo {
        height: 38px;
    }

    /* Footer & Stats Mobile Fix */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-desc {
        margin: 0 auto 30px;
    }

    .social-links,
    .contact-info li {
        justify-content: center;
        text-align: left;
    }

    .stats-row {
        gap: 20px 10px;
    }

    .stat-box {
        /* Inheriting width: 30% from 1024px for 3 items per row */
        justify-content: flex-start;
    }

    .stat-box h4 {
        font-size: 16px;
    }

    .stat-box p {
        font-size: 10px;
    }

    .stat-icon-circle {
        width: 36px;
        height: 36px;
    }

    .stat-icon-circle i {
        font-size: 18px;
    }

    /* About Flyer Mobile Fixes */
    .about-intro-section,
    .about-three-cols {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-circle-wrapper {
        width: 100%;
        max-width: 300px;
        height: 300px;
    }

    .about-features-box {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {

    /* Hide Enquire Now button on tiny screens */
    .nav-actions .btn {
        display: none;
    }

    .flyer-title {
        font-size: 32px;
    }

    .flyer-shield {
        transform: translateX(50%) scale(0.75);
        bottom: -10px;
    }

    /* Stats on tiny screens (2x2 grid) */
    .stat-box {
        width: 45%;
    }

    /* Digital Card Mobile Fixes */
    .dc-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .app-dl {
        flex-direction: column;
    }
}

/* --- Terms & Conditions Custom Design --- */
.terms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .terms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

.term-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.term-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 166, 81, 0.08);
    border-color: rgba(0, 166, 81, 0.2);
}

.term-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-green);
    background: rgba(0, 166, 81, 0.08);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.term-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-main);
    margin: 0;
    font-weight: 500;
}

.term-content p strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
}

/* --- New Services Grid --- */
.new-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
}





.new-service-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.new-service-item h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.3;
}

@media (max-width: 1200px) {
    .new-services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .new-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .new-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- New Plans Styling --- */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.plan-card-new {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.plan-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.plan-card-new .p-head {
    color: white;
    padding: 15px;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
}

.p-head.green {
    background: #008000;
}

.p-head.blue {
    background: #0066cc;
}

.p-head.dark-blue {
    background: #1a2b4c;
}

.plan-icon-wrap {
    padding: 20px 0;
}

.plan-icon-wrap i {
    font-size: 60px;
}

.p-head.green~.plan-icon-wrap i {
    color: #008000;
}

.p-head.blue~.plan-icon-wrap i {
    color: #0066cc;
}

.p-head.dark-blue~.plan-icon-wrap i {
    color: #0066cc;
}

.plan-features-list {
    list-style: none;
    padding: 0 20px;
    margin: 0;
    text-align: left;
    flex-grow: 1;
}

.plan-features-list li {
    padding: 8px 0;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-features-list li::before {
    content: "\2713";
    color: var(--primary-green);
    font-size: 16px;
    font-weight: bold;
}

.plan-price-box {
    padding: 20px;
    border-top: 1px dashed #ccc;
    margin: 20px 20px 0 20px;
}

.plan-price-box p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.plan-price-box h3 {
    margin: 0;
    font-size: 32px;
    font-weight: 800;
}

.p-head.green~.plan-price-box h3 {
    color: #008000;
}

.p-head.blue~.plan-price-box h3 {
    color: #0066cc;
}

.p-head.dark-blue~.plan-price-box h3 {
    color: #1a2b4c;
}

.plans-footer-note {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 15px 20px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #1a2b4c;
    font-weight: 600;
}

.plans-footer-note i {
    font-size: 32px;
}

/* Update Plan Card Design */
.plan-card-new {
    background: #fff;
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.plan-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.plan-card-new .p-head {
    color: white;
    padding: 20px;
    font-weight: 800;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-features-list li {
    padding: 12px 0;
    font-size: 15px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.plan-features-list li:last-child {
    border-bottom: none;
}

.plan-price-box {
    padding: 25px;
    border-top: none;
    margin: 10px 20px 20px 20px;
    background: #f8fafc;
    border-radius: 15px;
}

.plan-price-box p {
    margin: 0 0 5px 0;
    font-size: 15px;
    font-weight: 600;
    color: #666;
}

.plan-price-box h3 {
    margin: 0;
    font-size: 38px;
    font-weight: 900;
}

/* Ensure Plans Grid is responsive (fixing the override issue) */
@media (max-width: 991px) {
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .plans-footer-note {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .plan-card-new .p-head {
        font-size: 18px;
    }
}

.header-wrapper {
    z-index: 9999 !important;
}

.plan-card-new {
    position: relative;
    z-index: 10;
}

/* --- TABLET RESPONSIVENESS (1024px) --- */
@media (max-width: 1024px) {

    /* Hero Section */
    .flyer-icon-strip {
        /* flex-wrap: wrap; */
        gap: 20px;
        justify-content: center;
        padding: 20px;
    }

    .strip-divider {
        display: none;
    }

    .strip-item {
        width: 45%;
    }

    .flyer-title {
        font-size: 40px;
    }

    /* Why Choose Us Grid */
    .pf-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Membership Plans Grid */
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    /* Premium Services Grid */
    .new-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer Stats Row */
    .stats-row {
        flex-wrap: wrap;
    }

    .stat-box {
        width: 45%;
        margin-bottom: 20px;
    }
}

/* --- MOBILE RESPONSIVENESS (< 768px) --- */
@media (max-width: 767px) {
    .pf-grid {
        grid-template-columns: 1fr;
    }

    .new-services-grid {
        grid-template-columns: 1fr;
    }

    .strip-item,
    .stat-box {
        width: 100%;
    }
}


/* --- MOBILE RESPONSIVENESS (< 768px) --- */
@media (max-width: 767px) {

    .pf-grid,
    .new-services-grid {
        grid-template-columns: 1fr;
    }

    .strip-item,
    .stat-box {
        width: 100%;
    }

    .flyer-title {
        font-size: 32px !important;
    }

    .flyer-desc {
        font-size: 14px !important;
    }

    .section-header h2 {
        font-size: 26px !important;
    }

    .hero-image img,
    .hero-img img {
        max-width: 90%;
        margin: 0 auto;
        display: block;
    }

    .new-service-item img {
        height: 150px !important;
    }

    .plan-price-box h3 {
        font-size: 32px !important;
    }
}

/* --- SMALL MOBILE RESPONSIVENESS (< 480px) --- */
@media (max-width: 480px) {
    .flyer-title {
        font-size: 28px !important;
    }

    .flyer-desc {
        font-size: 13px !important;
    }

    .section-header h2 {
        font-size: 24px !important;
    }

    .plan-card-new .p-head {
        font-size: 16px !important;
        padding: 12px;
    }

    .plan-price-box h3 {
        font-size: 28px !important;
    }

    .plan-features-list li {
        font-size: 13px !important;
    }

    .plan-features-list li::before {
        font-size: 14px !important;
    }
}

/* New Digital Card Showcase Redesign */
.showcase-section {
    background: #ffffff;
    overflow: hidden;
    padding: 80px 0;
}

.showcase-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.sc-content {
    flex: 1;
    max-width: 550px;
}

.sc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    margin-bottom: 24px;
}

.sc-badge i {
    color: #3b82f6;
}

.sc-content h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.sc-content h2 .text-green {
    color: var(--primary-green);
}

.sc-content>p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.sc-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.sc-feat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feat-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.bg-light-green {
    background: #e6f6ec;
}

.bg-light-blue {
    background: #eff6ff;
}

.text-green {
    color: var(--primary-green);
}

.text-blue {
    color: #3b82f6;
}

.feat-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

.feat-text strong {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.sc-trust {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.trust-avatars {
    display: flex;
    align-items: center;
}

.trust-avatars img,
.trust-avatars .avatar-more {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -15px;
    object-fit: cover;
    background: #e2e8f0;
}

.trust-avatars img:first-child {
    margin-left: 0;
}

.trust-avatars .avatar-more {
    background: #2563eb;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.sc-trust p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}

/* Right side Image Area */
.sc-image-area {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.sc-aura {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.sc-phones-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    position: relative;
    z-index: 2;
    object-fit: contain;
}

/* Bottom Stats Banner */
.sc-bottom-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    margin-top: 60px;
    border: 1px solid #f1f5f9;
}

.sc-stat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-ic {
    font-size: 32px;
}

.stat-tx {
    font-size: 12px;
    color: var(--text-muted);
}

.stat-tx strong {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
}

.sc-join-btn {
    background: linear-gradient(90deg, #0066cc 0%, #00a651 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    transition: all 0.3s;
    text-decoration: none;
}

.sc-join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 166, 81, 0.3);
    color: white;
}

/* Responsive fixes for Showcase */
@media (max-width: 992px) {
    .showcase-wrap {
        flex-direction: column;
        text-align: center;
    }

    .sc-content {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .sc-features {
        text-align: left;
    }

    .sc-trust {
        justify-content: center;
    }

    .app-dl {
        justify-content: center !important;
    }

    .sc-bottom-banner {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .sc-features {
        grid-template-columns: 1fr;
    }

    .sc-content h2 {
        font-size: 36px;
    }
}

/* ============================================================
   PARTNER NETWORK SECTION
   ============================================================ */
.partner-network-section {
    background: #f8fafc;
    overflow: hidden;
}

.partner-logos-wrapper {
    overflow: hidden;
    margin: 40px 0;
    mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.partner-logos-track {
    display: flex;
    gap: 40px;
    animation: scrollLogos 30s linear infinite;
    width: max-content;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partner-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 140px;
    padding: 25px 20px;
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.partner-logo-item:hover {
    border-color: var(--primary-green);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 166, 81, 0.1);
}

.partner-logo-item i {
    font-size: 36px;
    color: var(--primary-blue);
}

.partner-logo-item span {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    white-space: nowrap;
}

/* Partner Categories */
.partner-categories {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.p-cat {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px 30px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.p-cat:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}

.p-cat-icon {
    width: 50px;
    height: 50px;
    background: var(--light-green);
    color: var(--primary-green);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.p-cat strong {
    display: block;
    font-size: 22px;
    color: var(--text-dark);
    font-weight: 800;
}

.p-cat span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
    background: white;
}

.faq-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.faq-left {
    flex: 0 0 350px;
    position: sticky;
    top: 120px;
}

.faq-left h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.2;
    margin-bottom: 15px;
}

.faq-left>p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
}

.faq-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: #cbd5e1;
}

.faq-item.active {
    background: white;
    border-color: var(--primary-green);
    box-shadow: 0 8px 25px rgba(0, 166, 81, 0.08);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 15px;
}

.faq-question span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-question i {
    font-size: 20px;
    color: var(--text-muted);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary-green);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

@media (max-width: 992px) {
    .faq-layout {
        flex-direction: column;
        gap: 40px;
    }

    .faq-left {
        flex: unset;
        position: static;
        text-align: center;
    }

    .faq-left .sc-badge {
        margin: 0 auto 20px;
    }

    .faq-left .btn {
        margin: 20px auto 0;
    }
}

@media (max-width: 768px) {
    .faq-left h2 {
        font-size: 30px;
    }

    .faq-question span {
        font-size: 14px;
    }
}

/* ============================================================
   DOWNLOAD APP BANNER (Horizontal Strip)
   ============================================================ */
.download-app-banner {
    background: linear-gradient(135deg, #09203F 0%, #0a2c5c 40%, #0e3666 100%);
    padding: 0;
    position: relative;
    /* Removed overflow: hidden so the phone doesn't get cut off */
    z-index: 1;
}

.dab-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    /* Contains the glowing circles within the banner */
}

.dab-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.dab-circle.d1 {
    width: 300px;
    height: 300px;
    top: -120px;
    left: 5%;
    background: radial-gradient(circle, rgba(0, 166, 81, 0.12) 0%, transparent 70%);
}

.dab-circle.d2 {
    width: 200px;
    height: 200px;
    bottom: -80px;
    right: 15%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
}

.dab-circle.d3 {
    width: 350px;
    height: 350px;
    top: -50%;
    right: -5%;
    background: radial-gradient(circle, rgba(0, 166, 81, 0.06) 0%, transparent 70%);
}

.dab-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.dab-glow.g1 {
    width: 200px;
    height: 200px;
    background: rgba(0, 166, 81, 0.15);
    top: 20%;
    left: 10%;
}

.dab-glow.g2 {
    width: 150px;
    height: 150px;
    background: rgba(59, 130, 246, 0.1);
    bottom: 10%;
    right: 25%;
}

.dab-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

/* Phone Image Mockup */
.dab-phone {
    flex-shrink: 0;
    margin-right: 10px;
    margin-bottom: -15px;
}

.dab-phone-img {
    width: 260px;
    /* Adjusted size to balance the single line */
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

/* Center Text */
.dab-text {
    flex-shrink: 0;
    color: white;
    max-width: 290px;
    text-align: left;
}

.dab-text h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    color: white;
}

.dab-text h2 span {
    color: var(--primary-green);
}

.dab-text>p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.5;
}

.dab-store-btns {
    display: flex;
    gap: 10px;
}

.dab-store-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 14px;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.dab-store-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    color: white;
}

.dab-store-btn i {
    font-size: 22px;
}

.dab-store-btn .sm {
    display: block;
    font-size: 8px;
    opacity: 0.7;
    text-transform: uppercase;
}

.dab-store-btn .lg {
    display: block;
    font-size: 13px;
    font-weight: 700;
}

/* Features */
.dab-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

.dab-feat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

.dab-feat i {
    color: var(--primary-green);
    font-size: 18px;
}

/* Arrow */
.dab-arrow {
    flex-shrink: 0;
    margin: 0 -10px;
    align-self: center;
}

/* QR Code */
.dab-qr-container {
    flex-shrink: 0;
    text-align: center;
}

.dab-qr-glow {
    padding: 2px;
    background: linear-gradient(135deg, #00f2fe 0%, #00d084 50%, #00f2fe 100%);
    border-radius: 18px;
    display: inline-block;
}

.dab-qr-inner {
    background: #09203F;
    padding: 15px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dab-qr-img-box {
    background: white;
    padding: 8px;
    border-radius: 10px;
    margin-bottom: 8px;
}

.dab-qr-img-box img {
    width: 90px;
    height: 90px;
    border-radius: 6px;
}

.dab-qr-title {
    color: white;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 2px;
}

.dab-qr-sub {
    color: white;
    font-size: 10px;
    opacity: 0.7;
}

/* Stats */
.dab-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-shrink: 0;
}

.dab-stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 18px;
    border-radius: 14px;
    width: 170px;
}

.stat-icon {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.stat-icon.i-blue {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.15);
}

.stat-icon.i-yellow {
    color: #eab308;
    background: rgba(234, 179, 8, 0.15);
}

.stat-icon.i-green {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.15);
}

.stat-text {
    text-align: left;
}

.stat-text strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: white;
}

.stat-text span {
    display: block;
    font-size: 11px;
    opacity: 0.7;
    color: white;
    line-height: 1.2;
}

/* VIEW TOGGLING */
.dab-mobile-view {
    display: none;
}

@media (max-width: 1200px) {
    .dab-desktop-view {
        display: none;
    }

    .dab-mobile-view {
        display: block;
    }
}

/* NEW DESIGN STYLES (Tablet & Mobile) */
.dab-content-new {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) auto minmax(200px, 1fr);
    gap: 30px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 20px 0;
}

/* Badge */
.dab-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 166, 81, 0.15);
    border: 1px solid rgba(0, 166, 81, 0.3);
    color: #4ade80;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 20px;
}

.dab-badge-new i {
    font-size: 14px;
}

/* Header Text */
.dab-header-new h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    color: white;
    text-align: left;
}

.dab-header-new h2 span {
    color: var(--primary-green);
}

.dab-header-new p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 0;
    line-height: 1.5;
    color: white;
    text-align: left;
}

/* Features */
.dab-features-new {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.dab-feat-new {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

.dab-feat-new i {
    color: var(--primary-green);
    font-size: 18px;
}

/* Store Buttons */
.dab-store-btns-new {
    display: flex;
    gap: 12px;
}

.dab-store-btn-new {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.dab-store-btn-new:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.dab-store-btn-new i {
    font-size: 24px;
}

.btn-text-new .sm {
    display: block;
    font-size: 8px;
    opacity: 0.7;
    text-transform: uppercase;
}

.btn-text-new .lg {
    display: block;
    font-size: 13px;
    font-weight: 700;
}

/* Phone Mockup */
.dab-phone-img-new {
    width: 280px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

/* QR Code Box */
.dab-qr-box-new {
    background: white;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    width: fit-content;
    margin-bottom: 20px;
}

.dab-qr-title-new {
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 12px;
}

.dab-qr-img-box-new img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
}

.dab-qr-sub-new {
    color: var(--text-dark);
    font-size: 12px;
    font-weight: 700;
    opacity: 0.8;
    margin-top: 12px;
    margin-bottom: 0;
}

/* Stats */
.dab-stats-new {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-item-new {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.stat-item-new i {
    font-size: 28px;
}

.stat-i-yellow-new {
    color: #eab308;
}

.stat-i-green-new {
    color: #22c55e;
}

.stat-info-new {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.stat-info-new strong {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
}

.stat-info-new span {
    font-size: 11px;
    opacity: 0.7;
    margin-top: 2px;
}

/* TABLET GRID LAYOUT (The 3-column design) */
@media (min-width: 768px) and (max-width: 1200px) {
    .dab-header-new {
        grid-column: 1;
        grid-row: 1;
    }

    .dab-features-new {
        grid-column: 1;
        grid-row: 2;
    }

    .dab-store-btns-new {
        grid-column: 1;
        grid-row: 3;
    }

    .dab-phone-block-new {
        grid-column: 2;
        grid-row: 1 / 4;
        justify-self: center;
    }

    .dab-phone-img-new {
        width: 400px;
    }

    /* Slightly smaller for tab to fit 3 cols */
    .dab-qr-box-new {
        grid-column: 3;
        grid-row: 1;
        justify-self: flex-start;
    }

    .dab-stats-new {
        grid-column: 3;
        grid-row: 2 / 4;
        justify-self: flex-start;
    }
}

/* MOBILE STACKED LAYOUT (< 768px) */
@media (max-width: 767px) {
    .dab-content-new {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .dab-header-new h2,
    .dab-header-new p {
        text-align: center;
    }

    .dab-features-new {
        align-items: center;
    }

    .dab-feat-new {
        justify-content: center;
    }

    .dab-store-btns-new {
        flex-direction: column;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .dab-store-btn-new {
        justify-content: center;
    }

    .dab-qr-box-new {
        margin: 0 auto;
    }

    .dab-stats-new {
        align-items: center;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .partner-categories {
        gap: 15px;
    }

    .p-cat {
        padding: 15px 20px;
        width: 100%;
    }
}

/* ==========================================================================
   TERMS & CONDITIONS PAGE STYLES (NEW DESIGN)
   ========================================================================== */
.terms-page-bg {
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

/* EKG Background Element */
.t-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

.t-bg-ekg {
    position: absolute;
    top: 250px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg width="1000" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0,50 L300,50 L320,20 L340,80 L360,50 L400,50" fill="none" stroke="%2300a651" stroke-width="1.5" stroke-opacity="0.3"/></svg>') repeat-x;
}

.t-bg-dots {
    position: absolute;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(#cbd5e1 1.5px, transparent 1.5px);
    background-size: 15px 15px;
    opacity: 0.5;
}

.t-bg-dots.d1 {
    top: 100px;
    left: 5%;
}

.t-bg-dots.d2 {
    top: 400px;
    right: 5%;
}

/* Layout Containers */
.t-section {
    position: relative;
    z-index: 1;
    padding: 60px 0;
}

/* Header Area */
.t-header-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding: 60px 20px 20px;
    /* Added top padding to clear the navbar */
}

.t-header-text {
    max-width: 500px;
}

.t-header-text h1 {
    font-size: 48px;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.t-header-text h1 .t-underline {
    color: var(--primary-green);
    position: relative;
    display: inline-block;
}

.t-header-text h1 .t-underline::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--primary-green);
    border-radius: 3px;
}

.t-header-text p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 400px;
}

/* Illustration */
.t-illustration {
    position: relative;
    width: 260px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 40px;
}

.t-clipboard {
    position: relative;
    width: 200px;
    height: 250px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
}

.t-clip-top {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 35px;
    background: #334155;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.t-clip-top::after {
    content: '';
    width: 45px;
    height: 12px;
    background: #f8fafc;
    border-radius: 6px;
    margin-top: 6px;
}

.t-clip-paper {
    padding: 45px 25px 25px;
}

.t-clip-title {
    font-size: 13px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 20px;
    text-align: center;
}

.t-clip-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.t-clip-line i {
    color: #22c55e;
    font-size: 18px;
    font-weight: bold;
}

.t-clip-line .bar {
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    flex: 1;
}

.t-clip-sign {
    margin-top: 30px;
    width: 60px;
    height: 25px;
    border-bottom: 2px solid #0f172a;
    border-radius: 50%;
    margin-left: auto;
}

.t-shield-float {
    position: absolute;
    bottom: -20px;
    right: -30px;
    width: 90px;
    height: 90px;
    background: #3b82f6;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.35);
    color: white;
    font-size: 48px;
    transform: rotate(12deg);
}

.t-leaf {
    position: absolute;
    color: rgba(34, 197, 94, 0.2);
    font-size: 40px;
    z-index: -1;
}

.t-leaf.l1 {
    top: 20px;
    right: -30px;
    transform: rotate(45deg);
}

.t-leaf.l2 {
    bottom: 40px;
    left: -10px;
    transform: rotate(-30deg);
    font-size: 60px;
}

/* Grid */
.t-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.t-card {
    background: white;
    border-radius: 12px;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.t-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.t-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    bottom: 20px;
    width: 6px;
    border-radius: 0 4px 4px 0;
}

.t-num {
    font-size: 16px;
    font-weight: 800;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.t-icon-box {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.t-content {
    flex: 1;
}

.t-content h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.t-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Theme Green */
.t-card.t-green::before {
    background: var(--primary-green);
}

.t-card.t-green .t-num {
    background: var(--primary-green);
    color: white;
}

.t-card.t-green .t-icon-box {
    background: rgba(0, 166, 81, 0.1);
    color: var(--primary-green);
}

.t-card.t-green h4 .highlight {
    color: var(--primary-green);
}

/* Theme Blue */
.t-card.t-blue::before {
    background: #3b82f6;
}

.t-card.t-blue .t-num {
    background: #3b82f6;
    color: white;
}

.t-card.t-blue .t-icon-box {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.t-card.t-blue h4 .highlight {
    color: #3b82f6;
}

/* Bottom Banner */
.t-banner {
    background: white;
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
}

.t-banner-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.t-banner-shield {
    width: 60px;
    height: 60px;
    background: #e6f6ec;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 32px;
}

.t-banner-text h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 4px;
}

.t-banner-text p {
    font-size: 12px;
    color: var(--text-muted);
    max-width: 250px;
    line-height: 1.4;
    margin: 0;
}

.t-banner-right {
    display: flex;
    gap: 30px;
}

.t-feat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.t-feat i {
    font-size: 28px;
}

.t-feat span {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.t-feat .fg {
    color: var(--primary-green);
}

.t-feat .fb {
    color: #3b82f6;
}

/* Responsive */
@media (max-width: 1024px) {
    .t-grid {
        grid-template-columns: 1fr;
    }

    .t-banner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .t-banner-left {
        flex-direction: column;
    }

    .t-banner-text p {
        max-width: 100%;
    }

    .t-banner-right {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .t-header-area {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 40px;
    }

    .t-header-text h1 {
        font-size: 32px;
    }

    .t-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .t-card::before {
        left: 50%;
        top: 0;
        width: 40px;
        height: 4px;
        transform: translateX(-50%);
        border-radius: 0 0 4px 4px;
    }

    .t-card .t-num {
        position: absolute;
        top: 15px;
        left: 15px;
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* --- Modern Plan Cards --- */
.plan-card-modern {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.plan-card-modern.popular {
    background: #004d2e;
    color: #ffffff;
    border: none;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 25px 50px -12px rgba(0, 166, 81, 0.25);
}

.plan-card-modern.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-tag-new {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #00a651;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.plan-header-new {
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.plan-card-modern.popular .plan-header-new {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}

.plan-badge.blue {
    background: #e0f2fe;
    color: #0284c7;
}

.plan-badge.green {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.plan-badge.dark-green {
    background: #dcfce7;
    color: #166534;
}

.plan-header-new h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: inherit;
}

.plan-header-new p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
}

.plan-card-modern.popular .plan-header-new p {
    color: #cbd5e1;
}

.plan-header-new .price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 4px;
}

.plan-header-new .price h2 {
    font-size: 42px;
    font-weight: 800;
    color: inherit;
    margin: 0;
}

.plan-header-new .price span {
    font-size: 14px;
    color: #64748b;
}

.plan-card-modern.popular .plan-header-new .price span {
    color: #cbd5e1;
}

.plan-features-list-new {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.plan-features-list-new li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    color: #334155;
    line-height: 1.5;
}

.plan-card-modern.popular .plan-features-list-new li {
    color: #f8fafc;
}

.plan-features-list-new li i {
    color: #10b981;
    font-size: 18px;
    margin-top: 2px;
}

.plan-features-list-new li.disabled {
    color: #94a3b8;
    opacity: 0.6;
}

.plan-card-modern.popular .plan-features-list-new li.disabled {
    color: #cbd5e1;
}





.plan-card-modern .btn {
    width: 100%;
    padding: 14px;
    font-size: 15px;
}

.btn-blue {
    background: #2563eb;
    color: #fff;
}

.btn-blue:hover {
    background: #1d4ed8;
}

.btn-green {
    background: #10b981;
    color: #fff;
}

.btn-green:hover {
    background: #059669;
}

.btn-dark-green {
    background: #004d2e;
    color: #fff;
}

.btn-dark-green:hover {
    background: #022c1a;
}


/* --- Includes Grid --- */
.includes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.include-item {
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.include-item:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.include-item .icon-wrap {
    background: #e6f6ec;
    color: #00a651;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.include-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #0f172a;
}

.include-item p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* --- Comparison Table --- */
.comparison-table-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.comparison-table th {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    background: #ffffff;
}

.comparison-table td {
    font-size: 15px;
    color: #475569;
}

.comparison-table th.highlight,
.comparison-table td.highlight {
    background: #f8fafc;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table i {
    font-size: 20px;
}

@media (max-width: 991px) {
    .includes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-table-wrapper {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .includes-grid {
        grid-template-columns: 1fr;
    }

    .plan-card-modern.popular {
        transform: scale(1);
    }

    .plan-card-modern.popular:hover {
        transform: translateY(-5px);
    }
}

/* --- Attractive Plan Cards Enhancements --- */
.plan-card-modern {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    padding: 40px;
    box-shadow: 0 10px 40px -10px rgba(15, 23, 42, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;

}

/* .plan-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #0284c7, #38bdf8);
    opacity: 0;
    transition: opacity 0.3s ease;
} */

.plan-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
    border-color: #cbd5e1;
}

.plan-card-modern:hover::before {
    opacity: 1;
}

.plan-card-modern.popular {
    background: linear-gradient(145deg, #004d2e 0%, #002e1b 100%);
    box-shadow: 0 30px 60px -15px rgba(0, 166, 81, 0.4);
    border: 1px solid rgba(0, 166, 81, 0.3);
}

.plan-card-modern.popular::before {
    background: linear-gradient(90deg, #00a651, #10b981);
    opacity: 1;
}

.plan-card-modern.popular:hover {
    transform: scale(1.05) translateY(-12px);
    box-shadow: 0 40px 70px -15px rgba(0, 166, 81, 0.5);
}

.popular-tag-new {
    background: linear-gradient(90deg, #00a651, #10b981);
    padding: 8px 24px;
    box-shadow: 0 10px 20px -5px rgba(0, 166, 81, 0.4);
    border: 2px solid #004d2e;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.plan-badge {
    padding: 8px 16px;
    font-size: 13px;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.plan-header-new .price h2 {
    color: var(--primary-blue);
}

.plan-card-modern.popular .plan-header-new .price h2 {
    color: #ffffff;
}

.btn-blue,
.btn-green,
.btn-dark-green {
    border-radius: 8px;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
}

.btn-blue::before,
.btn-green::before,
.btn-dark-green::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-blue:hover::before,
.btn-green:hover::before,
.btn-dark-green:hover::before {
    width: 100%;
}

.btn-blue {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.4);
}

.btn-blue:hover {
    box-shadow: 0 15px 25px -5px rgba(37, 99, 235, 0.5);
    transform: translateY(-2px);
}

.btn-green {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 10px 20px -5px rgba(16, 185, 129, 0.4);
    color: #fff !important;
}

.btn-green:hover {
    box-shadow: 0 15px 25px -5px rgba(16, 185, 129, 0.5);
    transform: translateY(-2px);
}

.btn-dark-green {
    background: linear-gradient(135deg, #004d2e, #002e1b);
    box-shadow: 0 10px 20px -5px rgba(0, 77, 46, 0.4);
}

.btn-dark-green:hover {
    box-shadow: 0 15px 25px -5px rgba(0, 77, 46, 0.5);
    transform: translateY(-2px);
}

/* Enhancing Includes Grid */
.include-item {
    background: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.6);
    position: relative;
    overflow: hidden;
}

.include-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, transparent, rgba(0, 166, 81, 0.05));
    border-radius: 100% 0 0 0;
    transition: all 0.3s ease;
}

.include-item:hover::after {
    transform: scale(2);
    background: linear-gradient(135deg, transparent, rgba(0, 166, 81, 0.1));
}

.include-item .icon-wrap {
    background: linear-gradient(135deg, #e6f6ec, #dcfce7);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.include-item:hover .icon-wrap {
    transform: rotateY(180deg);
    background: #00a651;
    color: #ffffff;
}

/* Enhancing Comparison Table */
.comparison-table-wrapper {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.comparison-table th {
    padding: 24px 20px;
    background: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    border-bottom: 2px solid #e2e8f0;
}

.comparison-table td {
    transition: background 0.2s ease;
}

.comparison-table tr:hover td {
    background: #f8fafc;
}

.comparison-table tr:hover td.highlight {
    background: #f1f5f9;
}

.comparison-table th.highlight,
.comparison-table td.highlight {
    background: rgba(0, 166, 81, 0.03);
    border-left: 1px dashed #e2e8f0;
    border-right: 1px dashed #e2e8f0;
}

.comparison-table th.highlight {
    background: rgba(0, 166, 81, 0.05);
    border-top: 3px solid #00a651;
    border-radius: 8px 8px 0 0;
}

.plan-features-list-new li.disabled i {
    color: #cbd5e1 !important;
    display: inline-block !important;
}
/* --- Mobile View Enhancements for Plans Page (Updated) --- */
@media (max-width: 768px) {
    /* Plan cards */
    .plan-card-modern {
        padding: 25px;
    }
    
    .plan-header-new h3 {
        font-size: 20px;
    }
    
    .plan-header-new .price h2 {
        font-size: 36px;
    }
    
    /* Comparison table scroll */
    .comparison-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -15px; /* Allow edge-to-edge scroll on mobile */
        padding: 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
        background: transparent;
        box-shadow: none;
    }
    
    .comparison-table {
        min-width: 500px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
        font-size: 13px;
    }

    .comparison-table th {
        font-size: 12px;
    }
    
    .mobile-only {
        display: block !important;
    }
    
    /* Section Headers */
    .section-header h2 {
        font-size: 28px !important;
    }
    
    .section-header p {
        font-size: 14px;
        padding: 0 10px;
    }
    
    /* Includes grid */
    .include-item {
        padding: 20px;
    }
}

/* --- Alternating Services Layout (Updated) --- */
.services-list-container {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 40px;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 60px;
    background: transparent;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e6f3fb;
    color: #1e88e5;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-text h3 {
    font-size: 32px;
    color: #004d2e;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.service-text p {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 30px;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.s-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #334155;
}

.s-feat i {
    color: #1e88e5;
    font-size: 18px;
}

.service-image {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.img-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #e6f3fb;
    color: #004d2e;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

@media (max-width: 992px) {
    .service-row, .service-row.reverse {
        flex-direction: column;
        gap: 40px;
    }
    
    .service-image {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .service-text h3 {
        font-size: 26px;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
}

.new-service-item {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.new-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-green);
}

.ns-img-wrap {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.ns-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.new-service-item:hover .ns-img-wrap img {
    transform: scale(1.05);
}

.ns-content {
    padding: 20px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ns-content h4 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 8px; /* Slightly reduced margin */
    font-weight: 700;
}

.ns-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}
