/* Grow Your Practice - Common Styles */
:root {
    --practice-primary: #0E5E58;
    --practice-secondary: #487f7c;
    --practice-accent: #F1A400;
    --practice-bg-light: #F0F7F7;
    --practice-text: #444;
    --practice-gradient: linear-gradient(135deg, #0E5E58 0%, #3F706E 100%);
    --premium-shadow: 0 15px 35px rgba(14, 94, 88, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-shadow: 0 8px 32px 0 rgba(14, 94, 88, 0.1);
}

.practice-hero {
    padding: 180px 0 120px;
    background: var(--practice-gradient);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-shape-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(241, 164, 0, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.hero-shape-2 {
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: rgba(103, 176, 172, 0.2);
    border-radius: 50%;
    filter: blur(60px);
}


.practice-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/hero-banner.jpg') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 0;
}

.practice-hero .container {
    position: relative;
    z-index: 1;
}

.practice-hero h1 {
    color: #F1E53D;
    font-size: 3.5rem;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.practice-hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

/* Feature Sections */
.practice-section {
    padding: 100px 0;
}

.practice-section:nth-child(even) {
    background-color: var(--practice-bg-light);
}

.feature-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(14, 94, 88, 0.1);
    color: var(--practice-primary);
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.practice-content h2 {
    color: var(--practice-primary);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.practice-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.feature-list li i,
.feature-list li svg {
    color: var(--practice-accent);
    font-size: 1.25rem;
    margin-right: 15px;
    margin-top: 5px;
}

.feature-list li strong {
    color: var(--practice-primary);
}

/* Premium Card Styles */
.practice-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.practice-image-wrapper:hover {
    transform: translateY(-10px);
}

.practice-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.floating-stats {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--premium-shadow);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 2;
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0);
    }

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

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

.practice-card {
    background: #fff;
    border-radius: 25px;
    padding: 40px;
    box-shadow: var(--premium-shadow);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(14, 94, 88, 0.05);
}

.practice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(14, 94, 88, 0.15);
}


/* Animations */
[data-aos] {
    transition-duration: 800ms !important;
}

/* Responsive */
@media (max-width: 991px) {
    .practice-hero h1 {
        font-size: 2.5rem;
    }

    .practice-section {
        padding: 60px 0;
    }

    .practice-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .feature-list li {
        justify-content: center;
        text-align: left;
    }
}

/* ==========================================================================
   PREMIUM STYLES (Added from premium.css)
   ========================================================================== */
:root {
    --primary-teal: #0E5E58;
    --primary-gradient: linear-gradient(135deg, #0E5E58 0%, #2A8A84 100%);
    --secondary-gradient: linear-gradient(135deg, #e0f7fa 0%, #ffffff 100%);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --text-dark: #1a1a1a;
    --text-muted: #5a6c7c;
    --radius-xl: 24px;
    --radius-lg: 16px;
    --shadow-soft: 0 10px 30px rgba(14, 94, 88, 0.05);
    --shadow-hover: 0 20px 40px rgba(14, 94, 88, 0.12);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

body {
    background-color: #f8fcfc;
    font-family: var(--font-body);
    color: var(--text-muted);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-teal);
    font-weight: 700;
}

/* Section Spacing */
.premium-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* =========================================
   Section 1: Services List & Icons Grid
   ========================================= */
.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

/* Digital Services List (Left) */
.services-list-wrapper {
    position: relative;
}

.services-interactive-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-item {
    padding: 18px 25px;
    margin-bottom: 12px;
    background: #fff;
    border-radius: var(--radius-lg);
    border-left: 4px solid transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-item:hover {
    border-left-color: var(--primary-teal);
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.service-item span {
    font-weight: 600;
    color: var(--text-dark);
}

.service-item i {
    opacity: 1;
    transition: opacity 0.3s;
    color: var(--primary-teal);
}

.service-item:hover i {
    opacity: 1;
}

/* Glassmorphism Modal */
.service-preview-modal {
    display: none;
    /* Hidden by default, JS would toggle active class */
    position: absolute;
    top: 50%;
    left: 105%;
    transform: translateY(-50%) scale(0.95);
    width: 300px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    z-index: 10;
    opacity: 0;
    transition: all 0.4s ease;
}

.service-preview-modal.active {
    display: block;
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

/* Right Side: Medical Billing */
.medical-billing-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.billing-circles-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 45px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.billing-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(14, 94, 88, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 25px rgba(14, 94, 88, 0.08);
    position: relative;
    overflow: hidden;
}

.billing-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.billing-circle:hover {
    transform: translateY(-10px) scale(1.1);
    border-color: transparent;
    box-shadow: 0 15px 35px rgba(14, 94, 88, 0.2);
}

.billing-circle:hover::before {
    opacity: 1;
}

.billing-circle img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.billing-circle:hover img {
    filter: brightness(0) invert(1);
    transform: scale(1.1);
}

/* =========================================
   Section 3: Importance of Accuracy
   ========================================= */
.importance-section {
    background-color: #fff;
}

.importance-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.info-block-card {
    background: #fff;
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(14, 94, 88, 0.1);
    transition: all 0.3s ease;
}

.info-block-card:hover {
    border-color: var(--primary-teal);
    box-shadow: var(--shadow-soft);
    background: linear-gradient(to bottom right, #fff, #f0fcfc);
}

.info-block-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* =========================================
   Section 4: Modern Premium Hover Accordion
   ========================================= */
.modern-premium-accordion {
    margin-top: 50px;
}

.modern-accordion-item {
    background: #fff;
    border-radius: 20px !important;
    margin-bottom: 20px;
    border: 1px solid rgba(14, 94, 88, 0.08);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.modern-accordion-button {
    width: 100%;
    padding: 25px 30px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    text-align: left;
    cursor: default;
    /* Change to default as it's hover-based */
    outline: none !important;
}

.modern-accordion-button .number-badge {
    min-width: 45px;
    height: 45px;
    background: rgba(14, 94, 88, 0.05);
    color: var(--primary-teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    margin-right: 20px;
    transition: all 0.4s ease;
}

.modern-accordion-button .title-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-dark);
    flex-grow: 1;
}

.modern-accordion-body-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
}

.modern-accordion-body {
    overflow: hidden;
    padding: 0 30px 0 95px;
    /* Offset alignment */
    font-size: 1rem;
    opacity: 0;
    transition: all 0.4s ease;
}

/* HOVER EFFECT */
.modern-accordion-item:hover {
    border-color: var(--primary-teal);
    box-shadow: 0 15px 30px rgba(14, 94, 88, 0.1);
}

.modern-accordion-item:hover .number-badge {
    background: var(--primary-gradient);
    color: #fff;
}

.modern-accordion-item:hover .modern-accordion-body-wrapper {
    grid-template-rows: 1fr;
}

.modern-accordion-item:hover .modern-accordion-body {
    padding-bottom: 25px;
    opacity: 1;
}

/* Image Column Styles (Professional & Static) */
.sticky-image-container {
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 20px;
}

.hover-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(14, 94, 88, 0.1);
    border: 6px solid #fff;
    width: 90%;
    margin: 0 auto;
}

.hover-image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.image-accent-glow {
    display: none;
}


@media (max-width: 991px) {
    .modern-accordion-item:hover {
        transform: none;
    }

    .hover-image-wrapper img {
        height: 400px;
    }

    .modern-accordion-body {
        padding: 0 20px 0 85px;
    }
}


.premium-bullet-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.premium-bullet-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.6;
    font-size: 1rem;
}

.premium-bullet-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background-color: var(--primary-teal);
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    transition: all 0.3s ease;
}

.premium-bullet-list li:hover::before {
    transform: scale(1.2);
}

.compact-billing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    background: #f8fafc;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(14, 94, 88, 0.05);
}

.mini-billing-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(14, 94, 88, 0.05);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.mini-billing-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.mini-billing-icon:hover {
    transform: translateY(-5px);
    border-color: var(--primary-teal);
    background: var(--primary-teal);
}

.mini-billing-icon:hover img {
    filter: brightness(0) invert(1);
}

/* =========================================
   Section 5: Node Map Layout
   ========================================= */
/* =========================================
   Section 5: Node Map Layout
   ========================================= */
/* =========================================
   Section 5: Why Choose Us (Redesigned Grid)
   ========================================= */
.why-choose-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 20px;
    height: 100%;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(14, 94, 88, 0.08);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(14, 94, 88, 0.05);
}

.why-choose-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(14, 94, 88, 0.12);
    border-color: rgba(14, 94, 88, 0.2);
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-choose-card:hover::before {
    opacity: 1;
}

.why-choose-card .card-icon {
    width: 70px;
    height: 70px;
    background: rgba(14, 94, 88, 0.05);
    color: var(--primary-teal);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    transition: all 0.4s ease;
}

.why-choose-card:hover .card-icon {
    background: var(--primary-teal);
    color: #fff;
    transform: rotateY(360deg);
}

.why-choose-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-teal);
}

.why-choose-card p {
    font-size: 0.95rem;
    color: #5a6c7c;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .premium-section {
        padding: 60px 0;
    }

    .why-choose-card {
        padding: 25px;
    }

    .billing-circles-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .billing-circle {
        width: 80px;
        height: 80px;
    }

    .billing-circle img {
        width: 40px;
        height: 40px;
    }
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {

    /* Practice hero */
    .practice-hero {
        padding: 120px 0 70px;
    }

    .practice-hero h1 {
        font-size: 2rem;
    }

    .practice-hero p {
        font-size: 1rem;
    }

    /* Sections */
    .practice-section {
        padding: 50px 0;
    }

    .premium-section {
        padding: 50px 0;
    }

    /* Accordion body indent */
    .modern-accordion-body {
        padding: 0 15px 0 65px;
    }

    .modern-accordion-button {
        padding: 18px 20px;
    }

    /* Hover image height */
    .hover-image-wrapper img {
        height: 280px;
    }

    /* Importance card grid */
    .importance-card-grid {
        grid-template-columns: 1fr;
    }

    /* Compact billing */
    .compact-billing-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Why choose card */
    .why-choose-card {
        padding: 20px 15px;
    }

    /* Sidebar specialty page — full width on mobile */
    .sidebar-column {
        position: relative !important;
        top: 0 !important;
        margin-bottom: 24px;
    }
}

/* ── Small Mobile (≤575px) ── */
@media (max-width: 575px) {

    /* Practice hero */
    .practice-hero {
        padding: 110px 0 60px;
    }

    .practice-hero h1 {
        font-size: 1.7rem;
        margin-bottom: 15px;
    }

    /* Section spacing */
    .practice-section,
    .premium-section {
        padding: 40px 0;
    }

    /* Card padding */
    .practice-card {
        padding: 25px 18px;
    }

    /* Accordion */
    .modern-accordion-body {
        padding: 0 12px 0 50px;
    }

    .modern-accordion-button .number-badge {
        min-width: 35px;
        height: 35px;
        font-size: 0.9rem;
        margin-right: 12px;
    }

    .modern-accordion-button .title-text {
        font-size: 0.95rem;
    }

    /* Image */
    .hover-image-wrapper img {
        height: 220px;
    }

    /* Billing circles */
    .billing-circles-grid {
        gap: 10px;
    }

    .billing-circle {
        width: 65px;
        height: 65px;
    }

    .billing-circle img {
        width: 32px;
        height: 32px;
    }

    /* Compact billing grid */
    .compact-billing-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 14px;
    }

    /* Floating stats on image */
    .floating-stats {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 15px;
        width: 100%;
    }
}