﻿/* * DESIGN SYSTEM: THE HELIX PROTOCOL v2.0
 * Architect: Health Consultix Systems
 * Focus: High-Teal Aesthetic, Glassmorphism, Animation
 */

:root {
    /* 1. The Aquamarine Helix Palette (Extended) */
    --brand-teal-950: #022c22;
    --brand-teal-900: #134e4a;
    /* Deepest Teal - Text & Backgrounds */
    --brand-teal-800: #115e59;
    --brand-teal-700: #0f766e;
    /* Corporate Identity */
    --brand-teal-600: #0d9488;
    --brand-teal-500: #14b8a6;
    /* Primary Action */
    --brand-teal-400: #2dd4bf;
    --brand-teal-300: #5eead4;
    /* Accents/Glow */
    --brand-teal-200: #99f6e4;
    --brand-teal-100: #ccfbf1;
    --brand-teal-50: #f0fdfa;
    /* Tints */

    /* 2. The Clean Room Neutrals */
    --surface-clinical: #f8fafc;
    --surface-card: #ffffff;
    --surface-glass: rgba(255, 255, 255, 0.7);
    --surface-glass-dark: rgba(15, 23, 42, 0.6);

    --text-primary: #0f172a;
    /* Slate-900 */
    --text-secondary: #334155;
    /* Slate-700 - Increased contrast */
    --text-tertiary: #64748b;
    /* Slate-500 */

    --border-subtle: #e2e8f0;
    /* Slate-200 */
    --border-glass: rgba(255, 255, 255, 0.5);

    /* 3. PMO Status Indicators */
    --status-iso: #10b981;
    /* Emerald-500 */

    /* 4. Spacing & Radius */
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --space-unit: 8px;

    /* 5. Shadows & Glows */
    --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);
    --shadow-teal-glow: 0 0 20px rgba(94, 234, 212, 0.4);
    --shadow-lifted: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);

    /* 6. Transitions */
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* RESET & BASE */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--surface-clinical);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--brand-teal-900);
    line-height: 1.25;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

/* UTILITIES */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.text-teal {
    color: var(--brand-teal-600);
}

.font-serif {
    font-family: 'Merriweather', serif;
}

.section-padding {
    padding: 100px 0;
    scroll-margin-top: 100px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-back);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-teal-500), var(--brand-teal-600));
    color: white;
    box-shadow: 0 4px 6px -1px rgba(20, 184, 166, 0.3);
    border: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--brand-teal-400), var(--brand-teal-500));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.btn-primary span {
    position: relative;
    z-index: 2;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(20, 184, 166, 0.4), var(--shadow-teal-glow);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--brand-teal-600);
    color: var(--brand-teal-700);
}

.btn-outline:hover {
    background: var(--brand-teal-50);
    border-color: var(--brand-teal-500);
    color: var(--brand-teal-800);
    transform: translateY(-2px);
}

/* HEADER & NAV */
header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    animation: slideDown 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--brand-teal-900);
    letter-spacing: -0.02em;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.95;
}

.logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
    /* Static logo, no heavy shadows needed for clean look */
}

/* NAVIGATION */
.nav-links {
    display: flex;
    gap: 8px;
    /* Refined spacing */
    align-items: center;
    padding: 0;
    background: transparent;
    border: none;
    backdrop-filter: none;
}

.nav-links a:not(.btn) {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 10px 18px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.01em;
}

.nav-links a:not(.btn):hover {
    color: var(--brand-teal-700);
    background: var(--brand-teal-50);
    /* Clean background highlight instead of pill lift */
}

/* Subtle Active/Hover Indicator */
.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background-color: var(--brand-teal-500);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    border-radius: 2px;
}

.nav-links a:not(.btn):hover::after {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
}

/* Call to Action Button */
.nav-links .btn {
    margin-left: 16px;
    background: linear-gradient(135deg, var(--brand-teal-600) 0%, var(--brand-teal-500) 100%);
    color: white !important;
    padding: 10px 24px !important;
    border-radius: 100px;
    /* Pill shape */
    box-shadow: 0 4px 6px -1px rgba(20, 184, 166, 0.2);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.nav-links .btn:hover {
    box-shadow: 0 10px 15px -3px rgba(20, 184, 166, 0.4), 0 4px 6px -2px rgba(20, 184, 166, 0.2);
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--brand-teal-500) 0%, var(--brand-teal-400) 100%);
}

.nav-links .btn span {
    position: relative;
    z-index: 2;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--brand-teal-900);
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.mobile-menu-btn:hover {
    background: var(--brand-teal-50);
}


.hero-iso-logo {
    margin-top: -22px;
    height: 110px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

/* .hero-iso-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
} */



/* HERO SECTION - The "Wow" Factor */
.hero {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 10% 20%, rgba(204, 251, 241, 0.4) 0%, rgba(255, 255, 255, 0) 40%),
        radial-gradient(circle at 90% 80%, rgba(94, 234, 212, 0.15) 0%, rgba(255, 255, 255, 0) 40%);
}

/* DNA Background Effect */
.dna-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.6;
    background-image:
        linear-gradient(rgba(20, 184, 166, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(20, 184, 166, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    animation: slideUp 0.8s ease-out;
}

.hero-content h1 {
    margin-top: 40px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--brand-teal-900) 0%, var(--brand-teal-700) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.hero-content p {
    font-family: 'Merriweather', serif;
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-subtle);
}

.hero-stats div span {
    display: block;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--brand-teal-600);
}

.hero-stats div small {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Dashboard Mockup Animation */
.hero-visual {
    position: relative;
    perspective: 1000px;
    animation: float 6s ease-in-out infinite;
}

.dashboard-mockup {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    border: 1px solid var(--border-glass);
    padding: 32px;
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.hero-visual:hover .dashboard-mockup {
    transform: rotateY(0deg) rotateX(0deg);
}

/* Animated Chart Bars */
@keyframes growBar {
    from {
        height: 0;
    }

    to {
        height: 100%;
    }
}

.chart-bar {
    animation: growBar 1.5s ease-out forwards;
    transform-origin: bottom;
}

/* SECTIONS COMMONS */
h2.section-title {
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

/* PMO / CARDS */
.pmo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.pmo-card {
    background: white;
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.pmo-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lifted);
    border-color: var(--brand-teal-200);
}

.pmo-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-teal-400), var(--brand-teal-600));
    opacity: 0.8;
}

.pmo-icon {
    width: 64px;
    height: 64px;
    background: var(--brand-teal-50);
    color: var(--brand-teal-600);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
    transition: all 0.3s ease;
}

.pmo-card:hover .pmo-icon {
    background: var(--brand-teal-500);
    color: white;
    transform: scale(1.1) rotate(-5deg);
}

.pmo-card h3 {
    margin-bottom: 16px;
    font-size: 1.5rem;
}

/* SERVICES TABS */
.services-section {
    margin-top: -70px;
    background: linear-gradient(to bottom, var(--surface-clinical), #f1f5f9);
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.tab-btn {
    background: white;
    border: 1px solid var(--border-subtle);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-tertiary);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-sm);
}

.tab-btn:hover {
    background: var(--brand-teal-50);
    color: var(--brand-teal-700);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: var(--brand-teal-900);
    color: white;
    border-color: var(--brand-teal-900);
    box-shadow: var(--shadow-md);
}

.tab-content {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
    animation: fadeIn 0.5s ease-out;
}

.tab-content.active {
    display: grid;
}

.service-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--brand-teal-300);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-card h4 {
    color: var(--brand-teal-800);
    margin-bottom: 8px;
}

.check-icon {
    background: var(--brand-teal-100);
    color: var(--brand-teal-600);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 14px;
}

/* TEAM / AUTHORITY */
.profile-card {
    display: flex;
    margin-top: -100px;
    align-items: center;
    gap: 64px;
    background: linear-gradient(135deg, var(--brand-teal-50) 0%, white 100%);
    padding: 30px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--brand-teal-100);
    box-shadow: var(--shadow-lg);
}

.profile-img {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 8px solid white;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Removed filter: grayscale(100%); */
    animation: profile-breathe 6s ease-in-out infinite;
}

@keyframes profile-breathe {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.profile-content blockquote {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--brand-teal-900);
    margin-bottom: 32px;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.profile-content blockquote::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: -20px;
    font-size: 8rem;
    color: var(--brand-teal-100);
    font-family: sans-serif;
    z-index: -1;
    opacity: 0.5;
}

/* FOOTER */
footer {
    background: #020617;
    /* Slate-950 */
    color: #f8fafc;
    padding: 80px 0 32px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(94, 234, 212, 0.3);
}

.footer-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(20, 184, 166, 0.07) 0%, transparent 40%),
        radial-gradient(circle at 10% 80%, rgba(94, 234, 212, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.footer-bg-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2314b8a6' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    mask-image: linear-gradient(to bottom, black 20%, transparent 90%);
    z-index: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1.2fr;
    gap: 64px;
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
}

/* Brand Column */
.footer-logo {
    font-size: 1.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 16px;
    color: white;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
}

.footer-logo img {
    height: 48px;
    width: auto;
    border-radius: 8px;
    background: white;
    padding: 4px;
    box-shadow: 0 0 20px rgba(94, 234, 212, 0.3);
}

.footer-values h5 {
    color: var(--brand-teal-300);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    opacity: 0.9;
}

.footer-values p {
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.6;
    max-width: 90%;
    opacity: 0.8;
}

/* Links & Contact Columns */
.footer-col h4 {
    color: white;
    margin-bottom: 24px;
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--brand-teal-500);
    border-radius: 2px;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col a:not(.btn) {
    color: #94a3b8;
    /* Slate-400 */
    font-weight: 400;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.footer-col a:not(.btn):hover {
    color: var(--brand-teal-300);
    transform: translateX(4px);
    text-shadow: 0 0 12px rgba(45, 212, 191, 0.4);
}

.contact-col p {
    margin-bottom: 24px;
    font-family: 'Merriweather', serif;
    font-style: italic;
    color: #cbd5e1;
}

/* Footer Button */
.btn-footer {
    background: white;
    color: var(--brand-teal-900) !important;
    border: 1px solid white;
    margin-top: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-footer::before {
    background: linear-gradient(135deg, var(--brand-teal-50), white);
}

.btn-footer:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(20, 184, 166, 0.5);
    background: var(--brand-teal-50);
    color: var(--brand-teal-800) !important;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #64748b;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .copyright {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-values {
        text-align: center;
    }

    .footer-values p {
        margin: 0 auto;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* ANIMATIONS */
@keyframes float {
    0% {
        transform: translateY(0px) rotateY(-5deg) rotateX(2deg);
    }

    50% {
        transform: translateY(-15px) rotateY(-5deg) rotateX(2deg);
    }

    100% {
        transform: translateY(0px) rotateY(-5deg) rotateX(2deg);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        margin: 0 auto 32px;
    }

    .hero-stats {
        justify-content: center;
    }

    .pmo-grid,
    .tab-content.active,
    .footer-grid,
    .profile-card {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: center;
    }

    /* Footer Specific Responsive Fixes */
    .footer-grid {
        gap: 48px;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-values {
        text-align: center;
        padding: 0 16px;
    }

    .footer-values p {
        margin: 0 auto;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .copyright {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .profile-card {
        padding: 32px;
        gap: 32px;
    }

    .profile-img {
        margin: 0 auto;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
    animation: none;
    /* Pause vibration on hover */
}

.whatsapp-float img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
}

/* ABOUT SECTION */
.about-section {
    background-color: white;
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.about-card {
    background: white;
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, var(--brand-teal-400), var(--brand-teal-600));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lifted), 0 0 0 1px var(--brand-teal-100);
    border-color: transparent;
}

.about-card:hover::before {
    opacity: 1;
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--brand-teal-50), white);
    border: 1px solid var(--brand-teal-100);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--brand-teal-600);
    font-size: 28px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.about-card:hover .icon-wrapper {
    background: linear-gradient(135deg, var(--brand-teal-500), var(--brand-teal-600));
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px -5px rgba(20, 184, 166, 0.4);
    border-color: transparent;
}

.about-card h3 {
    margin-bottom: 16px;
    font-size: 1.5rem;
    color: var(--brand-teal-900);
    font-weight: 700;
}

.about-card p {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 0;
    flex-grow: 1;
}


.values-stripe {
    margin-top: 100px;
    padding-top: 80px;
    border-top: 1px solid var(--border-subtle);
    position: relative;
}

.values-heading {
    text-align: center;
    background: linear-gradient(135deg, var(--brand-teal-900) 0%, var(--brand-teal-700) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 56px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-badge {
    background: white;
    color: var(--text-secondary);
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid var(--border-subtle);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.value-badge:hover {
    border-color: var(--brand-teal-300);
    color: var(--brand-teal-800);
    background: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.value-badge.active {
    background: linear-gradient(135deg, var(--brand-teal-600), var(--brand-teal-500));
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 16px -4px rgba(13, 148, 136, 0.4);
    transform: translateY(-2px);
    padding-left: 36px;
    /* Space for checkmark */
}

.value-badge.active::before {
    content: '\2713';
    position: absolute;
    left: 14px;
    font-weight: 800;
    font-size: 0.9em;
}

.values-description {
    margin: 48px auto 0;
    max-width: 800px;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.05),
        0 8px 10px -6px rgba(0, 0, 0, 0.01),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    position: relative;
    text-align: center;
}

.values-description::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: 40px;
    font-size: 8rem;
    background: linear-gradient(to bottom, var(--brand-teal-100), transparent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: serif;
    line-height: 1;
    opacity: 0.6;
    pointer-events: none;
}

.value-text {
    font-size: 1.35rem;
    color: var(--brand-teal-900);
    font-family: 'Merriweather', serif;
    font-weight: 300;
    margin: 0;
    line-height: 1.6;
    animation: fadeIn 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    z-index: 2;
}

/* IOS Badge - Floating Element */
.iso-float-badge {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 8px 10px -6px rgba(0, 0, 0, 0.1),
        0 0 0 4px rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    animation: floatBadge 5s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.iso-float-badge img {
    width: 85%;
    height: auto;
    object-fit: contain;
}

.iso-float-badge:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow:
        0 25px 50px -12px rgba(20, 184, 166, 0.25),
        0 0 0 4px rgba(20, 184, 166, 0.3);
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* DISCLAIMER: ADDED TEAM SECTION */
.team-section {
    background: linear-gradient(to bottom, white, var(--surface-clinical));
    position: relative;
    overflow: hidden;
    padding-top: 60px;
    padding-bottom: 100px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.team-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-subtle);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lifted);
    border-color: var(--brand-teal-300);
}

.team-img-wrapper {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    filter: grayscale(20%);
}

.team-card:hover .team-img-wrapper img {
    transform: scale(1.03);
    filter: grayscale(0%);
}

.team-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-teal-400), var(--brand-teal-600));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.team-content {
    padding: 32px 24px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.team-content h3 {
    font-size: 1.25rem;
    color: var(--brand-teal-900);
    margin-bottom: 4px;
}

.team-content .role {
    font-size: 0.85rem;
    color: var(--brand-teal-600);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    display: block;
}

.team-content .desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 400;
}