/**
 * assets/css/style.css
 * Kiwi Medical Scrubs - Ultra-Premium Redesign
 * Clinic-Grade E-Commerce Experience
 */

/* ==============================
   CSS CUSTOM PROPERTIES
============================== */
:root {
    /* Color Palette */
    --color-primary: #0A1628;
    --color-white: #FAFCFF;
    --color-accent: #00B4D8;
    --color-accent-glow: #90E0EF;
    --color-surface: #F4F7F9;
    --color-text-heading: #0D1117;
    --color-text-body: #4A5568;
    --color-error: #E63946;
    --color-success: #10B981;

    /* Gradients */
    --gradient-hero: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.15) 0%, transparent 70%);
    --gradient-footer: linear-gradient(135deg, #0A1628 0%, #0E2A3D 50%, #0A1628 100%);

    /* Typography */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'DM Mono', monospace;

    /* Spacing */
    --header-height: 72px;
    --container-max: 1280px;
    --section-padding: 120px;
    --section-padding-mobile: 64px;

    /* Effects */
    --glass-bg: rgba(255, 255, 255, 0.72);
    --glass-border: rgba(255, 255, 255, 0.45);
    --glass-shadow: 0 8px 32px rgba(0, 180, 216, 0.08);
    --blur-amount: 20px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ==============================
   BASE STYLES
============================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--color-white);
    color: var(--color-text-body);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-text-heading);
}

p {
    color: var(--color-text-body);
    line-height: 1.7;
}

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

/* ==============================
   TEXTURED BACKGROUNDS
============================== */

/* Dot Grid Pattern */
.bg-dot-grid {
    background-image: radial-gradient(circle, var(--color-accent) 1px, transparent 1px);
    background-size: 24px 24px;
}

/* Hex Grid Pattern */
.bg-hex-grid {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%2300B4D8' fill-opacity='0.04'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Cross Hatch Pattern */
.bg-cross-hatch {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%2300B4D8' stroke-opacity='0.03'%3E%3Cpath d='M30 0v60M0 30h60'/%3E%3C/g%3E%3C/svg%3E");
}

/* Noise Texture Overlay */
.noise-overlay {
    position: relative;
}

.noise-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
}

/* ==============================
   CONTAINER & GRID
============================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

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

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

@media (min-width: 1024px) {
    .grid-products {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ==============================
   BUTTONS
============================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-accent);
    color: var(--color-primary);
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 6px;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn-primary:hover {
    background-color: #00A3C4;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 180, 216, 0.3);
}

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

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--color-white);
    padding: 13px 27px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 6px;
    transition: all var(--transition-base);
    border: 1.5px solid var(--color-white);
    cursor: pointer;
    text-decoration: none;
}

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

/* Glow Animation for CTA */
@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 180, 216, 0.3), 0 0 40px rgba(0, 180, 216, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 180, 216, 0.5), 0 0 60px rgba(0, 180, 216, 0.2);
    }
}

.btn-glow {
    animation: glow-pulse 3s ease-in-out infinite;
}

/* Ripple Effect */
.btn-ripple {
    position: relative;
    overflow: hidden;
}

.btn-ripple::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s;
}

.btn-ripple:active::after {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
}

/* ==============================
   INPUTS & FORMS
============================== */
.input-field {
    width: 100%;
    background-color: var(--color-white);
    border: 1px solid rgba(10, 22, 40, 0.1);
    padding: 14px 16px;
    border-radius: 6px;
    outline: none;
    transition: all var(--transition-fast);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text-heading);
}

.input-field:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
}

.input-field::placeholder {
    color: #9CA3AF;
}

/* Floating Label Effect */
.input-float-label {
    position: relative;
}

.input-float-label label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
    font-size: 14px;
    pointer-events: none;
    transition: all var(--transition-fast);
}

.input-float-label input:focus + label,
.input-float-label input:not(:placeholder-shown) + label {
    top: 0;
    left: 12px;
    font-size: 11px;
    background: var(--color-white);
    padding: 0 4px;
    color: var(--color-accent);
}

/* Select Dropdown */
select.input-field {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2300B4D8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

/* Radio Buttons */
input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(10, 22, 40, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
}

input[type="radio"]:checked {
    border-color: var(--color-accent);
    background: var(--color-accent);
    box-shadow: inset 0 0 0 3px var(--color-white);
}

/* Checkboxes */
input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(10, 22, 40, 0.2);
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
}

input[type="checkbox"]:checked {
    border-color: var(--color-accent);
    background: var(--color-accent);
}

input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid var(--color-white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* ==============================
   PRODUCT CARDS
============================== */
.product-card {
    position: relative;
    cursor: pointer;
    border-radius: 20px;
    overflow: hidden;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-amount)) saturate(180%);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: all var(--transition-base);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 180, 216, 0.15);
}

.product-card__image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background-color: var(--color-surface);
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card__info {
    padding: 20px;
}

.product-card__category {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    background: rgba(0, 180, 216, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.product-card__title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 8px;
    transition: color var(--transition-fast);
}

.product-card:hover .product-card__title {
    color: var(--color-accent);
}

.product-card__price {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-heading);
}

.product-card__price--original {
    font-size: 13px;
    font-weight: 400;
    color: #9CA3AF;
    text-decoration: line-through;
    margin-left: 8px;
}

/* Color Swatches */
.color-swatches {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.color-swatch {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 0 0 2px var(--color-white), 0 0 0 4px rgba(0, 180, 216, 0.2);
}

.color-swatch:hover,
.color-swatch--active {
    transform: scale(1.15);
    box-shadow: 0 0 0 2px var(--color-white), 0 0 0 4px var(--color-accent);
}

/* Quick View Button */
.product-card__quick-view {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.8), transparent);
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

.product-card:hover .product-card__quick-view {
    transform: translateY(0);
}

.product-card__quick-view button {
    width: 100%;
    padding: 10px;
    background: var(--color-white);
    color: var(--color-primary);
    border: none;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.product-card__quick-view button:hover {
    background: var(--color-accent);
}

/* ==============================
   BADGES & TAGS
============================== */
.badge {
    display: inline-block;
    padding: 6px 12px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
}

.badge--sale {
    background-color: var(--color-error);
    color: var(--color-white);
}

.badge--new {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

/* ==============================
   QUANTITY SELECTOR
============================== */
.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid rgba(10, 22, 40, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

.qty-selector__btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--color-text-body);
}

.qty-selector__btn:hover {
    background: var(--color-surface);
    color: var(--color-accent);
}

.qty-selector__input {
    width: 50px;
    height: 44px;
    text-align: center;
    border: none;
    border-left: 1px solid rgba(10, 22, 40, 0.1);
    border-right: 1px solid rgba(10, 22, 40, 0.1);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    -moz-appearance: textfield;
}

.qty-selector__input::-webkit-outer-spin-button,
.qty-selector__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ==============================
   NAVIGATION
============================== */
.header-scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-amount)) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
}

.nav-link {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-body);
    padding: 8px 0;
    transition: color var(--transition-fast);
}

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

.nav-link:hover,
.nav-link--active {
    color: var(--color-accent);
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-primary);
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform var(--transition-base);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu a {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--color-white);
    margin: 16px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-base);
}

.mobile-menu.open a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.open a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.3s; }

/* ==============================
   SECTION STYLES
============================== */
.section-header {
    margin-bottom: 48px;
    text-align: center;
}

.section-header__subtitle {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.section-header__title {
    font-size: 40px;
    font-weight: 800;
    color: var(--color-text-heading);
}

/* Section Backgrounds */
.section--light {
    background-color: var(--color-surface);
}

.section--dark {
    background-color: var(--color-primary);
}

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

.section--dark p {
    color: rgba(255, 255, 255, 0.7);
}

/* ==============================
   TRUST BAR
============================== */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(10, 22, 40, 0.08);
    flex-wrap: wrap;
}

.trust-bar__item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-bar__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 180, 216, 0.1);
    border-radius: 10px;
    color: var(--color-accent);
}

.trust-bar__text {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-heading);
}

/* ==============================
   HERO SECTION
============================== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--color-primary);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, var(--color-accent-glow) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.04;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero__content {
    position: relative;
    z-index: 10;
    max-width: 55%;
}

.hero__image {
    position: relative;
    z-index: 10;
    max-width: 45%;
}

/* Floating Particles */
.hero__particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--color-accent-glow);
    border-radius: 50%;
    opacity: 0.6;
    animation: float-particle 20s infinite;
}

@keyframes float-particle {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-30px) translateX(20px);
    }
    50% {
        transform: translateY(-10px) translateX(-15px);
    }
    75% {
        transform: translateY(-40px) translateX(10px);
    }
}

/* Word by Word Animation */
.hero__title span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: word-reveal 0.6s ease forwards;
}

@keyframes word-reveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gradient Text */
.text-gradient {
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-accent-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==============================
   ANIMATIONS
============================== */

/* Fade Up */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeUp 0.8s ease forwards;
}

/* Staggered delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* Scale In */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

.animate-scale-in {
    animation: scaleIn 0.8s ease forwards;
}

/* Scroll Animation Observer */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Image Parallax */
.parallax-img {
    transition: transform 0.1s ease-out;
}

/* ==============================
   UTILITY CLASSES
============================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.uppercase { text-transform: uppercase; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* Color Utilities */
.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-text-body); }
.text-accent { color: var(--color-accent); }
.text-white { color: var(--color-white); }
.text-error { color: var(--color-error); }
.text-success { color: var(--color-success); }

/* Background Utilities */
.bg-primary { background-color: var(--color-primary); }
.bg-white { background-color: var(--color-white); }
.bg-surface { background-color: var(--color-surface); }
.bg-accent { background-color: var(--color-accent); }

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .hero__content,
    .hero__image {
        max-width: 100%;
    }

    .hero {
        min-height: auto;
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-mobile);
    }

    .container {
        padding: 0 16px;
    }

    .section-header__title {
        font-size: 28px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 12px;
    }

    .grid-products {
        gap: 16px;
    }

    .trust-bar {
        gap: 24px;
    }

    .trust-bar__item {
        flex: 1 1 calc(50% - 12px);
        justify-content: center;
    }
}

/* Mobile Scrollbar */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ==============================
   CARTOON ICONS (SVG)
============================== */
.icon-cart {
    width: 24px;
    height: 24px;
}

.icon-cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    background: var(--color-error);
    color: var(--color-white);
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-fast);
}

.icon-cart-badge.bounce {
    animation: bounce 0.4s ease;
}

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* ==============================
   FOOTER STYLES
============================== */
.footer {
    background: var(--gradient-footer);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.footer::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='%2300B4D8' fill-opacity='0.05'%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");
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer a:hover {
    color: var(--color-accent-glow);
}

.footer h4 {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.footer input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer input:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.2);
}

/* ==============================
   MEDICAL TRUST SIGNALS
============================== */
.caduceus-icon {
    width: 24px;
    height: 24px;
    fill: var(--color-accent);
}

.shield-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 180, 216, 0.1);
    border-radius: 20px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.shield-badge svg {
    width: 16px;
    height: 16px;
}