a:focus, a:hover, a:active {
    color: white;
}

.btn-primary,
.hero-btn-primary {
    box-sizing: border-box;
}

/* Junction Skin Clinic Brand Colors */
:root {
    --primary-blue: #02709d;
    --light-blue: #7BC4D9;
    --light-teal: #A0D8E8;
    --gravel-grey: #49484a;
}

/* Base Container */
.container {
    margin: 0 auto;
    padding: 0 40px;
}

.when-section,
.services-section,
.team-section,
.download-section,
.why-section,
.faq-section,
.contact-section {
    padding: 80px 125px 80px 0;
}

/* ============================================
    HERO HEADER - PREMIUM ABOVE THE FOLD
    ============================================ */

.skin-clinic-header {
    background: linear-gradient(135deg, #f0f9fc 0%, #ffffff 50%, #fafbfc 100%);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 0;
    padding-right: 135px;
}

/* Organic flowing shapes in background */
.skin-clinic-header::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -8%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(123, 196, 217, 0.12) 0%, transparent 70%);
    border-radius: 42% 58% 65% 35% / 45% 55% 45% 55%;
    z-index: 0;
    animation: heroFloat 22s ease-in-out infinite;
}

.skin-clinic-header::after {
    content: '';
    position: absolute;
    bottom: -12%;
    left: -12%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(2, 112, 157, 0.08) 0%, transparent 70%);
    border-radius: 55% 45% 40% 60% / 55% 35% 65% 45%;
    z-index: 0;
    animation: heroFloat 28s ease-in-out infinite reverse;
}

@keyframes heroFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(40px, -35px) rotate(6deg);
    }
    66% {
        transform: translate(-25px, 25px) rotate(-6deg);
    }
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 40px 80px;
    width: 100%;
}

.hero-top-bar {
    position: absolute;
    top: 24px;
    left: 40px;
    z-index: 10;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
}

.back-link:hover {
    background: rgba(255, 255, 255, 1);
    color: #015a7d;
    transform: translateX(-4px);
}

.back-link::before {
    content: '←';
    font-size: 16px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
}

/* ============================================
    LEFT COLUMN - MAIN CONTENT
    ============================================ */

.hero-main-content {
    position: relative;
    z-index: 2;
}

.hero-logo-wrapper {
    margin-bottom: 32px;
    position: relative;
    padding: 40px 0;
}

.skin-clinic-logo {
    max-width: 280px;
    height: 280px;
    display: block;
    position: relative;
    z-index: 2;
}

/* Morphing blob behind logo (similar to hero-visual-blob) */
.logo-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(123, 196, 217, 0.12) 0%, rgba(2, 112, 157, 0.08) 100%);
    border-radius: 45% 55% 60% 40% / 50% 55% 45% 50%;
    z-index: 0;
    animation: logoMorph 14s ease-in-out infinite;
    pointer-events: none;
}

@keyframes logoMorph {
    0%, 100% {
        border-radius: 45% 55% 60% 40% / 50% 55% 45% 50%;
        transform: translate(-50%, -50%) rotate(0deg);
    }
    50% {
        border-radius: 60% 40% 45% 55% / 40% 50% 60% 50%;
        transform: translate(-50%, -50%) rotate(10deg);
    }
}

.hero-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #02709d;
    margin: 0 0 24px 0;
    padding: 10px 18px;
    background: rgba(2, 112, 157, 0.08);
    border-radius: 24px;
}

.hero-location-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #02709d;
    border-radius: 50%;
    animation: locationPulse 2s ease-in-out infinite;
}

@keyframes locationPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-main-headline {
    font-size: 58px;
    font-weight: 700;
    line-height: 1.06;
    color: #1a1a1a;
    margin: 0 0 28px 0;
    letter-spacing: -1.2px;
}

.hero-headline-accent {
    color: #02709d;
    display: block;
    position: relative;
}

.hero-main-subheading {
    font-size: 21px;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0 0 40px 0;
    max-width: 600px;
    font-weight: 400;
}

/* Trust Signals */
.hero-trust-signals {
    list-style: none;
    padding: 0;
    margin: 0 0 44px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.hero-trust-signals li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid rgba(2, 112, 157, 0.08);
}

.hero-trust-signals li:hover {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(2, 112, 157, 0.14);
    transform: translateY(-3px);
    border-color: rgba(2, 112, 157, 0.2);
}

.hero-trust-icon {
    width: 24px;
    height: 24px;
    color: #02709d;
    flex-shrink: 0;
}

/* CTA Buttons */
.hero-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 52px;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #02709d 0%, #015a7d 100%);
    border: none;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(2, 112, 157, 0.3);
}

.hero-btn-primary:hover {
    background: linear-gradient(135deg, #015a7d 0%, #014561 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(2, 112, 157, 0.4);
    color: #ffffff;
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 600;
    color: #02709d;
    background-color: #ffffff;
    border: 2px solid rgba(2, 112, 157, 0.2);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hero-btn-secondary:hover {
    background-color: #f8fbfc;
    border-color: #02709d;
    color: #015a7d;
    box-shadow: 0 4px 18px rgba(2, 112, 157, 0.15);
}

/* Provider Info */
.hero-provider-info {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px 0 0;
    border-top: 2px solid rgba(2, 112, 157, 0.12);
}

.hero-provider-photos {
    display: flex;
    position: relative;
}

.hero-provider-avatar {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 4px solid #ffffff;
    object-fit: cover;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
    transition: transform 0.3s ease;
}

.hero-provider-avatar:hover {
    transform: translateY(-6px) scale(1.05);
    z-index: 10;
}

.hero-provider-text {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.hero-provider-text strong {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 16px;
}

.hero-provider-meta {
    color: #777;
    font-size: 14px;
    display: block;
    margin-top: 4px;
}

/* ============================================
    RIGHT COLUMN - ORGANIC VISUAL
    ============================================ */

.hero-visual-column {
    position: relative;
    z-index: 2;
}

.hero-visual-container {
    position: relative;
}

/* Large flowing background blob */
.hero-visual-blob {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 550px;
    height: 550px;
    background: linear-gradient(135deg, rgba(123, 196, 217, 0.18) 0%, rgba(2, 112, 157, 0.1) 100%);
    border-radius: 48% 52% 58% 42% / 52% 58% 42% 48%;
    z-index: 0;
    animation: heroMorph 16s ease-in-out infinite;
}

@keyframes heroMorph {
    0%, 100% {
        border-radius: 48% 52% 58% 42% / 52% 58% 42% 48%;
        transform: rotate(0deg);
    }
    50% {
        border-radius: 58% 42% 48% 52% / 42% 52% 58% 48%;
        transform: rotate(8deg);
    }
}

/* Layered wave curves */
.hero-wave-layers {
    position: absolute;
    top: 30px;
    left: -70px;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.5;
}

.hero-wave-curve {
    position: absolute;
    border: 3px solid;
    border-radius: 52% 48% 58% 42% / 58% 52% 48% 42%;
    opacity: 0.35;
}

.hero-wave-curve:nth-child(1) {
    width: 320px;
    height: 320px;
    border-color: #7BC4D9;
    top: 0;
    left: 0;
    animation: waveRotate 24s linear infinite;
}

.hero-wave-curve:nth-child(2) {
    width: 260px;
    height: 260px;
    border-color: #02709d;
    top: 50px;
    left: 50px;
    animation: waveRotate 30s linear infinite reverse;
}

@keyframes waveRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Main info card */
.hero-info-card {
    position: relative;
    z-index: 2;
    background: #ffffff;
    border-radius: 24px;
    padding: 44px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 2px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(2, 112, 157, 0.12);
}

.hero-card-icon-wrapper {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.hero-info-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 24px 0;
    text-align: center;
}

.hero-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-info-list li {
    padding: 18px 0;
    padding-left: 36px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
    color: #4a4a4a;
    border-bottom: 1px solid rgba(2, 112, 157, 0.08);
    transition: all 0.25s ease;
}

.hero-info-list li:last-child {
    border-bottom: none;
}

.hero-info-list li:hover {
    color: #1a1a1a;
    padding-left: 40px;
}

.hero-info-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 18px;
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, #02709d 0%, #7BC4D9 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 13px;
}

/* ============================================
    HERO SECTION V3 - PREMIUM REDESIGN
    ============================================ */

.hero-section {
    background: linear-gradient(135deg, #f0f9fc 0%, #ffffff 50%, #fafbfc 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

/* Organic flowing shapes inspired by logo waves */
.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -5%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(123, 196, 217, 0.08) 0%, transparent 70%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 0;
    animation: float 20s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(2, 112, 157, 0.06) 0%, transparent 70%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: 0;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(5deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 40px;
    position: relative;
    z-index: 1;
}

/* ============================================
    LEFT COLUMN - CONTENT
    ============================================ */

.hero-content {
    position: relative;
    z-index: 2;
}

/* Eyebrow text */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #02709d;
    margin: 0 0 20px 0;
    padding: 8px 16px;
    background: rgba(2, 112, 157, 0.08);
    border-radius: 20px;
}

.hero-eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #02709d;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

/* Main headline */
.hero-headline {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.08;
    color: #1a1a1a;
    margin: 0 0 28px 0;
    letter-spacing: -1px;
}

.hero-headline-accent {
    color: #02709d;
    display: block;
}

/* Subheading */
.hero-subheading {
    font-size: 20px;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0 0 36px 0;
    max-width: 580px;
    font-weight: 400;
}

/* Trust indicators list */
.hero-trust-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.hero-trust-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #333;
    font-weight: 500;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.hero-trust-list li:hover {
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(2, 112, 157, 0.12);
    transform: translateY(-2px);
}

.trust-icon {
    width: 22px;
    height: 22px;
    color: #02709d;
    flex-shrink: 0;
}

/* CTA Button Group */
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 36px;
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #02709d 0%, #015a7d 100%);
    border: none;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(2, 112, 157, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #015a7d 0%, #014561 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(2, 112, 157, 0.35);
    color: #ffffff;
}

.btn-primary:focus {
    outline: 3px solid rgba(2, 112, 157, 0.4);
    outline-offset: 3px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 36px;
    font-size: 17px;
    font-weight: 600;
    color: #02709d;
    background-color: #ffffff;
    border: 2px solid #e0f2f7;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.btn-secondary:hover {
    background-color: #f8fbfc;
    border-color: #02709d;
    color: #015a7d;
    box-shadow: 0 4px 16px rgba(2, 112, 157, 0.12);
}

.btn-secondary:focus {
    outline: 3px solid rgba(2, 112, 157, 0.4);
    outline-offset: 3px;
}

/* Provider Info Section */
.hero-providers {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 0 0;
    border-top: 2px solid rgba(2, 112, 157, 0.1);
}

.provider-photos {
    display: flex;
    position: relative;
}

.provider-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 4px solid #ffffff;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.provider-avatar:not(:first-child) {
    margin-left: -16px;
}

.provider-avatar:hover {
    transform: translateY(-4px);
    z-index: 10;
}

.provider-text {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.provider-text strong {
    font-weight: 600;
    color: #1a1a1a;
}

.text-muted {
    color: #777;
    font-size: 14px;
}

/* ============================================
    RIGHT COLUMN - ORGANIC VISUAL ELEMENT
    ============================================ */

.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-visual-wrapper {
    position: relative;
}

/* Flowing background shape */
.hero-visual-bg {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(123, 196, 217, 0.15) 0%, rgba(2, 112, 157, 0.08) 100%);
    border-radius: 45% 55% 60% 40% / 50% 60% 40% 50%;
    z-index: 0;
    animation: morph 15s ease-in-out infinite;
}

@keyframes morph {
    0%, 100% {
        border-radius: 45% 55% 60% 40% / 50% 60% 40% 50%;
    }
    50% {
        border-radius: 60% 40% 45% 55% / 40% 50% 60% 50%;
    }
}

/* Layered curves behind card */
.hero-visual-curves {
    position: absolute;
    top: 20px;
    left: -60px;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.6;
}

.curve-layer {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 3px solid;
    border-radius: 50% 40% 60% 50% / 60% 50% 50% 40%;
    opacity: 0.3;
}

.curve-layer:nth-child(1) {
    border-color: #7BC4D9;
    top: 0;
    left: 0;
    animation: rotate 20s linear infinite;
}

.curve-layer:nth-child(2) {
    border-color: #02709d;
    top: 40px;
    left: 40px;
    width: 250px;
    height: 250px;
    animation: rotate 25s linear infinite reverse;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Main visual card */
.hero-visual-card {
    position: relative;
    z-index: 2;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(2, 112, 157, 0.1);
}

.visual-card-icon {
    margin-bottom: 28px;
    display: flex;
    justify-content: center;
}

.hero-visual-card h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    text-align: center;
}

.visual-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.visual-card-list li {
    padding: 16px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    border-bottom: 1px solid rgba(2, 112, 157, 0.08);
    transition: all 0.2s ease;
}

.visual-card-list li:last-child {
    border-bottom: none;
}

.visual-card-list li:hover {
    color: #1a1a1a;
    padding-left: 36px;
}

.visual-card-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 16px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #02709d 0%, #7BC4D9 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
}

.section-heading {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 30px;
    text-align: center;
}

.services-section {
    background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%);
}

.services-intro {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #02709d;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(2, 112, 157, 0.15);
}

.service-card h3 {
    font-size: 22px;
    font-weight: bold;
    color: #02709d;
    margin-bottom: 15px;
    margin-top: 0;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

.service-card li:last-child {
    border-bottom: none;
}

.service-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #02709d;
    font-weight: bold;
    font-size: 18px;
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

.services-cta p {
    font-size: 18px;
    color: #333;
    background: linear-gradient(135deg, #A0D8E8 0%, #7BC4D9 100%);
    padding: 30px;
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ============================================
    WHY SECTION - REDESIGNED
    ============================================ */

.why-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
    position: relative;
}

.why-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.why-intro {
    font-size: 20px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-left: 4px solid #02709d;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.why-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-top: 4px solid #02709d;
    transition: transform 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    color: #02709d;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #02709d;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #4a4a4a;
    font-weight: 500;
}

/* ============================================
    WHEN TO BOOK SECTION - REDESIGNED
    ============================================ */

.when-section {
    background-color: #ffffff;
}

.when-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.when-card {
    background: linear-gradient(135deg, #f8fbfc 0%, #ffffff 100%);
    border: 2px solid #e0f2f7;
    border-radius: 12px;
    padding: 32px 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.when-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #02709d 0%, #7BC4D9 100%);
}

.when-card:hover {
    border-color: #02709d;
    box-shadow: 0 8px 24px rgba(2, 112, 157, 0.15);
    transform: translateY(-4px);
}

.when-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: #02709d;
}

.when-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.when-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
}

.when-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #02709d 0%, #015a7d 100%);
    border-radius: 12px;
    color: white;
}

.when-cta h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: white;
}

.when-cta p {
    font-size: 18px;
    margin: 0 0 24px 0;
    color: rgba(255,255,255,0.95);
}

/* ============================================
    TEAM SECTION - REDESIGNED
    ============================================ */

.team-section {
    background: linear-gradient(180deg, #f8fbfc 0%, #ffffff 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px;
    margin-top: 50px;
}

.team-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(2, 112, 157, 0.15);
}

.team-card-header {
    padding: 32px;
    background: linear-gradient(135deg, #f8fbfc 0%, #ffffff 100%);
    border-bottom: 2px solid #e0f2f7;
    text-align: center;
}

.team-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 4px solid #02709d;
    object-fit: cover;
    margin: 0 auto 20px;
    display: block;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.team-name {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.team-title {
    font-size: 16px;
    font-weight: 600;
    color: #02709d;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-credentials {
    font-size: 13px;
    color: #777;
    margin: 0;
    line-height: 1.5;
}

.team-card-body {
    padding: 32px;
}

.team-bio {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.team-bio:last-child {
    margin-bottom: 0;
}

.team-highlights {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e5e5e5;
}

.team-highlights h4 {
    font-size: 14px;
    font-weight: 600;
    color: #02709d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 12px 0;
}

.team-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-highlights li {
    padding: 6px 0 6px 24px;
    position: relative;
    font-size: 15px;
    color: #333;
}

.team-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #02709d;
    font-weight: bold;
}

/* ============================================
    FAQ SECTION - IMPROVED
    ============================================ */

.faq-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
}

.faq-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: #4a4a4a;
    line-height: 1.6;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background-color: white;
    margin-bottom: 12px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e0f2f7;
    transition: all 0.2s ease;
}

.accordion-item:hover {
    border-color: #02709d;
    box-shadow: 0 4px 16px rgba(2, 112, 157, 0.1);
}

.accordion-header {
    padding: 20px 25px;
    background-color: white;
    color: #1a1a1a;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    border-left: 4px solid transparent;
}

.accordion-header:hover {
    background-color: #f8fbfc;
    border-left-color: #02709d;
}

.accordion-header.active {
    background-color: #f8fbfc;
    border-left-color: #02709d;
    color: #02709d;
}

.accordion-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content.active {
    padding: 25px;
    max-height: 1000px;
}

.accordion-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

/* ============================================
    CONTACT SECTION - REDESIGNED
    ============================================ */

.contact-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border-left: 4px solid #02709d;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 24px 0;
}

.contact-detail {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e5e5;
}

.contact-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-label {
    font-size: 13px;
    font-weight: 600;
    color: #02709d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

.contact-value {
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 500;
    line-height: 1.5;
}

.contact-value a {
    color: #02709d;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-value a:hover {
    color: #015a7d;
    text-decoration: underline;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.contact-form-wrapper h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.contact-form-wrapper p {
    font-size: 16px;
    color: #4a4a4a;
    margin: 0 0 32px 0;
}

.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group small {
    color: #d32f2f;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.2s ease;
    background-color: #fafafa;
}

.form-control:hover {
    border-color: #b0b0b0;
    background-color: #ffffff;
}

.form-control:focus {
    outline: none;
    border-color: #02709d;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(2, 112, 157, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background-color: #02709d;
    color: white;
    padding: 16px 40px;
    border: 2px solid #02709d;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: #015a7d;
    border-color: #015a7d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 112, 157, 0.3);
}

.btn-submit:focus {
    outline: 3px solid rgba(2, 112, 157, 0.4);
    outline-offset: 2px;
}

.checkbox-wrapper {
    margin-bottom: 24px;
}

/* ============================================
    DOWNLOAD SECTION - REDESIGNED
    ============================================ */

.download-section {
    background: linear-gradient(135deg, #f8fbfc 0%, #ffffff 100%);
}

.download-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.download-intro h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.download-intro p {
    font-size: 18px;
    color: #4a4a4a;
    line-height: 1.6;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.download-card {
    background: white;
    border: 2px solid #e0f2f7;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.download-card:hover {
    border-color: #02709d;
    box-shadow: 0 8px 24px rgba(2, 112, 157, 0.12);
    transform: translateY(-4px);
}

.download-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: #02709d;
}

.download-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.download-card p {
    font-size: 15px;
    color: #4a4a4a;
    margin: 0 0 24px 0;
    line-height: 1.5;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: #02709d;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    border: 2px solid #02709d;
}

.download-button:hover {
    background-color: #015a7d;
    border-color: #015a7d;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 112, 157, 0.3);
}

.download-button svg {
    width: 20px;
    height: 20px;
}

.back-link {
    display: inline-block;
    margin: 20px 0;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: bold;
}

.back-link:hover {
    color: var(--gravel-grey);
}

.checkbox-label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.checkbox-label input {
    margin-right: 10px;
}

/* ============================================
    FOOTER - REDESIGNED
    ============================================ */

.footer {
    background: linear-gradient(180deg, #2c2c2c 0%, #1a1a1a 100%);
    padding: 60px 0 0;
    font-size: 15px;
    color: #e0e0e0;
}

.footer-top {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-right: 85px;
}

.footer-column h2 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 20px 0;
}

.footer-logo-section {
    max-width: 280px;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 15px;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 24px;
}

.footer-credentials {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-credential-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #b0b0b0;
}

.footer-credential-item svg {
    width: 16px;
    height: 16px;
    color: #02709d;
    flex-shrink: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #02709d;
    transform: translateX(4px);
}

.footer-contact-item {
    margin-bottom: 16px;
}

.footer-contact-label {
    font-size: 12px;
    font-weight: 600;
    color: #808080;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    display: block;
}

.footer-contact-value {
    font-size: 15px;
    color: #e0e0e0;
    line-height: 1.5;
}

.footer-contact-value a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-value a:hover {
    color: #02709d;
}

.footer-bottom {
    padding: 24px 0 120px;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 14px;
    color: #808080;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-bottom-links a {
    line-height: 20px;
    color: #808080;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #02709d;
}

/* Subtle powered-by credit */
.footer-bottom-links .powered-by-link {
    opacity: 0.65;
    font-size: 13px;
}

.footer-bottom-links .powered-by-link:hover {
    opacity: 1;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }

    .footer-logo-section {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
    }

    .footer-grid {
        gap: 32px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

/* ============================================
    RESPONSIVE DESIGN - HERO HEADER & SECTIONS
    ============================================ */

@media (max-width: 1200px) {
    /* Hero Header */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-container {
        padding: 80px 32px 60px;
    }

    .hero-main-headline {
        font-size: 50px;
    }

    .hero-visual-column {
        max-width: 580px;
        margin: 0 auto;
    }

    .hero-visual-blob {
        width: 450px;
        height: 450px;
    }

    /* Second Hero Section */
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 60px 32px;
    }

    .hero-headline {
        font-size: 48px;
    }

    .hero-visual {
        max-width: 560px;
        margin: 0 auto;
    }

    .hero-visual-bg {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    /* Hero Header Mobile */
    .skin-clinic-header {
        min-height: auto;
    }

    .skin-clinic-header::before,
    .skin-clinic-header::after {
        display: none;
    }

    .hero-top-bar {
        left: 20px;
        top: 20px;
    }

    .hero-container {
        padding: 80px 24px 48px;
    }

    .hero-grid {
        gap: 48px;
    }

    .skin-clinic-logo {
        max-width: 220px;
    }

    .hero-main-headline {
        font-size: 42px;
        letter-spacing: -0.8px;
    }

    .hero-main-subheading {
        font-size: 18px;
    }

    .hero-trust-signals {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-cta-buttons {
        flex-direction: column;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        justify-content: center;
        min-height: 52px;
    }

    .hero-provider-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .hero-provider-avatar {
        width: 58px;
        height: 58px;
    }

    .hero-visual-blob {
        width: 320px;
        height: 320px;
        top: -30px;
        right: -30px;
    }

    .hero-wave-layers {
        display: none;
    }

    .hero-info-card {
        padding: 36px 28px;
    }

    /* Scale down logo blob on mobile */
    .logo-blob {
        width: 280px;
        height: 280px;
    }

    /* Second Hero Section Mobile */
    .hero-section {
        min-height: auto;
        padding: 0;
    }

    .hero-section::before,
    .hero-section::after {
        display: none;
    }

    .hero-wrapper {
        padding: 48px 24px;
        gap: 48px;
    }

    .hero-headline {
        font-size: 40px;
        letter-spacing: -0.5px;
    }

    .hero-subheading {
        font-size: 18px;
    }

    .hero-trust-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        min-height: 52px;
    }

    .hero-providers {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .provider-avatar {
        width: 56px;
        height: 56px;
    }

    .hero-visual-bg {
        width: 300px;
        height: 300px;
        top: -20px;
        right: -20px;
    }

    .hero-visual-curves {
        display: none;
    }

    .hero-visual-card {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    /* Hero Header Small Mobile */
    .hero-container {
        padding: 70px 20px 40px;
    }

    .skin-clinic-logo {
        max-width: 200px;
    }

    .hero-location-badge {
        font-size: 12px;
        padding: 8px 14px;
    }

    .hero-main-headline {
        font-size: 36px;
    }

    .hero-main-subheading {
        font-size: 17px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 16px 28px;
        font-size: 16px;
    }

    .hero-provider-avatar {
        width: 50px;
        height: 50px;
    }

    .hero-provider-text {
        font-size: 14px;
    }

    .hero-info-card {
        padding: 28px 20px;
    }

    .logo-blob {
        width: 240px;
        height: 240px;
    }

    /* Second Hero Section Small Mobile */
    .hero-wrapper {
        padding: 40px 20px;
    }

    .hero-headline {
        font-size: 34px;
    }

    .hero-eyebrow {
        font-size: 12px;
        padding: 6px 12px;
    }

    .provider-avatar {
        width: 48px;
        height: 48px;
    }

    .provider-text {
        font-size: 14px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 16px 24px;
        font-size: 16px;
    }
}

/* ============================================
    ACCESSIBILITY IMPROVEMENTS
    ============================================ */

/* Ensure focus states are visible for all buttons */
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.hero-btn-primary:focus-visible,
.hero-btn-secondary:focus-visible {
    outline: 3px solid #02709d;
    outline-offset: 3px;
}

.back-link:focus-visible {
    outline: 3px solid #02709d;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-headline,
    .hero-main-headline {
        color: #000000;
    }

    .btn-primary,
    .hero-btn-primary {
        border: 3px solid #000000;
    }

    /* Hide decorative background shapes */
    .skin-clinic-header::before,
    .skin-clinic-header::after,
    .hero-section::before,
    .hero-section::after,
    .hero-visual-bg,
    .hero-visual-curves,
    .hero-visual-blob,
    .hero-wave-layers,
    .logo-blob {
        display: none;
    }
}

/* Reduced motion support - disable all animations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    /* Disable hover transforms */
    .btn-primary:hover,
    .btn-secondary:hover,
    .hero-btn-primary:hover,
    .hero-btn-secondary:hover,
    .hero-trust-list li:hover,
    .hero-trust-signals li:hover,
    .provider-avatar:hover,
    .hero-provider-avatar:hover,
    .back-link:hover {
        transform: none;
    }

    /* Disable background animations */
    .skin-clinic-header::before,
    .skin-clinic-header::after,
    .hero-section::before,
    .hero-section::after {
        animation: none;
    }

    .hero-visual-bg,
    .hero-visual-blob {
        animation: none;
    }

    .curve-layer,
    .hero-wave-curve {
        animation: none;
    }

    /* Disable logo blob animation */
    .logo-blob {
        animation: none;
    }
}

/* ============================================
    FLOATING NAVIGATION
    ============================================ */

.floating-nav {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(255, 255, 255, 0.98);
    padding: 16px 12px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(2, 112, 157, 0.1);
}

.floating-nav-item {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    align-items: center;
    gap: 6px;
    padding: 12px 10px;
    color: #02709d;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    min-width: 64px;
}

.floating-nav-item svg {
    width: 22px;
    height: 22px;
    color: #02709d;
    transition: transform 0.2s ease;
}

.floating-nav-item:hover {
    background: rgba(2, 112, 157, 0.08);
    color: #015a7d;
}

.floating-nav-item:hover svg {
    transform: scale(1.1);
}

.floating-nav-item.active {
    background: rgba(2, 112, 157, 0.12);
    color: #015a7d;
}

.floating-nav-item.active svg {
    color: #015a7d;
}

.floating-nav-item:first-child {
    background: linear-gradient(135deg, #02709d 0%, #015a7d 100%);
    color: #ffffff;
    margin-bottom: 8px;
}

.floating-nav-item:first-child svg {
    color: #ffffff;
}

.floating-nav-item:first-child:hover {
    background: linear-gradient(135deg, #015a7d 0%, #014561 100%);
    transform: scale(1.05);
}

.floating-nav-item:first-child.active {
    background: linear-gradient(135deg, #015a7d 0%, #014561 100%);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .floating-nav {
        right: 16px;
        padding: 12px 8px;
    }

    .floating-nav-item {
        padding: 10px 8px;
        min-width: 56px;
        font-size: 11px;
    }

    .floating-nav-item svg {
        width: 20px;
        height: 20px;
    }

    .when-section,
    .services-section,
    .team-section,
    .faq-section,
    .download-section,
    .why-section,
    .contact-section {
        padding: 80px 95px 80px 0;
    }
}

@media (max-width: 768px) {
    .floating-nav {
        right: 12px;
        padding: 10px 8px;
        gap: 6px;
    }

    .floating-nav-item {
        padding: 10px 8px;
        min-width: 56px;
        font-size: 11px;
        gap: 4px;
    }

    .floating-nav-item svg {
        width: 18px;
        height: 18px;
    }

    .floating-nav-item:first-child {
        margin-bottom: 6px;
    }
}

@media (max-width: 480px) {
    .skin-clinic-header,
    .services-section,
    .why-section,
    .when-section,
    .team-section,
    .faq-section,
    .download-section,
    .contact-section,
    .footer-grid {
        padding-right: 0;
    }

    .floating-nav {
        right: 8px;
        padding: 8px 6px;
        gap: 4px;
        bottom: 10px;
        top: unset;
        flex-direction: row;
        transform: none;
    }

    .floating-nav-item {
        padding: 8px 6px;
        min-width: 50px;
        font-size: 10px;
        gap: 3px;
    }

    .floating-nav-item svg {
        width: 16px;
        height: 16px;
    }

    .floating-nav-item:first-child {
        margin-bottom: 0;
    }

    .footer-bottom-links {
        display: block;
    }

    .footer-bottom-links a {
        display: block;
        padding: 10px;
    }

    .footer-bottom-links .powered-by-link {
        margin-top: 10px;
    }
}
