/* ================================
   The Vein Clinic of Rome - Modern Redesign
   Premium Medical Website Design System
   ================================ */

/* ===== Variables & Reset ===== */
:root {
    /* Colors */
    --primary: #000000;
    --primary-light: #1a1a1a;
    --primary-dark: #000000;
    --accent: #c5a059;
    --accent-light: #e6c686;
    --text-dark: #111111;
    --text-gray: #4a5568;
    --text-light: #6b7280;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-cream: #fdfbf7;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #c5a059 0%, #e6c686 50%, #c5a059 100%);
    --gradient-primary: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    --gradient-blue: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);

    /* Typography */
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Cinzel', Georgia, serif;

    /* Spacing */
    --header-height: 90px;
    --container-width: 1200px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-normal: all 0.3s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    /* Safe Area Insets */
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    padding-bottom: env(safe-area-inset-bottom);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

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

ul {
    list-style: none;
}

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

/* ===== Utility Classes ===== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: block;
}

.section-lead {
    font-size: 1.05rem;
    color: var(--text-gray);
    max-width: 720px;
    margin: 0 auto;
}

.section-actions {
    text-align: center;
    margin-top: 3rem;
}

.section-actions.section-actions-compact {
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 2px;
    font-family: var(--font-serif);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e6c686 0%, #c5a059 100%);
    z-index: -1;
    transition: var(--transition);
    opacity: 0;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.4);
}

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

.btn-secondary {
    background: transparent;
    border-color: var(--bg-white);
    color: var(--bg-white);
}

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

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

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

.btn-cta-light {
    background: var(--bg-white);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.btn-cta-light:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    border-color: var(--bg-white);
    color: var(--bg-white);
}

.btn-outline-light:hover {
    background: var(--bg-white);
    color: var(--primary);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== Header & Top Bar ===== */
.top-bar {
    background: var(--primary);
    color: var(--bg-white);
    padding: 0.5rem 0;
    font-size: 0.85rem;
    position: relative;
    z-index: 1001;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    padding: 0 3rem;
}

.top-info {
    display: flex;
    gap: 1.5rem;
}

.top-info a {
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.top-info a:hover {
    color: var(--accent);
}

.top-social {
    display: flex;
    gap: 0.75rem;
}

.top-social a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    transition: var(--transition);
}

.top-social a:hover {
    background: var(--accent);
    color: var(--primary);
}

.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100vw;
    max-width: 100%;
    z-index: 1000;
    /* Use solid white to prevent underlying graphics showing through */
    /* Black Glass Header */
    background: rgba(0, 0, 0, 0.85);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    margin: 0;
    padding: 0;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header .container {
    max-width: 100%;
    padding: 0;
    /* remove horizontal padding so header background is flush to edges */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    padding: 0.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-image {
    max-height: 60px;
    /* Slightly larger */
    width: auto;
    transition: var(--transition);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--bg-white);
    line-height: 1.1;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-header,
.nav-header-li {
    display: none;
}

.close-menu {
    background: none;
    border: none;
    color: var(--bg-white);
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.close-menu:hover {
    background: var(--bg-light);
}

.nav-link {
    font-family: var(--font-sans);
    font-weight: 500;
    color: var(--bg-white);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    position: relative;
}

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

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

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
    padding: 0;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--bg-white);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

/* Mobile Menu Drawer */
@media (max-width: 991px) {
    .top-bar {
        display: none;
        /* Hide top bar on mobile to save space */
    }

    .mobile-toggle {
        display: flex;
    }

    .logo-text {
        display: none;
    }

    .close-menu {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(110%);
        /* Hidden off-canvas */
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(2.5rem + env(safe-area-inset-top)) 2rem 2rem;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1001;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-header {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-menu li {
        width: 100%;
        margin-bottom: 1.5rem;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    /* Staggered animation for menu items */
    .nav-menu.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-menu.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-menu.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-menu.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-menu.active li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-menu.active li:nth-child(6) {
        transition-delay: 0.6s;
    }

    .nav-menu.active li:nth-child(7) {
        transition-delay: 0.7s;
    }

    .nav-link {
        font-size: 1.2rem;
        display: block;
        width: 100%;
        padding: 0.5rem 0;
    }

    /* Hamburger Animation */
    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Backdrop */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        -webkit-backdrop-filter: blur(3px);
        backdrop-filter: blur(3px);
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: auto;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.9) 100%), url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
    background-attachment: fixed;
    color: var(--bg-white);
    margin-top: 0;
    padding: calc(var(--header-height) + 2rem) 0 5rem;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

.hero-subtitle {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s forwards;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 4.5rem;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s forwards;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    max-width: 650px;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.6s forwards;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.8s forwards;
}

.hero-highlights {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
    font-size: 0.95rem;
}

.hero-highlight i {
    color: var(--accent);
}

/* ===== Features/Stats Section ===== */
.features-overlap {
    margin-top: 0;
    position: relative;
    z-index: 10;
    padding-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* ===== Conditions & Process ===== */
.conditions-grid,
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.conditions-card,
.process-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.conditions-card h3,
.process-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.process-step {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-sm);
}

/* ===== Services Section ===== */
.services-section {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-card:hover .service-image::after {
    opacity: 1;
}

.service-content {
    padding: 2.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--primary);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ===== About Section ===== */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-xl);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 5px solid var(--accent);
    border-radius: 10px;
    z-index: -1;
}

/* ===== Testimonials ===== */
.testimonials-section {
    background: var(--primary);
    color: var(--bg-white);
    text-align: center;
}

.testimonials-section .section-title {
    color: var(--bg-white);
}

.testimonials-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 2rem;
}

.testimonials-section .testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
}

.testimonial-text {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--bg-white);
}

.testimonials-section .testimonial-author span {
    color: rgba(255, 255, 255, 0.75);
}

.testimonial-author {
    font-weight: 600;
    color: var(--accent);
}

/* ===== CTA Section ===== */
.cta-section {
    background: var(--bg-white);
    text-align: center;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-box {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 4rem 2rem;
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.cta-box h2 {
    color: var(--bg-white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
}

/* ===== Footer ===== */
.footer {
    background: #000000;
    /* Darker than primary */
    color: var(--bg-white);
    padding: 6rem 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-gold);
}

/* Ensure hero buttons are visible and static when animations are disabled */
.hero-buttons {
    opacity: 1 !important;
    animation: none !important;
    transition: none !important;
    display: flex !important;
    gap: 1.5rem !important;
    row-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
}

.hero-buttons .btn {
    border-radius: 2px !important;
    padding: 0.9rem 1.2rem !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12) !important;
}

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

.footer-title {
    color: var(--bg-white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-serif);
}

.footer-subtitle {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    max-width: 300px;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-contact li {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer-contact strong {
    color: var(--bg-white);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    transition: var(--transition);
}

.footer-social-link:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

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

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .about-section {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .mobile-toggle {
        display: flex;
    }

    .features-overlap {
        margin-top: 0;
        padding-top: 3rem;
    }
}

/* ===== Enhanced Mobile Responsiveness ===== */

/* Fix grid overflow on small screens */
@media (max-width: 360px) {

    .features-grid,
    .services-grid,
    .conditions-grid,
    .process-grid,
    .stats-grid,
    .footer-grid {
        grid-template-columns: 1fr !important;
    }

    .hero-title {
        font-size: 2rem !important;
    }
}

@media (max-width: 768px) {

    /* Improve touch targets */
    .nav-link {
        padding: 1rem 1.5rem;
        /* Larger touch area */
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--bg-light);
    }

    .nav-menu {
        width: 100%;
        max-width: 100%;
    }

    /* Better spacing for mobile */
    section {
        padding: 3rem 0;
    }

    .hero {
        padding: 6rem 0 3rem;
        /* Adjust for fixed header */
        min-height: 0;
        background-attachment: scroll;
    }

    .hero-highlights {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-highlight {
        width: 100%;
    }

    /* Full width buttons on mobile */
    .btn {
        width: 100%;
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    /* Adjust font sizes */
    p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .mobile-toggle {
        width: 44px;
        height: 44px;
        padding: 10px;
        /* Larger touch target without hiding lines */
    }

    .header .container,
    .top-bar .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {

    /* Further font size reduction for very small screens */
    h1 {
        font-size: 2.2rem !important;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    h3 {
        font-size: 1.5rem !important;
    }

    .container {
        padding: 0 1.25rem;
    }

    /* Refine Grid Gaps */
    .features-grid,
    .services-grid,
    .conditions-grid,
    .process-grid,
    .stats-grid,
    .footer-grid {
        gap: 1.5rem;
    }
}

/* ================================
   Inner Page Styles - Consistent Across All Pages
   ================================ */

/* Page Header - Used on all inner pages */
.page-header {
    background: var(--gradient-primary);
    color: var(--bg-white);
    padding: 8rem 0 4rem;
    margin-top: 0;
    text-align: center;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
    font-family: var(--font-serif);
    letter-spacing: 1px;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

/* Legal Content - Privacy & Terms pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.legal-content h2 {
    color: var(--primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    color: var(--primary-light);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.legal-content p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
    color: var(--text-dark);
    list-style: disc;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-content a {
    color: var(--accent);
    text-decoration: underline;
}

/* Content Grid - About, Services detail pages */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse>* {
    direction: ltr;
}

.content-text h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.content-text p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Check List */
.check-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.check-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: var(--text-dark);
}

.check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 1rem;
}

/* Services Page */
.service-detail {
    display: grid;
    gap: 3rem;
}

.service-header-section {
    display: grid;
    grid-template-columns: minmax(240px, 320px) 1fr;
    grid-template-areas: "media title" "media copy";
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 3rem;
}

.service-section-image {
    grid-area: media;
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.service-icon-large {
    grid-area: media;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    color: var(--bg-white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.service-icon-mint {
    background: linear-gradient(135deg, #111111 0%, #333333 100%);
    border: 1px solid var(--accent);
    color: var(--accent);
}

/* About Page Images */
.about-image-story {
    background: url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?auto=format&fit=crop&q=80&w=1000') no-repeat center/cover;
}

.about-image-community {
    background: url('https://images.unsplash.com/photo-1593113598340-089debb9285c?auto=format&fit=crop&q=80&w=1000') no-repeat center/cover;
}

/* Spider Vein Service Image */
.spider-vein-service-image {
    background: url('https://images.unsplash.com/photo-1593113598340-089debb9285c?auto=format&fit=crop&q=80&w=1000') no-repeat center/cover;
}

.service-header-section h2 {
    grid-area: title;
    margin-bottom: 1rem;
}

.service-intro {
    grid-area: copy;
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.treatment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.treatment-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
}

.treatment-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.treatment-card.has-badge h3 {
    padding-right: 5.5rem;
}

.treatment-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #000000;
    color: var(--accent);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 1px solid var(--accent);
}

.treatment-benefits h4,
.treatment-process h4,
.treatment-timeline h4 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.treatment-benefits ul,
.diagnostic-card ul,
.insurance-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.treatment-benefits li,
.diagnostic-card li,
.insurance-card li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.6rem;
    color: var(--text-gray);
}

.treatment-benefits li::before,
.diagnostic-card li::before,
.insurance-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.treatment-process ol {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: step;
}

.treatment-process li {
    counter-increment: step;
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.6rem;
    color: var(--text-gray);
}

.treatment-process li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0.15rem;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.2);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.treatment-timeline {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.diagnostic-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.diagnostic-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.maintenance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.maintenance-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.insurance-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Value/Feature Cards */
.values-grid,
.facility-grid,
.accreditations-grid,
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card,
.accreditation-item,
.reason-item {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.value-card:hover,
.accreditation-item:hover,
.reason-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon,
.facility-icon,
.accreditation-badge {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.value-card h3,
.accreditation-item h4,
.reason-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.value-card p,
.accreditation-item p,
.reason-item p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Reason Numbers */
.reason-number {
    position: absolute;
    top: -1.5rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.reason-item {
    position: relative;
    padding-top: 4rem;
    text-align: left;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.team-member {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.member-photo {
    height: 350px;
    background-size: cover;
    background-position: center;
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

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

.member-bio {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.member-credentials h4 {
    color: var(--primary);
    font-size: 1rem;
    margin: 1.5rem 0 0.75rem;
}

.member-credentials ul {
    list-style: disc;
    margin-left: 1.5rem;
    color: var(--text-gray);
}

.member-credentials li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Testimonials Full */
.testimonials-list {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-full {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent);
}

.testimonial-full h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.testimonial-full .testimonial-text {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-full .testimonial-author strong {
    color: var(--primary);
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-full .testimonial-author span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 1rem;
}

.rating-summary {
    text-align: center;
    margin-bottom: 3rem;
}

.rating-stars {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-caption {
    padding: 1.5rem;
}

.gallery-caption h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.gallery-caption p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin: 0;
    font-family: var(--font-sans);
    font-weight: 600;
}

.faq-icon {
    color: var(--accent);
    font-size: 1.25rem;
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-method-info h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.contact-method-info p {
    margin: 0;
    color: var(--text-gray);
}

.contact-method-info a {
    color: var(--primary);
}

.contact-method-info a:hover {
    color: var(--accent);
}

.small-text {
    font-size: 0.85rem;
    color: var(--text-light);
}

.contact-form-section {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.ghl-form-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 500px;
}

.ghl-iframe-styled {
    width: 100%;
    border: none;
}

.contact-info-section h2,
.contact-form-section h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-methods {
    margin: 2rem 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 1rem;
}

.emergency-info {
    background: var(--bg-cream);
    border-left: 4px solid var(--accent);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.emergency-info h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.emergency-info p {
    color: var(--text-gray);
    margin: 0;
}

.map-container {
    margin: 2rem 0;
    position: relative;
}

.map-placeholder {
    position: relative;
    overflow: hidden;
    background: var(--gradient-primary);
    height: 450px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--bg-white);
    font-size: 2rem;
    text-align: center;
}

.map-address {
    position: absolute;
    bottom: 2rem;
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
}

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

.direction-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.direction-card h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.direction-card p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.7;
}

/* Resources Page */
.prep-grid,
.insurance-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.prep-card,
.info-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.prep-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.prep-card h3,
.info-card h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.prep-card ul,
.info-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.prep-card li,
.info-card li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.prep-card li::before,
.info-card li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent);
}

.recovery-timeline {
    max-width: 900px;
    margin: 3rem auto 0;
    display: grid;
    gap: 2rem;
}

.recovery-stage {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--accent);
}

.recovery-day {
    display: inline-flex;
    align-items: center;
    background: var(--gradient-primary);
    color: var(--bg-white);
    padding: 0.4rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.recovery-stage h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.recovery-stage ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.recovery-stage li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.recovery-stage li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent);
}

.insurance-list {
    column-count: 2;
    column-gap: 2rem;
}

/* Section variants */
.section-gray {
    background: var(--bg-light);
}

.section-cream {
    background: var(--bg-cream);
}

/* Image Placeholder */
.image-placeholder {
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 3rem;
}

/* Text utilities */
.text-center {
    text-align: center;
}

/* Responsive for inner pages */
@media (max-width: 768px) {
    .page-header {
        padding: 6rem 0 3rem;
    }

    .page-title {
        font-size: 2.25rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-grid.reverse {
        direction: ltr;
    }

    .service-header-section {
        grid-template-columns: 1fr;
        grid-template-areas: "media" "title" "copy";
        text-align: center;
    }

    .service-section-image {
        height: 220px;
    }

    .service-icon-large {
        margin: 0 auto 1.5rem;
    }

    .treatment-card.has-badge h3 {
        padding-right: 0;
    }

    .treatment-badge {
        position: static;
        display: inline-flex;
        margin-bottom: 0.75rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-section {
        padding: 1.5rem;
    }

    .map-placeholder {
        height: 320px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .legal-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .insurance-list {
        column-count: 1;
    }
}

/* ================================
   EXTRACTED ESSENTIAL STYLES
   ================================ */

.service-image-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-image-varicose {
    background-image: url('../images/varicose-vein-blog_1200x800.jpg');
}

.service-image-spider {
    background-image: url('../images/sider-vein-symptoms.webp');
}

.service-image-ultrasound {
    background-image: url('../images/vein xray.jpg');
}

/* Team Section Stethoscopes */
.team-member-photo-styled {
    background: var(--bg-light);
    height: 350px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 5rem;
    border: 1px solid var(--accent);
}

.team-member-photo-styled i {
    display: inline-block;
}

/* About Page & Gallery Placeholders */
.about-image-placeholder,
.gallery-image-placeholder {
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.about-image-placeholder {
    height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?auto=format&fit=crop&q=80&w=1000') no-repeat center/cover;
}

.about-image-placeholder i {
    display: none;
}

.gallery-image-placeholder {
    height: 300px;
}

.about-image-story {
    background: url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?auto=format&fit=crop&q=80&w=1000') no-repeat center/cover;
}

.about-image-community {
    background: url('https://images.unsplash.com/photo-1593113598340-089debb9285c?auto=format&fit=crop&q=80&w=1000') no-repeat center/cover;
}

.gallery-gradient-1 {
    background: url('../images/varicose_before.png') no-repeat center/cover;
}

.gallery-gradient-2 {
    background: url('../images/spider_before.png') no-repeat center/cover;
}

.gallery-gradient-3 {
    background: url('../images/venous_before.png') no-repeat center/cover;
}

.gallery-gradient-4 {
    background: url('../images/venaseal_before.png') no-repeat center/cover;
}

.gallery-gradient-5 {
    background: url('../images/facial_cheek_before.png') no-repeat center/cover;
}

.gallery-gradient-6 {
    background: url('../images/severe_venous_before.png') no-repeat center/cover;
}

.gallery-gradient-7 {
    background: url('../images/reticular_before.png') no-repeat center/cover;
}

.gallery-gradient-8 {
    background: url('../images/facial_before.png') no-repeat center/cover;
}

.gallery-gradient-9 {
    background: url('../images/hand_before.png') no-repeat center/cover;
}

.gallery-gradient-10 {
    background: url('../images/ulcer_before.png') no-repeat center/cover;
}

.gallery-gradient-11 {
    background: url('../images/stasis_before.png') no-repeat center/cover;
}

.gallery-gradient-12 {
    background: url('../images/thigh_before.png') no-repeat center/cover;
}

.gallery-gradient-13 {
    background: url('../images/foot_before.png') no-repeat center/cover;
}

.gallery-gradient-14 {
    background: url('../images/starburst_before.png') no-repeat center/cover;
}

.gallery-gradient-15 {
    background: url('../images/gsv_before.png') no-repeat center/cover;
}

.gallery-gradient-16 {
    background: url('../images/male_calf_before.png') no-repeat center/cover;
}

.gallery-image-placeholder i {
    display: none;
}

.gallery-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: white;
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
}