/* ==========================================================================
   Gajanan Krupa Pathology & Diagnostics - Core Stylesheet
   ========================================================================== */

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

:root {
    --primary: #C1272D;       /* Primary Red */
    --primary-light: #E4312B; /* Blood-red gradient end */
    --primary-dark: #8B0000;  /* Blood-red gradient start */
    --accent: #F7B500;        /* Golden Yellow */
    --accent-gold: #F7B500;
    --success: #10b981;
    --danger: #C1272D;
    
    --bg-main: #FAFAFA;       /* Light Gray */
    --bg-card: #ffffff;
    --bg-header: rgba(255, 255, 255, 0.9);
    --text-main: #4D4D4F;     /* Charcoal Gray */
    --text-muted: #71717A;    /* Muted Slate */
    --text-white: #ffffff;
    --border-color: #E4E4E7;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Poppins', sans-serif;
    --max-width: 1200px;
}

/* 1. Resets & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center { text-align: center; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    gap: 0.5rem;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Grid & Layout System */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* Header & Sticky Navigation */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-header);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

header.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
}

.logo svg {
    width: 36px;
    height: 36px;
    fill: var(--primary);
}

.logo img {
    height: 44px !important;
    width: auto;
    display: block;
    transition: var(--transition);
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
    text-align: left;
}

.logo-title {
    font-weight: 700;
    font-size: 1.45rem;
    color: var(--primary) !important;
    letter-spacing: 0.3px;
}

.logo-subtitle {
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--text-main) !important;
    letter-spacing: 0.1px;
}

/* Footer-specific Logo styles */
footer .logo img {
    height: 36px !important;
    filter: brightness(0) invert(1) !important; /* Invert the icon to white in footer */
}

footer .logo-title {
    font-size: 1.25rem !important;
    color: var(--text-white) !important;
}

footer .logo-subtitle {
    font-size: 0.72rem !important;
    color: #A1A1AA !important;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding: 0.25rem 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-switch {
    display: flex;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid var(--border-color);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
}

.lang-switch a {
    color: var(--text-muted);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
}

.lang-switch a.active {
    color: var(--primary);
    background-color: #FEE2E2;
}

/* Mobile Nav Styles */
.menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-main);
}

/* Hero Section */
.hero {
    min-height: 620px;
    max-height: 700px;
    padding: 0;
    display: flex;
    align-items: center;
    background-image: 
        linear-gradient(to top, #ffffff 0%, rgba(255, 255, 255, 0) 120px),
        linear-gradient(135deg, 
            #ffffff 0%, 
            #FAF8F5 25%, 
            #FFF0F0 50%, 
            #F0F4FA 75%, 
            #ffffff 100%
        );
    background-size: 100% 100%, 100% 100%;
    background-repeat: no-repeat, no-repeat;
    background-position: bottom center, center center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* Warm red glow behind content (left side) */
.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(211, 47, 47, 0.04) 0%, rgba(211, 47, 47, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

/* Soft blue glow behind illustration (right side) */
.hero::after {
    content: '';
    position: absolute;
    width: 650px;
    height: 650px;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(79, 142, 247, 0.06) 0%, rgba(79, 142, 247, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.hero-grid.container {
    padding-left: 120px;
    padding-right: 120px;
    max-width: 1440px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 5;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-tagline {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.25rem;
    max-width: 620px;
}

.hero-ctas {
    display: flex;
    gap: 1.25rem;
    flex-wrap: nowrap;
    align-items: center;
}

/* Hero CTA button premium animations */
.hero-content .hero-ctas .btn {
    position: relative;
    overflow: hidden;
}

/* 1. Pulsing glowing rings for the Hero Buttons */
.hero-content .hero-ctas .btn-primary {
    animation: heroPrimaryPulse 2.5s infinite ease-in-out;
}

.hero-content .hero-ctas .btn-whatsapp {
    animation: heroWhatsappPulse 2.5s infinite ease-in-out 1.25s; /* staggered start */
}

/* 2. Shine sweep animation */
.hero-content .hero-ctas .btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.45) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    pointer-events: none;
}

.hero-content .hero-ctas .btn-primary::after {
    animation: shineSweep 4s infinite ease-in-out;
}

.hero-content .hero-ctas .btn-whatsapp::after {
    animation: shineSweep 4s infinite ease-in-out 2s; /* staggered start */
}

/* Hover States: Pause animations, slightly enlarge, lift, and enhance drop shadows with theme colors */
.hero-content .hero-ctas .btn:hover {
    transform: translateY(-4px) scale(1.02);
}

.hero-content .hero-ctas .btn-primary:hover {
    animation: none;
    background-color: var(--primary-dark);
    box-shadow: 0 12px 24px rgba(193, 39, 45, 0.35);
}

.hero-content .hero-ctas .btn-whatsapp:hover {
    animation: none;
    background-color: #20ba5a;
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.35);
}

/* Keyframes for soft pulsing glow */
@keyframes heroPrimaryPulse {
    0%, 100% {
        box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.08), 0 2px 4px -2px rgb(0 0 0 / 0.08);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(193, 39, 45, 0.2), 0 8px 20px rgba(193, 39, 45, 0.15);
    }
}

@keyframes heroWhatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.08), 0 2px 4px -2px rgb(0 0 0 / 0.08);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(37, 211, 102, 0.2), 0 8px 20px rgba(37, 211, 102, 0.15);
    }
}

/* Keyframes for shine sweep */
@keyframes shineSweep {
    0% {
        left: -150%;
    }
    30% {
        left: 150%;
    }
    100% {
        left: 150%;
    }
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

/* Hero SVG Animation */
.hero-svg {
    width: 100%;
    max-width: 560px;
    height: auto;
    display: block;
}

.hero-img {
    width: 100%;
    max-width: 560px;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hero-img-redesign {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-width: 600px;
    z-index: 3;
    position: relative;
    filter: drop-shadow(0 15px 30px rgba(79, 142, 247, 0.12));
}

.hero-pattern-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Floating Elements Styling */
.floating-element {
    position: absolute;
    pointer-events: none;
    z-index: 4;
}

.float-mol-1 {
    top: 5%;
    right: 12%;
    animation: float-slow 8s ease-in-out infinite;
}

.float-dna {
    bottom: 8%;
    left: 4%;
    animation: float-medium 7s ease-in-out infinite alternate;
}

.float-cross {
    top: 20%;
    left: -8%;
    animation: float-fast 5s ease-in-out infinite;
    box-shadow: 0 8px 24px rgba(211, 47, 47, 0.1);
}

.float-flask {
    bottom: 15%;
    right: -4%;
    animation: float-slow 9s ease-in-out infinite alternate;
    filter: drop-shadow(0 8px 16px rgba(79, 142, 247, 0.12));
}

/* Blobs behind illustration */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 2;
    pointer-events: none;
    opacity: 0.65;
}

.blob-1 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(79, 142, 247, 0.18) 0%, rgba(79, 142, 247, 0) 70%);
    top: 15%;
    right: 10%;
    animation: pulse-blob 8s ease-in-out infinite alternate;
}

.blob-2 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.12) 0%, rgba(211, 47, 47, 0) 70%);
    bottom: 15%;
    left: 20%;
    animation: pulse-blob 10s ease-in-out infinite alternate-reverse;
}

.svg-float {
    animation: float 6s ease-in-out infinite;
}

.svg-pulse {
    animation: pulse 2.5s ease-in-out infinite;
}

.svg-rotate {
    animation: rotate 20s linear infinite;
    transform-origin: center;
}

/* Redesign Animations */
@keyframes float-slow {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float-medium {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(-8deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float-fast {
    0% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-8px) scale(1.05); }
    100% { transform: translateY(0px) scale(1); }
}

@keyframes pulse-blob {
    0% { transform: scale(1) translate(0, 0); opacity: 0.5; }
    50% { transform: scale(1.15) translate(10px, -10px); opacity: 0.7; }
    100% { transform: scale(1) translate(0, 0); opacity: 0.5; }
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.05); opacity: 1; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Feature Section Base Headers */
.section-header {
    max-width: 600px;
    margin: 0 auto 3.5rem auto;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    border-radius: var(--radius-sm);
}

/* ==========================================================================
   Our Laboratory Services Redesign (Premium Modern Healthcare UI)
   ========================================================================== */
.services-premium-section {
    padding: 120px 0;
    background: radial-gradient(circle at 10% 20%, rgba(244, 247, 252, 0.45) 0%, rgba(255, 255, 255, 1) 90%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

/* Subtle medical plus icons / DNA patterns in background */
.services-premium-section::before {
    content: '';
    position: absolute;
    top: 8%;
    right: 5%;
    width: 250px;
    height: 250px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' opacity='0.04'%3E%3Cpath d='M10 50h80M50 10v80' stroke='%23C1272D' stroke-width='2' stroke-linecap='round'/%3E%3Ccircle cx='50' cy='50' r='8' fill='%23C1272D'/%3E%3Cpath d='M20 20l60 60' stroke='%23C1272D' stroke-width='1' stroke-dasharray='4'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
}

.services-premium-section::after {
    content: '';
    position: absolute;
    bottom: 8%;
    left: 4%;
    width: 280px;
    height: 280px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='10' stroke='%23C1272D' stroke-width='1.5' fill='none'/%3E%3Ccircle cx='70' cy='30' r='6' stroke='%23C1272D' stroke-width='1.5' fill='none'/%3E%3Ccircle cx='50' cy='70' r='8' stroke='%23C1272D' stroke-width='1.5' fill='none'/%3E%3Cline x1='30' y1='40' x2='50' y2='62' stroke='%23C1272D' stroke-width='1'/%3E%3Cline x1='70' y1='36' x2='50' y2='62' stroke='%23C1272D' stroke-width='1'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
}

.services-premium-section .container {
    position: relative;
    max-width: 1280px;
    z-index: 2;
}

/* Badge styling */
.services-badge-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #FEF2F2;
    color: #DC2626;
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.services-badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Main title styling */
.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.services-header h2 {
    font-size: 52px;
    font-weight: 800;
    color: #1F2937;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.services-header p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #6B7280;
    max-width: 650px;
    margin: 0 auto;
}

/* Grid & Cards */
.services-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (min-width: 1121px) {
    /* Center the 4th card on desktop when wrapping in a 3-column layout */
    .services-premium-grid .service-premium-card:last-child:nth-child(3n+1) {
        grid-column: 2;
    }
}

.service-premium-card {
    background-color: #ffffff;
    border-radius: 18px;
    border: 1px solid #F1F5F9;
    padding: 32px;
    min-height: 340px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.03), 0 2px 6px -1px rgba(15, 23, 42, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

/* Top Accent Line */
.service-premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #EF4444, #DC2626);
    transition: all 0.4s ease;
}

/* Large Background Number */
.service-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 90px;
    font-weight: 800;
    color: #000000;
    opacity: 0.03;
    line-height: 1;
    user-select: none;
    pointer-events: none;
    transition: all 0.4s ease;
}

/* Icon box */
.service-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: linear-gradient(135deg, #EF4444, #DC2626);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 8px 16px -4px rgba(220, 38, 38, 0.25);
    margin-bottom: 24px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Inner glow ring for icon */
.service-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 20px;
    border: 2px solid rgba(220, 38, 38, 0);
    opacity: 0;
    transition: all 0.4s ease;
}

.service-icon-wrapper svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-info-group {
    flex-grow: 1;
    margin-bottom: 24px;
}

.service-premium-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.service-premium-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #6B7280;
}

/* Horizontal checklist features */
.service-checklist {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    padding-top: 20px;
    border-top: 1px solid #F1F5F9;
}

.service-check-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #4B5563;
}

.service-check-item svg {
    width: 14px;
    height: 14px;
    color: #DC2626;
    stroke-width: 3;
}

/* Hover State Interactions */
.service-premium-card:hover {
    transform: translateY(-12px);
    border-color: #EF4444;
    box-shadow: 0 20px 40px -4px rgba(15, 23, 42, 0.08), 0 8px 16px -4px rgba(15, 23, 42, 0.04);
}

.service-premium-card:hover h3 {
    color: #DC2626;
}

.service-premium-card:hover .service-icon-wrapper {
    transform: rotate(8deg) scale(1.05);
    box-shadow: 0 12px 24px -4px rgba(220, 38, 38, 0.4);
}

.service-premium-card:hover .service-icon-wrapper::after {
    border-color: rgba(220, 38, 38, 0.15);
    inset: -8px;
    opacity: 1;
}

.service-premium-card:hover .service-number {
    opacity: 0.06;
    transform: scale(1.05) translate(-4px, 4px);
}

/* Scroll-triggered reveal animations for cards */
.service-premium-card.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-premium-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Centered CTA Section */
.services-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
    padding: 30px 20px;
    position: relative;
    z-index: 2;
}

.services-cta-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 20px;
}

.btn-gradient-red {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: #ffffff;
    padding: 14px 36px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    box-shadow: 0 8px 24px -4px rgba(220, 38, 38, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-gradient-red:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 28px -4px rgba(220, 38, 38, 0.45);
    color: #ffffff;
}

/* Responsiveness overrides for new Services Section */
@media (max-width: 1120px) {
    .services-header h2 {
        font-size: 42px;
    }
    .services-premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .services-premium-section {
        padding: 90px 0;
    }
    .services-header h2 {
        font-size: 38px;
    }
}

@media (max-width: 640px) {
    .services-premium-section {
        padding: 80px 0;
    }
    .services-header h2 {
        font-size: 34px;
        margin-bottom: 16px;
    }
    .services-premium-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .service-premium-card {
        padding: 28px;
        min-height: auto;
    }
    .service-premium-card h3 {
        font-size: 24px;
    }
    .service-premium-card p {
        font-size: 16px;
    }
}

/* Home Sample Banner */
.banner-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(16, 52, 102, 0.9) 0%, rgba(9, 31, 64, 0.94) 100%), url('../images/home_collection_banner_bg.png') no-repeat center center / cover;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(66, 133, 244, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.banner-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.banner-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.banner-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.banner-visual {
    display: flex;
    justify-content: center;
}

.banner-svg {
    max-width: 320px;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2));
}

/* Packages Page & Cards */
.package-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.package-badge {
    background-color: var(--primary-light);
    color: white;
    padding: 0.25rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    position: absolute;
    top: 1rem;
    right: 1rem;
    border-radius: 50px;
}

.package-header {
    padding: 2rem 2rem 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.package-header h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 0.75rem;
}

.package-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
}

.package-body {
    padding: 2rem;
    flex-grow: 1;
}

.package-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.package-features svg {
    width: 18px;
    height: 18px;
    color: var(--success);
    flex-shrink: 0;
}

/* Service Categories & Table list */
.services-section {
    padding: 5rem 0;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
    cursor: pointer;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
    background-color: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
}

.service-category-content {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.services-list-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}

.services-list-table th,
.services-list-table td {
    padding: 1.25rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.services-list-table th {
    background-color: #F4F4F5;
    font-weight: 600;
    color: var(--text-main);
}

.services-list-table tr:hover td {
    background-color: #f8fafc;
}

.services-list-table td .test-code {
    font-size: 0.8rem;
    background: #e2e8f0;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    color: var(--text-muted);
}

/* About Credentials */
.about-section {
    padding: 5rem 0;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3.5rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-intro-content h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.about-intro-content p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.credential-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 4rem;
}

.credential-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #e2e8f0;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--primary-light);
}

.credential-info h4 {
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
}

.credential-title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.accreditations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.accreditation-item {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 2rem;
    border-top: 4px solid var(--primary);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.accreditation-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Appointment Page & Contact Forms */
.form-container {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    max-width: 700px;
    margin: 0 auto;
}

.form-title {
    margin-bottom: 2rem;
    text-align: center;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-full {
    grid-column: span 2;
}

.form-group label {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    outline: none;
    transition: var(--transition);
    background-color: #f8fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(193, 39, 45, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    margin-top: 0.5rem;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Home sample address conditional display */
.home-address-wrapper {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

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

/* Contact Details Page */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3.5rem;
    padding: 4rem 0;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info-item {
    display: flex;
    gap: 1.25rem;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background-color: #FEE2E2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 22px;
    height: 22px;
}

.contact-info-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.contact-info-text p {
    color: var(--text-muted);
}

.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    height: 380px;
    margin-top: 2rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer Design */
footer {
    background-color: #1C1C1E;
    color: #A1A1AA;
    padding: 5rem 0 2rem 0;
    border-top: 1px solid #2C2C2E;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h3 {
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-light);
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.95rem;
}

.footer-contact-list li {
    display: flex;
    gap: 0.75rem;
}

.footer-contact-list svg {
    width: 18px;
    height: 18px;
    color: var(--primary-light);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid #2C2C2E;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

/* Scroll-triggered reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Floating WhatsApp widget */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    opacity: 0.6;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    background-color: #20ba5a;
    box-shadow: 0 8px 24px rgba(32, 186, 90, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover svg {
    transform: rotate(10deg);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: #1c1c1e;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateX(12px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    letter-spacing: 0.3px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0) scale(1);
}

@media (max-width: 768px) {
    .whatsapp-tooltip {
        display: none;
    }
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 54px;
        height: 54px;
    }
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* Form success overlay */
.submit-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(28, 28, 30, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.submit-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.submit-modal {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-md);
    text-align: center;
    max-width: 400px;
    box-shadow: var(--shadow-lg);
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

.submit-overlay.active .submit-modal {
    transform: translateY(0);
}

.success-icon {
    width: 72px;
    height: 72px;
    background: #e6fcf5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success);
    margin: 0 auto 1.5rem auto;
}

.success-icon svg {
    width: 36px;
    height: 36px;
}

/* Preferences for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-delay: 0s !important;
        animation-duration: 0s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0s !important;
        scroll-behavior: auto !important;
    }
    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .navbar {
        padding: 1rem 1.5rem;
    }
    .hero-grid.container {
        padding-left: 60px;
        padding-right: 60px;
    }
    .hero-grid {
        gap: 2rem;
    }
    .hero h1 {
        font-size: 2.25rem;
    }
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header.scrolled {
        padding: 0;
    }
    
    .navbar {
        padding: 0.5rem 1rem;
    }
    
    .logo {
        gap: 0.5rem;
    }
    
    .logo img {
        height: 36px !important;
    }
    
    .logo-title {
        font-size: 1.15rem;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
        white-space: normal;
        max-width: 180px;
    }

    .menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: transparent;
        border: none;
        cursor: pointer;
        font-size: 1.4rem;
        color: var(--text-main);
        transition: var(--transition);
    }
    
    .menu-btn:hover,
    .menu-btn:focus-visible {
        background-color: rgba(193, 39, 45, 0.08);
        color: var(--primary);
    }
    
    .nav-links {
        position: fixed;
        top: 61px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 61px);
        background: linear-gradient(180deg, var(--bg-card) 0%, #F9FAFB 100%);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 2.5rem 2rem;
        gap: 0.85rem;
        transition: var(--transition);
        box-shadow: var(--shadow-md);
        border-top: 1px solid var(--border-color);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links::before {
        content: "QUICK MENU";
        display: block;
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--text-muted);
        letter-spacing: 1.5px;
        margin-bottom: 0.5rem;
        text-align: left;
    }
    
    .nav-links a {
        background: var(--bg-card);
        padding: 1.1rem 1.5rem;
        border-radius: var(--radius-sm);
        border: 1px solid var(--border-color);
        display: flex;
        align-items: center;
        justify-content: space-between;
        box-shadow: var(--shadow-sm);
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--text-main);
        transition: opacity 0.35s ease, transform 0.35s ease, background-color 0.3s, border-color 0.3s, color 0.3s;
        opacity: 0;
        transform: translateY(15px);
        position: relative;
    }
    
    .nav-links a::after {
        content: "→" !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background-color: transparent !important;
        color: var(--primary);
        font-size: 1.2rem;
        opacity: 0.6;
        transition: var(--transition);
        transform: translateX(-5px);
    }
    
    .nav-links a:hover {
        border-color: var(--primary-light);
        background-color: #FFF5F5;
        color: var(--primary);
    }
    
    .nav-links a:hover::after {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-links a.active {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        color: var(--text-white);
        border-color: transparent;
        box-shadow: var(--shadow-md);
    }
    
    .nav-links a.active::after {
        color: var(--text-white) !important;
        opacity: 1 !important;
        transform: translateX(0) !important;
    }
    
    .nav-links.active a {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-links.active a:nth-child(1) { transition-delay: 0.05s; }
    .nav-links.active a:nth-child(2) { transition-delay: 0.1s; }
    .nav-links.active a:nth-child(3) { transition-delay: 0.15s; }
    .nav-links.active a:nth-child(4) { transition-delay: 0.2s; }
    .nav-links.active a:nth-child(5) { transition-delay: 0.25s; }
    
    .nav-links::after {
        content: "Need Assistance? Call +91 9765751345";
        display: block;
        margin-top: auto;
        padding: 1.1rem;
        background: linear-gradient(135deg, rgba(193, 39, 45, 0.05) 0%, rgba(247, 181, 0, 0.05) 100%);
        border: 1px solid rgba(193, 39, 45, 0.15);
        border-radius: var(--radius-sm);
        text-align: center;
        color: var(--text-main);
        font-size: 0.95rem;
        font-weight: 600;
        letter-spacing: 0.2px;
    }
    
    .nav-actions {
        margin-left: auto;
        margin-right: 0.5rem;
        gap: 0.5rem;
    }

    .lang-switch {
        font-size: 0.8rem;
        padding: 0.2rem 0.4rem;
        gap: 0.25rem;
    }
    
    .lang-switch a {
        padding: 0.1rem 0.35rem;
    }
    
    .navbar .btn-book {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        max-height: none;
        padding: 4rem 0;
    }
    
    .hero::before {
        width: 300px;
        height: 300px;
        top: -100px;
        right: -50px;
    }
    
    .hero::after {
        width: 250px;
        height: 250px;
        bottom: -50px;
        left: -80px;
    }
    
    .hero-grid.container {
        padding-left: 24px;
        padding-right: 24px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-ctas {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-svg,
    .hero-img {
        max-width: 320px;
    }
    
    .banner-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .banner-visual {
        order: -1;
    }
    
    .about-intro-grid {
        grid-template-columns: 1fr;
    }
    
    .credential-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .services-list-table th, 
    .services-list-table td {
        padding: 0.75rem;
    }
    
    .services-list-table {
        font-size: 0.875rem;
    }
}

@media (max-width: 540px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group-full {
        grid-column: span 1;
    }
    .form-container {
        padding: 1.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}


/* Ensure mobile layout doesn't break at minimum 360px */
@media (max-width: 360px) {
    html {
        font-size: 14px;
    }
    .btn {
        width: 100%;
    }
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    .logo-title {
        font-size: 1.05rem;
    }
    .logo-subtitle {
        max-width: 140px;
    }
    .nav-actions {
        gap: 0.35rem;
    }
}

/* Accessibility Focus Ring States */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--accent-gold) !important;
    outline-offset: 2px !important;
}

/* ==========================================================================
   Trust Statistics Section
   ========================================================================== */
.trust-stats {
    position: relative;
    background-color: #ffffff;
    background-image: 
        radial-gradient(rgba(193, 39, 45, 0.02) 1.5px, transparent 1.5px),
        linear-gradient(180deg, #ffffff 0%, #FCFAF7 45%, #F4F7FC 85%, #ffffff 100%);
    background-size: 28px 28px, 100% 100%;
    background-repeat: repeat, no-repeat;
    padding: 5rem 0;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

/* Background soft ambient glows for depth */
.trust-stats::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    top: -150px;
    left: -180px;
    background: radial-gradient(circle, rgba(247, 181, 0, 0.045) 0%, rgba(247, 181, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.trust-stats::after {
    content: '';
    position: absolute;
    width: 650px;
    height: 650px;
    bottom: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(79, 142, 247, 0.065) 0%, rgba(79, 142, 247, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.trust-stats .container {
    position: relative;
    z-index: 5;
}

.trust-stats .section-header {
    margin-bottom: 3.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.trust-stats .section-header h2 {
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    opacity: 0;
    line-height: 1.3;
}

.trust-stats.revealed .section-header h2 {
    animation: text-reveal-stats 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
}

.highlight-underlined {
    position: relative;
    display: inline-block;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-style: italic;
    color: var(--primary);
    padding-bottom: 12px;
}

/* Yellow double underline */
.highlight-underlined::before,
.highlight-underlined::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-gold);
    border-radius: 4px;
    height: 3px;
}

.highlight-underlined::before {
    bottom: 2px;
    width: 0;
    animation: underline-grow-top 3.5s ease-in-out infinite;
}

.highlight-underlined::after {
    bottom: -4px;
    width: 0;
    height: 2px;
    opacity: 0.85;
    animation: underline-grow-bottom 3.5s ease-in-out infinite 0.4s;
}

@keyframes underline-grow-top {
    0%, 100% {
        width: 0;
    }
    50% {
        width: 100%;
    }
}

@keyframes underline-grow-bottom {
    0%, 100% {
        width: 0;
    }
    50% {
        width: 75%;
    }
}

@keyframes text-reveal-stats {
    0% {
        letter-spacing: -0.02em;
        transform: translateY(20px) scale(0.98);
        opacity: 0;
    }
    100% {
        letter-spacing: normal;
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.trust-stats .section-header p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    gap: 32px; /* Increased spacing between cards to 32px */
    grid-template-columns: repeat(3, 1fr); /* 3 columns x 2 rows on desktop */
}

.stat-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease, background-color 300ms ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    opacity: 0;
    transition: opacity 300ms ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: rgba(193, 39, 45, 0.2);
}

.stat-card:hover::after {
    opacity: 1;
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(193, 39, 45, 0.06);
    color: var(--primary);
    margin-bottom: 1rem; /* Shortened vertical spacing */
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
    background-color: var(--primary);
    color: var(--text-white);
}

.stat-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 0.375rem;
}

.stat-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.375rem;
    line-height: 1.3;
}

.stat-title-large {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.375rem;
    line-height: 1.3;
}

.stat-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.375rem;
    line-height: 1.3;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Responsive grid overrides */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablet: 2 columns x 3 rows */
        gap: 32px;
    }
    .trust-stats {
        padding: 4rem 0;
    }
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: 1fr; /* Mobile: 1 column */
        gap: 24px;
    }
    
    .stat-card {
        padding: 24px;
        border-radius: 16px;
    }
    
    .stat-number {
        font-size: 2.1rem;
    }
    
    .stat-title {
        font-size: 1.1rem;
    }
    
    .stat-title-large {
        font-size: 1.1rem;
    }
    
    .trust-stats {
        padding: 4rem 0;
    }
}

/* ==========================================================================
   Why Choose Us Section (Redesign)
   ========================================================================== */
.why-choose-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #FCFAF7 45%, #F4F7FC 85%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

/* Subtle healthcare decorative elements (opacity below 5%) */
.why-choose-section::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 3%;
    width: 240px;
    height: 240px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' opacity='0.025'%3E%3Cpath d='M30,20 Q40,40 50,20 T70,20' fill='none' stroke='%23C1272D' stroke-width='2'/%3E%3Cpath d='M30,30 Q40,10 50,30 T70,30' fill='none' stroke='%23C1272D' stroke-width='1.5'/%3E%3Ccircle cx='30' cy='20' r='2' fill='%23C1272D'/%3E%3Ccircle cx='50' cy='20' r='2' fill='%23C1272D'/%3E%3Ccircle cx='70' cy='20' r='2' fill='%23C1272D'/%3E%3Ccircle cx='30' cy='30' r='2' fill='%23C1272D'/%3E%3Ccircle cx='50' cy='30' r='2' fill='%23C1272D'/%3E%3Ccircle cx='70' cy='30' r='2' fill='%23C1272D'/%3E%3Cline x1='30' y1='20' x2='30' y2='30' stroke='%23C1272D' stroke-width='1'/%3E%3Cline x1='50' y1='20' x2='50' y2='30' stroke='%23C1272D' stroke-width='1'/%3E%3Cline x1='70' y1='20' x2='70' y2='30' stroke='%23C1272D' stroke-width='1'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    bottom: 5%;
    right: 3%;
    width: 260px;
    height: 260px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' opacity='0.025'%3E%3Ccircle cx='20' cy='20' r='6' fill='none' stroke='%23C1272D' stroke-width='1.5'/%3E%3Ccircle cx='50' cy='30' r='4' fill='none' stroke='%23C1272D' stroke-width='1.5'/%3E%3Ccircle cx='35' cy='60' r='5' fill='none' stroke='%23C1272D' stroke-width='1.5'/%3E%3Cline x1='20' y1='26' x2='35' y2='55' stroke='%23C1272D' stroke-width='1'/%3E%3Cline x1='50' y1='34' x2='35' y2='55' stroke='%23C1272D' stroke-width='1'/%3E%3Cpath d='M75,20 H85 M80,15 V25' stroke='%23C1272D' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M15,75 H25 M20,70 V80' stroke='%23C1272D' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

.why-choose-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(193, 39, 45, 0.02) 0%, rgba(193, 39, 45, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.why-choose-section .container {
    position: relative;
    z-index: 5;
}

.why-choose-section .section-header {
    margin-bottom: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-section .section-header.reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.why-choose-section .section-header h2 {
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.why-choose-section .section-header.reveal h2 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.why-choose-section .section-header.revealed h2 {
    opacity: 1;
    transform: translateY(0);
}

.why-choose-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    border-radius: var(--radius-sm);
}

.why-choose-section .section-header p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 1rem;
}

.why-choose-section .section-header.reveal p {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0.2s;
}

.why-choose-section .section-header.revealed p {
    opacity: 1;
    transform: translateY(0);
}

.why-choose-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px auto 60px auto;
    width: 100%;
    max-width: 650px;
}

.why-choose-visual.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.92);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-choose-visual.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Spotlight backdrop behind the transparent image character */
.why-choose-visual::before {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(193, 39, 45, 0.05) 0%, rgba(247, 181, 0, 0.03) 50%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

/* Double glowing outline ring behind character */
.why-choose-visual::after {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(79, 142, 247, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    border: 1px dashed rgba(193, 39, 45, 0.08);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    animation: rotate-slow-reverse 35s linear infinite;
}

@keyframes rotate-slow-reverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

.why-choose-img {
    width: 100%;
    max-width: 650px;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    .why-choose-visual::before {
        width: 300px;
        height: 300px;
    }
    .why-choose-visual::after {
        width: 360px;
        height: 360px;
    }
}

@media (max-width: 640px) {
    .why-choose-visual::before {
        width: 220px;
        height: 220px;
    }
    .why-choose-visual::after {
        width: 270px;
        height: 270px;
    }
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.choose-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), border-color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(193, 39, 45, 0.06);
    border-color: rgba(193, 39, 45, 0.25);
}

.choose-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(193, 39, 45, 0.06);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 300ms ease, color 300ms ease, transform 300ms ease;
}

.choose-card:hover .choose-icon-wrapper {
    background-color: var(--primary);
    color: #ffffff;
    transform: scale(1.05);
}

.choose-icon {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.choose-card-content {
    flex-grow: 1;
}

.choose-card-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
    transition: color 300ms ease;
}

.choose-card:hover .choose-card-content h4 {
    color: var(--primary);
}

.choose-card-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.choose-card-right {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    opacity: 0.4;
    transition: transform 300ms ease, color 300ms ease, opacity 300ms ease;
}

.choose-card:hover .choose-card-right {
    transform: translateX(4px);
    color: var(--primary);
    opacity: 1;
}

.arrow-icon {
    width: 20px;
    height: 20px;
}

/* Tablet viewports */
@media (max-width: 1024px) {
    .why-choose-img {
        max-width: 500px;
    }
}

/* Mobile viewports */
@media (max-width: 640px) {
    .why-choose-section {
        padding: 80px 0;
    }
    
    .why-choose-img {
        max-width: 380px;
    }
    
    .choose-grid {
        grid-template-columns: 1fr;
    }
    
    .choose-card {
        padding: 20px;
        gap: 16px;
    }
    
    .choose-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .choose-icon {
        width: 24px;
        height: 24px;
    }
    
    .choose-card-content h4 {
        font-size: 1.05rem;
    }
    
    .choose-card-content p {
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   Popular Health Packages Section (Premium Redesign)
   ========================================================================== */
.packages-section {
    position: relative;
    padding: 110px 0 90px 0; /* Adjusted padding to accommodate the curved top divider */
    background: linear-gradient(180deg, #ffffff 0%, #FFF9F8 100%); /* Soft white to very light warm gradient */
    overflow: hidden;
}

.packages-section .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 3;
}

/* Scientific grid pattern with very low opacity (2.5%) */
.packages-section .scientific-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(193, 39, 45, 0.025) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(193, 39, 45, 0.025) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

/* Curved divider transition from the previous section */
.packages-section-divider {
    position: absolute;
    top: -1px; /* Overlaps boundary to prevent fine gaps */
    left: 0;
    width: 100%;
    height: 60px;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
    pointer-events: none;
}

.packages-section-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.packages-section-divider .shape-fill {
    fill: #ffffff; /* Matches the background of the bottom of the previous section */
}

/* Background Decorations */
.packages-bg-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Large blurred radial glow behind the center of the package cards (6% opacity) */
.packages-bg-decorations .radial-glow-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(193, 39, 45, 0.06) 0%, rgba(193, 39, 45, 0) 70%);
    filter: blur(120px);
    pointer-events: none;
    z-index: 1;
}

/* All medical/science SVG line arts styled with 2.5% opacity to remain extremely subtle */
.packages-bg-decorations .decor-svg {
    position: absolute;
    color: var(--primary);
    opacity: 0.025; /* Subtle: between 2-4% */
    pointer-events: none;
    z-index: 1;
}

/* Abstract curves in top-left and bottom-right corners */
.packages-bg-decorations .curve-top-left {
    top: -10px;
    left: -10px;
    width: 280px;
    height: 280px;
}

.packages-bg-decorations .curve-bottom-right {
    bottom: -10px;
    right: -10px;
    width: 280px;
    height: 280px;
}

/* DNA strand layouts */
.packages-bg-decorations .dna-left {
    top: 12%;
    left: 2%;
    width: 80px;
    height: 360px;
}

.packages-bg-decorations .dna-right {
    bottom: 12%;
    right: 2%;
    width: 80px;
    height: 360px;
    transform: rotate(180deg);
}

/* Molecule structures */
.packages-bg-decorations .mol-left {
    top: 50%;
    left: 3%;
    width: 140px;
    height: 140px;
}

.packages-bg-decorations .mol-right {
    top: 25%;
    right: 3%;
    width: 120px;
    height: 120px;
}

/* Laboratory flasks */
.packages-bg-decorations .flask-left {
    bottom: 18%;
    left: 4%;
    width: 100px;
    height: 100px;
}

.packages-bg-decorations .flask-right {
    top: 62%;
    right: 3%;
    width: 90px;
    height: 90px;
}

/* Floating medical plus symbols */
.packages-bg-decorations .plus-1 {
    top: 15%;
    left: 22%;
    width: 22px;
    height: 22px;
}

.packages-bg-decorations .plus-2 {
    bottom: 15%;
    right: 22%;
    width: 26px;
    height: 26px;
}

.packages-bg-decorations .plus-3 {
    top: 48%;
    right: 14%;
    width: 18px;
    height: 18px;
}

.packages-bg-decorations .plus-4 {
    bottom: 48%;
    left: 14%;
    width: 20px;
    height: 20px;
}

/* Section Header */
.packages-section .section-header {
    margin-bottom: 50px;
}

.packages-section .section-title {
    font-family: var(--font);
    font-size: 2.75rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 16px;
}

.packages-section .section-subtitle {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Featured Package Centering & Width */
.featured-package-wrapper {
    width: 75%; /* 70-80% width container */
    margin: 0 auto 50px auto;
}

/* 2x2 Layout for Desktop */
.packages-grid.grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns × 2 rows */
    gap: 32px;
}

/* Individual Package Card */
.package-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.8); /* Thin border */
    border-radius: 24px; /* Rounded corners 24px */
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04); /* Soft shadow */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 3;
    overflow: visible;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(193, 39, 45, 0.08); /* Soft primary brand shadow */
    border-color: rgba(193, 39, 45, 0.2);
}

/* Featured Premium Card Spec */
.package-card.featured-card {
    border: 1px solid rgba(193, 39, 45, 0.3); /* slightly tinted primary border */
    box-shadow: 0 15px 35px rgba(193, 39, 45, 0.06);
}

.package-card.featured-card:hover {
    border-color: rgba(193, 39, 45, 0.5);
    box-shadow: 0 25px 50px rgba(193, 39, 45, 0.12);
}

/* Card Badge */
.package-badge {
    position: absolute;
    top: -15px;
    left: 40px;
    background-color: var(--primary);
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(193, 39, 45, 0.2);
    z-index: 10;
}

/* Inner Horizontal Content Layout */
.featured-card-content,
.card-content-wrapper {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr; /* Left side holds info, right side holds tests */
    gap: 40px;
    padding: 48px; /* Generous whitespace */
    height: 100%;
}

.featured-left,
.card-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.featured-right,
.card-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 30px;
    border-left: 1px solid rgba(226, 232, 240, 0.8); /* subtle middle divider */
}

/* Large Icon Wrapper */
.package-icon-wrapper.large-icon-wrapper {
    width: 64px; /* Large Icon */
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.package-card[data-package-id="basic-health"] .package-icon-wrapper {
    background-color: rgba(193, 39, 45, 0.06);
    color: var(--primary);
}

.package-card[data-package-id="diabetes"] .package-icon-wrapper {
    background-color: rgba(16, 185, 129, 0.08);
    color: var(--success);
}

.package-card[data-package-id="womens-health"] .package-icon-wrapper {
    background-color: rgba(236, 72, 153, 0.08);
    color: #db2777;
}

.package-card[data-package-id="senior-citizen"] .package-icon-wrapper {
    background-color: rgba(245, 158, 11, 0.08);
    color: #d97706;
}

.package-card[data-package-id="executive-health"] .package-icon-wrapper {
    background-color: rgba(193, 39, 45, 0.1);
    color: var(--primary);
}

.package-card:hover .package-icon-wrapper {
    transform: scale(1.08) rotate(3deg);
}

.package-icon {
    width: 32px;
    height: 32px;
}

/* Package Name & Price */
.package-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.package-price-wrapper {
    margin-bottom: 28px;
}

.package-price {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0f172a; /* Neutral color, not heavy red */
    line-height: 1;
}

.package-card.featured-card .package-price {
    color: var(--primary); /* Accent color for featured */
}

.package-price-sub {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* Included Tests List */
.tests-included-heading {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #475569;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
}

.package-tests-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.package-tests-list li {
    font-size: 0.95rem;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 12px;
}

.package-tests-list .check-icon {
    color: var(--success);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* CTA Button */
.package-card .btn-book-appointment {
    width: 100%;
    padding: 14px 24px;
    border-radius: 30px;
    background-color: var(--primary);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    text-decoration: none;
}

.package-card .btn-book-appointment:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(193, 39, 45, 0.2);
}

.package-card .btn-book-appointment svg {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.package-card .btn-book-appointment:hover svg {
    transform: translateX(4px);
}

/* Terms Note */
.package-card .package-terms-note {
    font-size: 0.65rem;
    color: #94a3b8;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .featured-package-wrapper {
        width: 90%;
    }
    
    .featured-card-content,
    .card-content-wrapper {
        gap: 30px;
        padding: 36px;
    }
    
    .package-name {
        font-size: 1.35rem;
    }
    
    .package-price {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .featured-package-wrapper {
        width: 100%;
    }

    .packages-grid.grid-2x2 {
        grid-template-columns: 1fr; /* Stack standard cards on small screens */
        gap: 24px;
    }
    
    .featured-card-content,
    .card-content-wrapper {
        grid-template-columns: 1fr; /* Stack columns inside the card */
        gap: 28px;
        padding: 32px;
    }
    
    .featured-right,
    .card-right {
        border-left: none;
        border-top: 1px solid rgba(226, 232, 240, 0.8);
        padding-top: 24px;
    }
}

/* ==========================================================================
   Google Reviews Redesign
   ========================================================================== */
.google-reviews-section {
    padding: 6rem 0;
    position: relative;
}

.google-reviews-carousel-wrapper {
    margin-top: 3rem;
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding: 0.5rem 0.5rem 1.5rem 0.5rem;
}

.google-reviews-carousel {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    gap: 2rem;
}

.google-reviews-carousel .google-review-card {
    flex: 0 0 calc(33.333% - 1.333rem);
    width: calc(33.333% - 1.333rem);
    box-sizing: border-box;
    transform: none !important;
}

.google-reviews-carousel .google-review-card:hover {
    transform: none !important;
    border-color: rgba(66, 133, 244, 0.3);
}

@media (max-width: 992px) {
    .google-reviews-carousel .google-review-card {
        flex: 0 0 calc(50% - 1rem);
        width: calc(50% - 1rem);
    }
}

@media (max-width: 600px) {
    .google-reviews-carousel .google-review-card {
        flex: 0 0 100%;
        width: 100%;
    }
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.carousel-dots .dot:hover {
    background-color: var(--text-muted);
}

.carousel-dots .dot.active {
    background-color: #4285F4;
    transform: scale(1.2);
}

.google-maps-banner {
    padding: 6rem 0;
    background: linear-gradient(rgba(11, 44, 91, 0.88), rgba(6, 26, 56, 0.92)), url('../images/map_banner_bg.png') no-repeat center center / cover;
    color: var(--text-white);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.google-maps-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(66, 133, 244, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.reviews-summary-widget {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-bottom: 3.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.reviews-summary-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #4285F4; /* Google Blue highlight */
}

.reviews-summary-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.google-g-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.rating-score-container {
    display: flex;
    flex-direction: column;
}

.rating-score-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.rating-score {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1;
}

.rating-stars-container {
    display: flex;
    flex-direction: column;
}

.rating-stars-row {
    color: var(--accent-gold);
    font-size: 1.25rem;
    display: flex;
    gap: 2px;
}

.rating-count {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.reviews-summary-right .btn-google-review {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #ffffff;
    color: #4285F4;
    border: 1px solid #dadce0;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.reviews-summary-right .btn-google-review:hover {
    background: #f8f9fa;
    border-color: #c6c6c6;
    box-shadow: 0 1px 3px rgba(60,64,67,0.15);
    transform: translateY(-1px);
}

.google-review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.google-review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(66, 133, 244, 0.3); /* Subtle Google Blue hover border */
}

.google-review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    width: 100%;
}

.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.15rem;
    color: #ffffff;
    text-transform: uppercase;
    box-shadow: inset 0 -2px 0 rgba(0,0,0,0.1);
}

/* Authentic Google Avatar Colors */
.avatar-b { background-color: #4285F4; } /* Blue */
.avatar-r { background-color: #EA4335; } /* Red */
.avatar-y { background-color: #FBBC05; } /* Yellow */
.avatar-g { background-color: #34A853; } /* Green */
.avatar-p { background-color: #ab47bc; } /* Purple */
.avatar-o { background-color: #ff7043; } /* Orange */

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-main);
}

.reviewer-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.1rem;
}

.reviewer-meta .google-badge {
    color: #e37400; /* Local Guide Orange */
    font-weight: 600;
}

.google-brand-icon {
    display: flex;
    align-items: center;
}

.google-brand-icon svg {
    width: 18px;
    height: 18px;
}

.google-review-rating-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.google-review-stars {
    color: var(--accent-gold);
    display: flex;
    gap: 1px;
    font-size: 0.9rem;
}

.review-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.google-review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-main);
    flex-grow: 1;
}

@media (max-width: 768px) {
    .reviews-summary-widget {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 1.5rem;
    }
    .reviews-summary-left {
        flex-direction: column;
        gap: 1rem;
    }
    .reviews-summary-right {
        display: flex;
        justify-content: center;
    }
    .reviews-summary-right .btn-google-review {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   New Custom Content Sections (.gk-*)
   ========================================================================== */

/* Task 4: Small Trust Badges Row */
.gk-badges-row {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem 0;
    overflow: hidden;
    position: relative;
}
.gk-badges-row::before,
.gk-badges-row::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.gk-badges-row::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-card) 0%, transparent 100%);
}
.gk-badges-row::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-card) 0%, transparent 100%);
}
.gk-badges-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    max-width: 100%;
}
.gk-badges-track {
    display: flex;
    width: max-content;
    gap: 5rem;
    animation: gk-badges-marquee 30s linear infinite;
}
.gk-badges-row:hover .gk-badges-track {
    animation-play-state: paused;
}
.gk-badges-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}
.gk-badges-icon {
    width: 22px;
    height: 22px;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.gk-badges-icon svg {
    width: 100%;
    height: 100%;
}
.gk-badges-text {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
}
@keyframes gk-badges-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Task 1: Certifications & Quality Standards */
.gk-certification-section {
    padding: 5rem 0;
    background: var(--bg-main);
    position: relative;
}
.gk-certification-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.gk-certification-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.gk-certification-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(193, 39, 45, 0.2);
}
.gk-certification-preview {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: #f8f9fa;
    margin-bottom: 1.5rem;
    cursor: pointer;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
}
.gk-certification-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}
/* Ensure the square official logo is contained and centered nicely in its card */
.gk-logo-preview {
    background: #ffffff;
}
.gk-logo-preview .gk-certification-thumbnail {
    object-fit: contain;
    padding: 1.5rem;
}
.gk-certification-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
}
.gk-certification-overlay svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
}
.gk-certification-preview:hover .gk-certification-overlay {
    opacity: 1;
}
.gk-certification-preview:hover .gk-certification-thumbnail {
    transform: scale(1.05);
}
.gk-certification-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(193, 39, 45, 0.05);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}
.gk-certification-icon-box svg {
    width: 30px;
    height: 30px;
}
.gk-certification-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}
.gk-certification-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1; /* Pushes button/link to the bottom of the card for alignment */
}
.gk-certification-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    border-radius: var(--radius-sm);
    margin-top: 1.5rem;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
    background: transparent;
    cursor: pointer;
    width: 100%;
}
.gk-certification-link:hover {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

/* Lightbox Modal Styles */
.gk-modal {
    position: fixed;
    z-index: 10000; /* High z-index to overlay headers and page menus */
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gk-modal.active {
    display: flex;
    opacity: 1;
}
.gk-modal-close {
    position: absolute;
    top: 24px;
    right: 32px;
    color: #f8fafc;
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease, transform 0.2s ease;
    z-index: 10010;
}
.gk-modal-close:hover {
    color: var(--primary);
    transform: scale(1.1);
}
.gk-modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    width: 100%;
    position: relative;
    animation: gk-zoom 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.gk-modal-img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #ffffff;
}
.gk-modal-caption {
    color: #f1f5f9;
    margin: 1.25rem 0 1rem 0;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
}
.gk-modal-download {
    margin-top: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(193, 39, 45, 0.3);
}

@keyframes gk-zoom {
    from {
        transform: scale(0.92);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Task 3: Modern Laboratory */
.gk-facility-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 250, 250, 0.95) 100%), 
                url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M26 4h8v22h22v8H34v22h-8V34H4v-8h22V4z' fill='%23c1272d' fill-opacity='0.012' fill-rule='evenodd'/%3E%3C/svg%3E");
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}
.gk-facility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}
.gk-facility-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    color: var(--text-main);
}
.gk-facility-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}
.gk-facility-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.gk-facility-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.5;
}
.gk-facility-bullet {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(247, 181, 0, 0.1);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: -1px;
}
.gk-facility-bullet svg {
    width: 14px;
    height: 14px;
}
.gk-facility-image-box {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    background: linear-gradient(135deg, rgba(193, 39, 45, 0.04) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
}
/* Modern Laboratory Infrastructure Slider */
.gk-facility-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-md);
    aspect-ratio: 4 / 3;
    background: #f7f9fc;
}
@media (min-width: 993px) {
    .gk-facility-slider {
        aspect-ratio: auto;
        flex-grow: 1;
        height: 100%;
    }
}
.gk-facility-slides {
    position: relative;
    width: 100%;
    height: 100%;
}
.gk-facility-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}
.gk-facility-slide.active {
    opacity: 1;
    z-index: 2;
}
.gk-facility-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gk-facility-slider-dots {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
    background: rgba(0, 0, 0, 0.45);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.facility-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: all 0.3s ease;
}
.facility-dot.active {
    background: #ffffff;
    transform: scale(1.2);
}

/* Task 2: Home Sample Collection */
.gk-homecollection-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(26, 26, 28, 0.97) 0%, rgba(15, 15, 17, 0.99) 100%), url('../images/home_collection_banner_bg.png') no-repeat right -150px center / 750px;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.gk-homecollection-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}
.gk-homecollection-container h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}
.gk-homecollection-container p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 3rem;
}
.gk-homecollection-features {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}
.gk-homecollection-feature-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: background 0.3s ease;
}
.gk-homecollection-feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
}
.gk-homecollection-feature-icon {
    width: 28px;
    height: 28px;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gk-homecollection-feature-icon svg {
    width: 100%;
    height: 100%;
}
.gk-homecollection-feature-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .gk-homecollection-features {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 992px) {
    .gk-certification-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .gk-facility-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}
@media (max-width: 768px) {
    .gk-homecollection-features {
        grid-template-columns: 1fr 1fr;
    }
    .gk-facility-list {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .gk-homecollection-features {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 992px) {
    .gk-homecollection-section {
        background: linear-gradient(135deg, rgba(26, 26, 28, 0.98) 0%, rgba(15, 15, 17, 0.99) 100%);
    }
}

/* ==========================================================================
   Meet Our Chief Pathologist Section Styles
   ========================================================================== */
.gk-pathologist-section {
    padding: 100px 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
}

.gk-pathologist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
}

/* Left side styling - Photo Placeholder */
.gk-pathologist-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 320px;
    justify-self: end;
}

.doctor-photo-placeholder {
    width: 100%;
    height: 380px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.doctor-photo-placeholder:hover {
    background-color: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
}

.placeholder-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #f1f5f9;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.placeholder-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.placeholder-text-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.placeholder-text-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.gk-pathologist-left .pathologist-ctas {
    width: 100%;
    display: flex;
    margin-top: 0;
}

.gk-pathologist-left .pathologist-ctas .btn {
    width: 100%;
    text-align: center;
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

/* Right side content */
.gk-pathologist-right {
    width: 100%;
    max-width: 480px;
    justify-self: start;
}

.doctor-minimal-info {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.doctor-minimal-info .doctor-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #2563eb;
    margin: 0;
}

.doctor-minimal-info h2 {
    font-size: 2.25rem;
    color: var(--text-main);
    font-weight: 800;
    margin: 0;
    line-height: 1.15;
}

.doctor-minimal-intro {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
}

/* Credentials Clean Table Layout */
.doctor-credentials-clean {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    padding: 1.25rem 0;
}

.cred-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

.cred-key {
    font-weight: 500;
    color: var(--text-muted);
}

.cred-val {
    font-weight: 700;
    color: var(--text-main);
}

/* Trust Line */
.doctor-trust-line {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 0.25rem;
}

.doctor-trust-line span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.doctor-trust-line span .check-symbol {
    color: #10b981;
    font-weight: 700;
}

/* Responsive Behavior */
@media (max-width: 992px) {
    .gk-pathologist-section {
        padding: 80px 0;
    }
    
    .gk-pathologist-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3.5rem;
    }
    
    .gk-pathologist-left {
        max-width: 280px;
    }
    
    .doctor-photo-placeholder {
        height: 330px;
    }
    
    .gk-pathologist-right {
        max-width: 420px;
    }
}

@media (max-width: 768px) {
    .gk-pathologist-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        justify-items: center;
    }
    
    .gk-pathologist-left {
        width: 100%;
        max-width: 320px;
        justify-self: center;
    }
    
    .doctor-photo-placeholder {
        height: 380px;
    }
    
    .gk-pathologist-right {
        max-width: 100%;
        justify-self: center;
    }
    
    .doctor-minimal-info h2 {
        font-size: 2rem;
    }
    
    .doctor-trust-line {
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .gk-pathologist-section {
        padding: 60px 0;
    }
    
    .gk-pathologist-grid {
        gap: 2.25rem;
    }
    
    .doctor-photo-placeholder {
        height: 330px;
    }
    
    .doctor-minimal-info h2 {
        font-size: 1.75rem;
    }
    
    .doctor-trust-line {
        flex-direction: column;
        gap: 0.5rem;
    }
}




