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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 32px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
}

.nav-logo h2 {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
}

.nav-logo .accent {
    color: #1a3661;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
    cursor: pointer;
}

.dropdown-toggle:hover {
    color: #1a3661;
}

.dropdown-toggle i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #e2e8f0;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-link {
    display: block;
    padding: 12px 24px;
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-link:hover {
    background: #f8fafc;
    color: #1a3661;
    padding-left: 28px;
}

.dropdown-link.active {
    color: #1a3661;
    background: #ebf8ff;
    border-left: 3px solid #1a3661;
}

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #1a3661;
}

.nav-cta {
    background: #1a3661;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #2c5aa0;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #2d3748;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e6fffa;
    color: #234e52;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a5568;
    font-weight: 500;
}

.feature i {
    color: #1a3661;
}

.hero-cta {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(26, 54, 97, 0.2);
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(26, 54, 97, 0.25);
}

.btn-primary {
    background: #1a3661;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: #2c5aa0;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(49, 130, 206, 0.3);
}

.btn-secondary {
    background: white;
    color: #1a3661;
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #1a3661;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: #1a3661;
    color: white;
}

.hero-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a3661, #2c5aa0);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: white;
}

.hero-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a202c;
}

.hero-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

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

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 8px 32px rgba(26, 54, 97, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a3661, #2c5aa0);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(26, 54, 97, 0.15);
    border-color: #1a3661;
}

.service-card:hover::before {
    opacity: 0.03;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a3661, #2c5aa0);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 28px;
    color: white;
    box-shadow: 0 8px 20px rgba(26, 54, 97, 0.3);
    transition: all 0.3s ease;
}

.service-feature-img {
    width: 120px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
    border-radius: 12px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.weight-loss-card {
    position: relative;
}

.weight-loss-card .service-feature-img {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100px;
    opacity: 0.15;
}

.weight-loss-card:hover .service-feature-img {
    opacity: 0.25;
    transform: scale(1.05);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(26, 54, 97, 0.4);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a202c;
}

.service-card p {
    color: #4a5568;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    margin-bottom: 32px;
}

.service-card li {
    padding: 8px 0;
    color: #4a5568;
    position: relative;
    padding-left: 24px;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #38a169;
    font-weight: bold;
}

.service-link {
    color: #1a3661;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f7fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.practitioner-info h3 {
    font-size: 28px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 16px;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.credential {
    background: #1a3661;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.practitioner-info p {
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.7;
}

.experience-highlights {
    display: flex;
    gap: 40px;
}

.highlight {
    text-align: center;
}

.highlight strong {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #1a3661;
}

.highlight span {
    color: #4a5568;
    font-size: 14px;
}

.image-placeholder {
    background: linear-gradient(135deg, #1a3661, #2c5aa0);
    border-radius: 16px;
    padding: 80px 0;
    text-align: center;
    color: white;
}

.image-placeholder i {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.image-placeholder p {
    font-size: 18px;
    font-weight: 500;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: white;
}

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

.pricing-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #1a3661;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a3661;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a202c;
}

.price {
    margin-bottom: 8px;
}

.price .amount {
    font-size: 32px;
    font-weight: 700;
    color: #1a3661;
}

.price .volume {
    color: #4a5568;
    margin-left: 8px;
}

.price-alt {
    margin-bottom: 24px;
    color: #4a5568;
}

.features {
    list-style: none;
    margin-bottom: 32px;
}

.features li {
    padding: 8px 0;
    color: #4a5568;
    position: relative;
    padding-left: 24px;
}

.features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #38a169;
    font-weight: bold;
}

.btn-outline {
    background: transparent;
    color: #1a3661;
    border: 2px solid #1a3661;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #1a3661;
    color: white;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f7fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-content-simple {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-header {
    margin-bottom: 50px;
}

.contact-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
}

.contact-header p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.6;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
}

.contact-info p {
    color: #4a5568;
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-content-simple .contact-methods {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    min-width: 200px;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: #1a3661;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.method-info h4 {
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 4px;
}

.method-info a {
    color: #1a3661;
    text-decoration: none;
    font-weight: 500;
}

.method-info span {
    color: #4a5568;
}

.form-container {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-container h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 32px;
    color: #1a202c;
}

.form-group {
    margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a3661;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section h3 .accent {
    color: #1a3661;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #e2e8f0;
}

.footer-section p {
    color: #a0aec0;
    line-height: 1.6;
}

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

.footer-section li {
    margin-bottom: 8px;
}

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

.footer-section a:hover {
    color: #1a3661;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 20px;
    text-align: center;
    color: #a0aec0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

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

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .experience-highlights {
        justify-content: center;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .weight-loss-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .weight-loss-hero .hero-text {
        text-align: center;
    }
    
    .weightloss-ruler-img {
        max-width: 300px;
    }

    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

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

    .hero-title {
        font-size: 28px;
    }

    .services,
    .about,
    .pricing,
    .contact {
        padding: 60px 0;
    }

    .service-card,
    .form-container {
        padding: 24px;
    }

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out;
}

.hero-content > *:nth-child(2) {
    animation-delay: 0.1s;
}

.hero-content > *:nth-child(3) {
    animation-delay: 0.2s;
}

.hero-content > *:nth-child(4) {
    animation-delay: 0.3s;
}

.hero-content > *:nth-child(5) {
    animation-delay: 0.4s;
}

/* Page Hero for Service Pages */
.page-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.page-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb {
    margin-bottom: 20px;
    color: #4a5568;
    font-size: 14px;
}

.breadcrumb a {
    color: #1a3661;
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 8px;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Weight Loss Hero Grid */
.weight-loss-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
    max-width: 1200px;
}

.weight-loss-hero .hero-text {
    text-align: left;
}

.hero-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.weightloss-ruler-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(26, 54, 97, 0.15);
    transition: all 0.3s ease;
}

.weightloss-ruler-img:hover {
    transform: scale(1.03);
    box-shadow: 0 25px 70px rgba(26, 54, 97, 0.2);
}

/* Service Details */
.service-details {
    padding: 80px 0;
    background: white;
}

.service-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Process Steps */
.process-info {
    margin: 50px 0;
    padding: 40px;
    background: #f8fafc;
    border-radius: 16px;
}

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

.step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #1a3661;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px;
}

.step-content p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* Conditions Treated */
.conditions-treated {
    margin-top: 50px;
    padding: 40px;
    background: #ebf8ff;
    border-radius: 16px;
}

.conditions-treated h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #1a202c;
}

.conditions-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.condition-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.condition-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.15);
}

.condition-item i {
    color: #38a169;
    font-size: 16px;
}

.condition-item span {
    color: #2d3748;
    font-weight: 500;
}

/* Weight Loss Specific Styles */
.medication-info {
    margin: 30px 0;
}

.info-highlight {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.info-highlight i {
    color: #856404;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.info-highlight p {
    margin: 0;
    color: #856404;
    line-height: 1.6;
}

.safety-info {
    margin-top: 50px;
    padding: 40px;
    background: #f0fff4;
    border-radius: 16px;
    border: 1px solid #c6f6d5;
}

.safety-info h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #1a202c;
}

.safety-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.eligibility-criteria,
.monitoring-info {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.eligibility-criteria h4,
.monitoring-info h4 {
    color: #1a202c;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.eligibility-criteria h4::before {
    content: '👤';
    font-size: 20px;
}

.monitoring-info h4::before {
    content: '🔍';
    font-size: 20px;
}

.eligibility-criteria ul,
.monitoring-info ul {
    list-style: none;
    margin: 0;
}

.eligibility-criteria li,
.monitoring-info li {
    padding: 8px 0;
    color: #4a5568;
    position: relative;
    padding-left: 24px;
    line-height: 1.6;
}

.eligibility-criteria li::before,
.monitoring-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #38a169;
    font-weight: bold;
}

.service-description h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
}

.service-description h3 {
    font-size: 28px;
    font-weight: 600;
    color: #1a202c;
    margin: 40px 0 20px;
}

.service-description p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
    font-size: 32px;
    color: #1a3661;
    margin-bottom: 16px;
}

.benefit-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
}

.benefit-item p {
    color: #4a5568;
    font-size: 14px;
    margin: 0;
}

/* Treatment Cards */
.treatments-pricing {
    padding: 80px 0;
    background: #f7fafc;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.weight-loss-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.weight-loss-grid .treatment-card {
    position: relative;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 10px 40px rgba(26, 54, 97, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.weight-loss-grid .treatment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a3661, #2c5aa0, #38a169);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.weight-loss-grid .treatment-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(26, 54, 97, 0.15);
    border-color: rgba(26, 54, 97, 0.2);
}

.weight-loss-grid .treatment-card:hover::before {
    opacity: 1;
}

.weight-loss-grid .treatment-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a3661, #2c5aa0);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: white;
    box-shadow: 0 8px 25px rgba(26, 54, 97, 0.3);
    transition: all 0.3s ease;
}

.weight-loss-grid .treatment-card:hover .treatment-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(26, 54, 97, 0.4);
}

.weight-loss-grid .pricing {
    background: linear-gradient(135deg, #1a3661 0%, #2c5aa0 100%);
    border: none;
    border-radius: 16px;
    padding: 24px 32px;
    margin: 24px 0;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 20px rgba(26, 54, 97, 0.25);
}

.weight-loss-grid .pricing .price-main {
    margin: 0;
}

.weight-loss-grid .pricing .price {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: -1px;
}

.weight-loss-grid .treatment-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.weight-loss-grid .treatment-description {
    flex-grow: 1;
}

.weight-loss-grid .btn-primary {
    margin-top: auto;
    align-self: stretch;
}

.treatment-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.treatment-card.featured {
    border-color: #1a3661;
}

.treatment-header {
    text-align: center;
    margin-bottom: 24px;
}

.treatment-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a3661, #2c5aa0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
}

.treatment-image {
    width: 280px;
    height: 280px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.treatment-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.treatment-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 16px;
}

.pricing {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #1a3661, #2c5aa0);
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(26, 54, 97, 0.2);
}

.price-option {
    text-align: center;
}

.price-option .volume {
    display: block;
    font-size: 14px;
    color: #4a5568;
    margin-bottom: 4px;
}

.price-option .price {
    font-size: 24px;
    font-weight: 700;
    color: #1a3661;
}

.pricing .price {
    font-size: 32px;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-right: 8px;
}

.pricing .volume {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Special styling for "Price Varies" */
.pricing .price:only-child {
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin: 0;
}

.price-main .price {
    font-size: 28px;
    font-weight: 700;
    color: #1a3661;
}

.price-main .duration {
    font-size: 16px;
    color: #4a5568;
}

.treatment-description h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
}

.treatment-description ul {
    list-style: none;
    margin-bottom: 24px;
}

.treatment-description li {
    padding: 6px 0;
    color: #4a5568;
    position: relative;
    padding-left: 20px;
}

.treatment-description li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #38a169;
    font-weight: bold;
}

.treatment-description p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Additional Info */
.additional-info {
    margin-top: 60px;
}

.info-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 20px;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    padding: 8px 0;
    color: #4a5568;
    position: relative;
    padding-left: 24px;
    line-height: 1.6;
}

.info-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #38a169;
    font-weight: bold;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    padding: 24px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #1a3661;
    transform: translateY(-2px);
}

.faq-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a3661, #2c5aa0);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.cta-section .btn-primary {
    background: white;
    color: #1a3661;
}

.cta-section .btn-primary:hover {
    background: #f7fafc;
}

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: #1a3661;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .nav-dropdown:hover .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0;
        background: #f7fafc;
    }
    
    .page-hero h1 {
        font-size: 32px;
    }
    
    .page-hero p {
        font-size: 18px;
    }
    
    .treatments-grid,
    .weight-loss-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .pricing {
        flex-direction: column;
        gap: 10px;
    }
}

/* Get Started Section */
.get-started-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a3661 0%, #2c5aa0 100%);
    color: white;
}

.get-started-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.get-started-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.get-started-text p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
    line-height: 1.6;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.benefit i {
    color: #38a169;
    font-size: 18px;
}

.benefit span {
    font-weight: 500;
}

.get-started-action {
    text-align: center;
}

.btn-get-started {
    background: white;
    color: #1a3661;
    border: none;
    padding: 20px 40px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    margin-bottom: 16px;
}

.btn-get-started:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    background: #f8fafc;
}

.disclaimer {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 24px 32px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #1a3661, #2c5aa0);
    color: white;
}

.modal-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.modal-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 32px;
    max-height: 50vh;
    overflow-y: auto;
}

.modal-step {
    display: none;
}

.modal-step.active {
    display: block;
}

.modal-step h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
}

.modal-step p {
    color: #4a5568;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* State Grid */
.state-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.state-btn {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #4a5568;
}

.state-btn:hover {
    border-color: #1a3661;
    color: #1a3661;
    background: #f8fafc;
}

.state-btn.selected {
    background: #1a3661;
    color: white;
    border-color: #1a3661;
}

/* Service Selection */
.service-selection {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-option:hover {
    border-color: #1a3661;
    background: #f8fafc;
}

.service-option.selected {
    border-color: #1a3661;
    background: #ebf8ff;
}

.service-option-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a3661, #2c5aa0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.service-option-content h5 {
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 4px;
}

.service-option-content p {
    color: #4a5568;
    margin: 0;
    font-size: 14px;
}

/* Appointment Form */
.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.appointment-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.appointment-form label {
    font-weight: 600;
    color: #1a202c;
}

.appointment-form input,
.appointment-form select {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.appointment-form input:focus,
.appointment-form select:focus {
    outline: none;
    border-color: #1a3661;
}

/* Confirmation */
.confirmation-content {
    text-align: center;
}

.success-icon {
    margin-bottom: 24px;
}

.success-icon i {
    font-size: 64px;
    color: #38a169;
}

.confirmation-content h4 {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
}

.appointment-summary {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    margin-top: 24px;
    text-align: left;
}

.appointment-summary h5 {
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
}

/* Modal Footer */
.modal-footer {
    padding: 24px 32px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .get-started-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .modal-body {
        padding: 24px;
    }
    
    .state-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-selection {
        gap: 12px;
    }
    
    .service-option {
        padding: 16px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
