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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.5rem;
}

.logo-icon {
    background: #333;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #007bff;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e6f2ff 100%);
    margin-top: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-text .cta-buttons {
    margin-bottom: 2rem;
}

.hero-text .feature-list {
    margin-top: 2rem;
}

.hero-text .feature-list .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #28a745;
    font-size: 0.95rem;
}

.hero-text .feature-list .feature-item::before {
    content: '✓';
    margin-right: 0.75rem;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Language toggle */
.lang-toggle {
    display: inline-flex;
    gap: 8px;
}

.lang-btn {
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #fff;
    color: #111;
    font-weight: 700;
    line-height: 1;
    min-width: 44px;
}

.lang-btn.active {
    background: #007bff;
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.3);
}

.btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #007bff;
    color: white;
}

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: #666;
    border: 1px solid #ddd;
}

.btn-secondary:hover {
    background: #f8f9fa;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9ff 0%, #e6f2ff 100%);
    padding: 120px 0 80px;
    margin-top: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.hero-text h1 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #007bff;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.uptime-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Dashboard Preview */
.dashboard-preview {
    position: relative;
    background: #2c3e50;
    border-radius: 12px;
    padding: 20px;
    color: white;
    min-height: 400px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dashboard-title {
    font-size: 1.2rem;
    font-weight: 600;
}

.book-appointment-btn {
    background: #007bff;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    border: none;
    cursor: pointer;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.day-header {
    text-align: center;
    font-size: 0.8rem;
    color: #bbb;
    padding: 8px;
}

.calendar-day {
    aspect-ratio: 1;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    position: relative;
}

.calendar-day.has-appointment {
    background: #007bff;
    color: white;
}

.calendar-day.empty {
    background: #34495e;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.dashboard-stat {
    text-align: center;
}

.dashboard-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.dashboard-stat-number.green { color: #28a745; }
.dashboard-stat-number.blue { color: #007bff; }
.dashboard-stat-number.orange { color: #fd7e14; }

.dashboard-stat-label {
    font-size: 0.8rem;
    color: #bbb;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    color: #007bff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: #e6f2ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #007bff;
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-description {
    color: #666;
    margin-bottom: 1rem;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #666;
}

.feature-list li::before {
    content: '✓';
    color: #28a745;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Before/After Section */
.before-after {
    padding: 80px 0;
    background: #f8f9fa;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.comparison-column {
    background: white;
    padding: 2rem;
    border-radius: 12px;
}

.comparison-column.before {
    border-left: 4px solid #dc3545;
}

.comparison-column.after {
    border-left: 4px solid #28a745;
}

.comparison-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.comparison-title.before {
    color: #dc3545;
}

.comparison-title.after {
    color: #28a745;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 8px;
}

.comparison-item.before {
    background: #fff5f5;
    border-left: 3px solid #dc3545;
}

.comparison-item.after {
    background: #f0fff4;
    border-left: 3px solid #28a745;
}

.comparison-icon {
    margin-right: 0.75rem;
    margin-top: 0.2rem;
}

.comparison-icon.before {
    color: #dc3545;
}

.comparison-icon.after {
    color: #28a745;
}

/* Impact Stats */
.impact-stats {
    /* padding: 80px 0; */
    background: white;
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 64px;
    height: 64px;
    background: #e6f2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #007bff;
    font-size: 1.5rem;
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 0.5rem;
}

.stat-metric {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-subtitle {
    font-size: 0.9rem;
    color: #666;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 1.5rem;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1.5rem;
}

.faq-toggle {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

/* Pricing Section - Separate Package Tables */
.pricing {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.package-container {
    position: relative;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.package-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.package-container.featured {
    border: 3px solid #007bff;
    transform: scale(1.05);
}

.package-container.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #007bff;
    color: white;
    padding: 4px 16px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    z-index: 10;
}

.package-table {
    width: 100%;
    border-collapse: collapse;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative; /* Add this for absolute positioning context */
}

.package-table thead {
    flex: 0 0 auto;
    width: 100%;
}

.package-table tbody {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    width: 100%;
}

.package-table tbody .cta-row {
    margin-top: auto; /* Push CTA row to the bottom */
}

.package-header-row {
    background: #f8f9fa;
}

.package-info {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 2px solid #e9ecef;
}

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

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007bff;
}

.price-currency {
    font-size: 1.1rem;
    color: #666;
    margin-top: 0.4rem;
}

.price-period {
    font-size: 1rem;
    color: #666;
}

/* Feature Items */
.feature-item {
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.4;
}

.feature-item:last-of-type {
    border-bottom: none;
}

.feature-item.advanced {
    background: #f8f9ff;
    font-weight: 500;
}

.feature-item.premium {
    background: #fff8f8;
    font-weight: 500;
    color: #d63384;
}

/* CTA Row - Aligned Buttons */
.cta-row {
    background: white !important;
}

.package-cta {
    padding: 1.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center; /* Center horizontally */
    min-height: 80px; /* Ensure consistent height */
    position: absolute; /* Position absolutely within the table */
    bottom: 0; /* Stick to bottom */
    left: 0;
    right: 0;
    margin: 0 auto; /* Center horizontally */
    background: white; /* Match the background */
}

.pricing-btn {
    width: 100%;
    max-width: 200px; /* Consistent max width */
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    white-space: nowrap;
}

/* Package Container Variants */
.package-container.starter {
    border-top: 4px solid #28a745;
}

.package-container.growth {
    border-top: 4px solid #007bff;
}

.package-container.enterprise {
    border-top: 4px solid #6f42c1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .package-container.featured {
        transform: none;
    }

    .package-container.featured:hover {
        transform: translateY(-5px);
    }

    .price-amount {
        font-size: 2rem;
    }

    .pricing-title {
        font-size: 1.3rem;
    }

    .feature-item {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .package-cta {
        padding: 1rem;
        justify-content: flex-end;
    }
}



.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #e6f2ff 0%, #f0f8ff 100%);
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Support Section */
.support {
    padding: 60px 0;
    background: #e6f2ff;
    text-align: center;
}

.support-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ecf0f1;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #007bff;
}

.newsletter {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.newsletter input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 6px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.social-links a {
    color: #bdc3c7;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #007bff;
}

/* Circular Social Icon Buttons */
.icon-buttons a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #ecf0f1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.icon-buttons a:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.16);
    color: #ffffff;
}

.icon-buttons svg {
    width: 22px;
    height: 22px;
    display: block;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    text-decoration: none;
    z-index: 1100;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}
.whatsapp-float svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

    .nav-links {
        display: none;
    }

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

    .hero-text .feature-list .feature-item {
        font-size: 0.9rem;
        min-width: auto;
    }

    .hero-text .feature-list .feature-item span {
        font-size: 0.9rem;
    }
}/* Responsive */
