/* CSS Variables for unifying the theme */
:root {
    --primary-green: #1f8a4c;      /* From logo/healthcare aesthetic */
    --hover-green: #176a39;
    --light-green: #e6f7ec;
    --accent-yellow: #f5b041;      /* For rating stars */
    --text-dark: #1a1f24;
    --text-muted: #5a6b7c;
    --white: #ffffff;
    --bg-light: #f8faf9;
    --border-color: #e5e9ea;
    
    --shadow-sm: 0 2px 8px rgba(31, 138, 76, 0.08);
    --shadow-md: 0 8px 24px rgba(31, 138, 76, 0.12);
    --radius-md: 12px;
    --radius-lg: 24px;
    
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
}

p {
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

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

.section-padding {
    padding: 80px 0;
}

.icon {
    width: 20px;
    height: 20px;
    display: inline-block;
}

/* Utility Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(31, 138, 76, 0.3);
}

.btn-primary:hover {
    background-color: var(--hover-green);
    box-shadow: 0 6px 16px rgba(31, 138, 76, 0.4);
}

.btn-secondary {
    background-color: var(--light-green);
    color: var(--primary-green);
    border: 1px solid rgba(31, 138, 76, 0.2);
}

.btn-secondary:hover {
    background-color: #d1f0df;
}

.pulse-btn {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(31, 138, 76, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(31, 138, 76, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(31, 138, 76, 0);
    }
}

/* Header */
.main-header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

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

.logo-icon {
    color: var(--primary-green);
    width: 40px;
    height: 40px;
}

.logo-text h1 {
    font-size: 1.25rem;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.logo-text span {
    font-size: 0.75rem;
    color: var(--primary-green);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Info Banner */
.info-banner {
    background-color: var(--light-green);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-green);
}

.banner-content {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.banner-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Hero Section */
.hero {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.badge-experience {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--white);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-green);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
}

.badge-icon {
    color: var(--accent-yellow);
    font-size: 1.1rem;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero p {
    font-size: 1.125rem;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.trust-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.stars {
    color: var(--accent-yellow);
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.half-star {
    opacity: 0.5;
}

.rating-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* Abstract Hero Visual */
.hero-image-placeholder {
    position: relative;
    height: 400px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.health-illustration {
    position: relative;
    width: 300px;
    height: 300px;
}

.cross-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background-color: var(--light-green);
    border-radius: 20px;
    z-index: 1;
}

.cross-bg::before, .cross-bg::after {
    content: '';
    position: absolute;
    background-color: var(--primary-green);
    border-radius: 8px;
}

.cross-bg::before {
    top: 20px;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
}

.cross-bg::after {
    left: 20px;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
}

.pill {
    position: absolute;
    width: 60px;
    height: 24px;
    border-radius: 12px;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.pill-1 {
    background: linear-gradient(90deg, var(--accent-yellow) 50%, #fff 50%);
    top: 40px;
    right: 20px;
    transform: rotate(30deg);
    animation: float 4s ease-in-out infinite;
}

.pill-2 {
    background: linear-gradient(90deg, #3498db 50%, #fff 50%);
    bottom: 60px;
    left: 10px;
    transform: rotate(-20deg);
    animation: float 5s ease-in-out infinite alternate;
}

@keyframes float {
    0% { transform: translateY(0) rotate(30deg); }
    50% { transform: translateY(-10px) rotate(35deg); }
    100% { transform: translateY(0) rotate(30deg); }
}

/* Services */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 1.1rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-green);
    transform: translateY(-4px);
}

.service-icon {
    width: 56px;
    height: 56px;
    background-color: var(--light-green);
    color: var(--primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

/* Trust Section */
.trust-section {
    background-color: var(--bg-light);
}

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

.trust-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.experience-circle {
    width: 240px;
    height: 240px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-md);
    border: 8px solid var(--light-green);
    text-align: center;
}

.experience-circle .number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 8px;
}

.experience-circle .text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.trust-content h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.trust-content p {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

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

.trust-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.trust-list li svg {
    color: var(--primary-green);
    width: 24px;
    height: 24px;
}

/* CTA Banner */
.cta-banner {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.cta-banner h2 {
    font-size: 2.25rem;
    margin-bottom: 12px;
}

.cta-banner p {
    font-size: 1.1rem;
    color: var(--light-green);
    margin-bottom: 32px;
}

.cta-banner .btn-primary {
    background-color: var(--white);
    color: var(--primary-green);
    font-size: 1.125rem;
    padding: 16px 32px;
}

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

/* Footer */
.main-footer {
    background-color: #111827;
    color: #e5e7eb;
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-desc {
    margin-top: 16px;
    max-width: 400px;
    color: #9ca3af;
}

.footer-contact h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-contact p {
    margin-bottom: 16px;
    color: #d1d5db;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Responsive Media Queries */
@media (max-width: 900px) {
    .banner-content {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero p {
        margin: 0 auto 32px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .trust-rating {
        justify-content: center;
    }
    
    .hero-image-placeholder {
        display: none; /* Hide visual on smaller screens to keep it simple */
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .header-container {
        flex-direction: column;
        gap: 12px;
        padding-top: 12px;
        padding-bottom: 12px;
        height: auto;
    }
    
    .hero h2 {
        font-size: 2.25rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}
