/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #418f9d;
    --secondary-color: #5b2d7a;
    --accent-color: #994d9b;
    --primary-light: #3da9ae;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

[data-theme="dark"] {
    --primary-color: #3da9ae;
    --secondary-color: #994d9b;
    --accent-color: #b366b8;
    --primary-light: #4fc4ca;
    --text-dark: #f1f5f9;
    --text-light: #94a3b8;
    --bg-light: #1e293b;
    --bg-white: #0f172a;
    --border-color: #334155;
    --success-color: #34d399;
    --warning-color: #fbbf24;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 10px 10px -5px rgba(0, 0, 0, 0.4);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 16px;
    letter-spacing: -0.011em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    font-weight: 800;
    position: relative;
    padding-bottom: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 100px;
}

h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
    font-weight: 700;
}

h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 16px 36px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: -0.011em;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: white;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    display: inline-block;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.serve-description .btn-secondary,
.serve-benefits .btn-secondary {
    margin-top: 1.5rem;
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

[data-theme="dark"] .navbar {
    background-color: rgba(15, 20, 25, 0.95);
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 40px;
    flex-wrap: nowrap;
    gap: 3rem;
    min-height: 100px;
}

.logo {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.025em;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.logo-img {
    height: 220px;
    width: auto;
    margin: -50px 0;
}

.logo:hover {
    color: var(--secondary-color);
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.theme-toggle {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
    color: white;
    transform: rotate(15deg) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.theme-toggle .sun-icon,
.theme-toggle .moon-icon {
    position: absolute;
    transition: all 0.4s ease;
}

.theme-toggle .sun-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.theme-toggle .moon-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

[data-theme="dark"] .theme-toggle .sun-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

[data-theme="dark"] .theme-toggle .moon-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
    flex-shrink: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.nav-menu a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Page Header for subpages */
.page-header {
    background: linear-gradient(135deg, #2d6b73 0%, #418f9d 50%, #3da9ae 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    animation: pulse 15s ease-in-out infinite;
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--bg-white), transparent);
}

.page-header h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
    position: relative;
    z-index: 1;
}

.page-header .tagline {
    font-size: 1.35rem;
    opacity: 1;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    color: white;
}

.page-header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.page-header-logo {
    height: 180px;
    width: auto;
    filter: drop-shadow(0 5px 20px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 1;
}

.page-header-text {
    text-align: left;
}

.page-header-text h1 {
    margin-bottom: 0.5rem;
}

.page-header-text .tagline {
    margin: 0;
    text-align: left;
}

@media (max-width: 768px) {
    .page-header-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .page-header-logo {
        height: 120px;
    }

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

    .page-header-text .tagline {
        text-align: center;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2d6b73 0%, #418f9d 50%, #3da9ae 100%);
    color: white;
    padding: 140px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    animation: pulse 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(10%, 10%) scale(1.1);
    }
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--bg-white), transparent);
}

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

.hero-content h1 {
    color: white;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero .btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.hero .btn-secondary {
    border-color: white;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

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

/* Section Styles */
section {
    padding: 100px 0;
}

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

.mission-section {
    text-align: center;
    background-color: var(--bg-white);
    padding: 60px 0 30px;
}

.mission-section h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.mission-statement {
    font-size: 1.35rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
}

.intro-section {
    text-align: center;
    background-color: var(--bg-white);
    padding: 30px 0 50px;
}

.intro-section .btn-primary {
    margin-top: 0;
}

.services-overview {
    background-color: var(--bg-light);
    padding: 60px 0;
}

.cta-section {
    background-color: var(--bg-white);
    padding: 80px 0;
}

.section-intro {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 400;
}

/* Services Section */
.service-category {
    background-color: var(--bg-white);
    padding: 3rem;
    margin-bottom: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.service-category:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
    border-color: var(--secondary-color);
}

.service-category h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--accent-color);
    font-size: 1.6rem;
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
}

.service-list li:before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.what-we-dont {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-left: 5px solid var(--warning-color);
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-left-width: 5px;
}

.what-we-dont h3 {
    color: #92400e;
    border-bottom-color: var(--warning-color);
}

.what-we-dont:hover {
    border-left-color: #d97706;
    box-shadow: var(--shadow-xl);
    border-left-width: 6px;
}

[data-theme="dark"] .what-we-dont {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.05) 100%);
    border-color: rgba(245, 158, 11, 0.4);
}

[data-theme="dark"] .what-we-dont h3 {
    color: var(--warning-color);
}

.disclaimer-intro {
    font-weight: 500;
    margin-bottom: 1rem;
}

.service-list.disclaimer li:before {
    content: "\26A0";
    color: var(--warning-color);
}

/* Who We Serve Section */
.serve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.serve-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.serve-description,
.serve-benefits {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.serve-description:hover,
.serve-benefits:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
    border-color: var(--secondary-color);
}

.serve-card {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.serve-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: grayscale(20%);
}

.serve-card h3 {
    margin-bottom: 1rem;
}

.expertise {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.expertise:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.expertise-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.expertise-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

.expertise-list li:before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

/* Compliance Section */
.compliance-placeholder,
.pricing-placeholder {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.placeholder-list {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

/* About Section */
.about-logo-showcase {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.full-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.full-logo:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .full-logo {
        max-width: 300px;
    }

    .about-logo-showcase {
        margin-bottom: 2rem;
    }
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-story,
.about-team {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-team h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.team-member {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

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

.team-title {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.team-member p:last-child {
    line-height: 1.7;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.about-mission,
.about-values,
.about-expertise {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--border-color);
}

.about-story p,
.about-mission p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.about-mission {
    background: linear-gradient(135deg, #2d6b73 0%, #418f9d 50%, #3da9ae 100%);
    color: white;
    text-align: center;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    padding: 4rem 3rem;
}

.about-mission::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    pointer-events: none;
    animation: pulse 15s ease-in-out infinite;
}

.about-mission h3 {
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    font-size: 2rem;
    font-weight: 800;
}

.about-mission p {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    opacity: 1;
    color: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.value-card {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border-left: 5px solid var(--secondary-color);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    border-left-width: 5px;
    box-shadow: var(--shadow-sm);
}

.value-card:hover {
    transform: translateY(-4px) translateX(4px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--primary-color);
}

.value-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
    font-weight: 600;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.note {
    font-style: italic;
    color: var(--text-light);
    margin-top: 1.5rem;
    padding: 1.25rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.pricing-card {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    text-align: center;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
    position: relative;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured::before {
    content: "POPULAR";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.price-tag {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin: 1rem 0 0.5rem;
    letter-spacing: -0.03em;
}

.price-detail {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.pricing-card .service-list {
    text-align: left;
    margin: 1.5rem 0;
}

.pricing-card .note {
    font-size: 0.85rem;
    margin-top: 1rem;
}

.insurance-list-section {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 2px solid var(--border-color);
}

.insurance-list-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: left;
    letter-spacing: -0.01em;
}

.insurance-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
    text-align: left;
}

.insurance-list li {
    padding: 0.75rem 0.75rem 0.75rem 2rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.insurance-list li:hover {
    background: white;
    border-color: var(--secondary-color);
    transform: translateX(3px);
}

.insurance-list li:before {
    content: "\2713";
    position: absolute;
    left: 0.5rem;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.cta-box {
    background: linear-gradient(135deg, #2d6b73 0%, #418f9d 50%, #3da9ae 100%);
    color: white;
    padding: 4rem 3rem;
    border-radius: var(--radius-xl);
    text-align: center;
    margin-top: 3rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    pointer-events: none;
    animation: pulse 15s ease-in-out infinite;
}

.cta-box h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2.25rem;
    position: relative;
    z-index: 1;
    font-weight: 800;
}

.cta-box p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

.cta-box .btn-primary {
    background: white;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    padding: 18px 40px;
    font-size: 1.1rem;
}

.cta-box .btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

/* Contact Section */
.contact-form {
    max-width: 750px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 3.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.15);
}

[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group select:focus,
[data-theme="dark"] .form-group textarea:focus {
    box-shadow: 0 0 0 4px rgba(107, 181, 227, 0.2);
}

.contact-form button {
    width: 100%;
    margin-top: 1rem;
}

/* Practice Type Bubble Options */
.practice-type-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.bubble-option {
    cursor: pointer;
    display: block;
}

.bubble-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.bubble-option .bubble {
    display: inline-block;
    padding: 0.875rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.bubble-option .bubble:hover {
    border-color: var(--secondary-color);
    background-color: var(--bg-white);
}

.bubble-option input[type="radio"]:checked + .bubble {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: white;
    box-shadow: var(--shadow);
}

.bubble-option input[type="radio"]:focus + .bubble {
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.15);
}

.form-message {
    max-width: 700px;
    margin: 1rem auto 0;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 4rem 0 1.5rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

[data-theme="dark"] .footer {
    background: linear-gradient(135deg, #0a0e13 0%, #1e293b 100%);
}

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

.footer-section h4 {
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: none; /* Hidden until social accounts are set up */
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(65, 143, 157, 0.2), rgba(61, 169, 174, 0.1));
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(65, 143, 157, 0.2);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(65, 143, 157, 0.4);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        justify-content: space-between;
        padding: 0.5rem 15px;
        gap: 1rem;
    }

    .nav-controls {
        order: 3;
        gap: 0.5rem;
    }

    .logo {
        order: 1;
        font-size: 0;
        flex: 1;
    }

    .logo-img {
        height: 70px;
        margin: 0;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 1rem;
        order: 4;
    }

    .nav-menu.active {
        left: 0;
    }

    [data-theme="dark"] .nav-menu {
        background-color: rgba(15, 20, 25, 0.98);
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 80px;
    }

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

    .tagline {
        font-size: 1.2rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    section {
        padding: 70px 0;
    }

    .section-intro {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .service-category,
    .serve-card,
    .pricing-card,
    .serve-description,
    .serve-benefits {
        padding: 2rem;
    }

    .about-mission {
        padding: 3rem 2rem;
    }

    .cta-box {
        padding: 3rem 2rem;
    }

    .cta-box h3 {
        font-size: 1.75rem;
    }

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

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

    .btn-primary, .btn-secondary {
        padding: 14px 28px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

/* Animations */
/* Animation handled by JavaScript IntersectionObserver for better scroll-based triggering */

/* Add subtle entrance animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Service list improvements */
.service-list li {
    transition: all 0.2s ease;
}

.service-list li:hover {
    transform: translateX(5px);
    color: var(--primary-color);
}

/* Smooth scrollbar styling for webkit browsers */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 6px;
    border: 2px solid var(--bg-light);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

/* Selection color */
::selection {
    background-color: var(--secondary-color);
    color: white;
}

::-moz-selection {
    background-color: var(--secondary-color);
    color: white;
}