/* --- Global Styles & Vitality Flow Concept --- */
:root {
    --teal: #149397;
    --peach: #FFE0C7;
    --coral: #FF6B6B;
    --charcoal: #333333;
    --cream: #FDFBF8;
    --grey: #555;

    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--charcoal);
    line-height: 1.7;
    overflow-x: hidden;
}

#vitality-aura {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    transition: background 0.2s ease-out;
}

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

/* --- Header --- */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 10;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: white;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

.main-nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: white;
}

.phone-number {
    color: white;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.phone-number:hover {
    background-color: white;
    color: var(--teal);
}

/* --- Hero Section --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(45deg, var(--teal), #25aeb2);
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    max-width: 900px;
    margin: 0 auto 20px;
    animation: fadeInDown 1s ease-out;
}

.hero-subheadline {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease-out 0.3s;
    animation-fill-mode: both;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--coral);
    color: white;
    animation: fadeInUp 1s ease-out 0.6s;
    animation-fill-mode: both;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--charcoal);
    border: 2px solid var(--charcoal);
}

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

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

/* --- Services Section --- */
.services-section {
    padding: 100px 0;
    background-color: var(--cream);
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 50px;
}

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

.service-card {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.learn-more {
    text-decoration: none;
    color: var(--coral);
    font-weight: 700;
    margin-top: 20px;
    display: inline-block;
}

/* --- Human Element Section --- */
.human-element-section {
    padding: 120px 0;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?q=80&w=2070&auto=format&fit=crop'); /* Placeholder image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: white;
}

.human-element-content {
    max-width: 700px;
    margin: 0 auto;
}

.human-element-content h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

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

/* --- Contact Section --- */
.contact-section {
    padding: 100px 0;
    background-color: var(--cream);
    text-align: center;
}

.contact-subtext {
    font-size: 1.1rem;
    color: var(--grey);
    margin-bottom: 50px;
}

.contact-details {
    display: flex;
    justify-content: space-around;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-item h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--grey);
    margin-bottom: 10px;
}
.contact-info-link, .contact-info-static {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--charcoal);
    text-decoration: none;
}
.contact-info-link:hover {
    color: var(--coral);
}

/* --- Footer --- */
.main-footer {
    background-color: #2c2c2c;
    color: rgba(255, 255, 255, 0.7);
    padding: 40px 0;
    text-align: center;
}

.fundbridge-credit {
    font-weight: bold;
    color: white;
}

/* --- Animations --- */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-animation {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(255, 107, 107, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 107, 107, 0); }
}

/* --- Responsiveness --- */
@media (max-width: 768px) {
    .hero-headline { font-size: 3rem; }
    .services-grid { grid-template-columns: 1fr; }
    .main-nav { display: none; } /* Simplified for demo */
    .contact-details { flex-direction: column; gap: 40px;}
}
