/* Color Palette from Mood Board */
:root {
    --gray-nurse: #E7EEE9;
    --blue-bayoux: #4E6F7E;
    --anzac: #E2AA56;
    --fountain-blue: #5BC1BE;
    --dark-text: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Ubuntu', sans-serif;
    background-color: var(--gray-nurse);
    color: var(--dark-text);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.sticky-header {
    position: sticky;
    top: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 10px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px; /* Increased size from 50px */
    width: auto;
    display: block;
    transition: transform 0.3s ease; [cite: 40]
}
.logo img:hover {
    transform: scale(1.05);
}
.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: var(--blue-bayoux);
    margin: 0 15px;
    font-weight: 500;
}

.cta-button {
    background: var(--anzac);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(226, 170, 86, 0.3); [cite: 13]
}

/* Hero */
.hero {
    background: linear-gradient(rgba(78, 111, 126, 0.8), rgba(78, 111, 126, 0.8)), url('hero-bg.jpg');
    background-size: cover;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1 { font-size: 3rem; margin-bottom: 10px; }

.search-container {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.search-container input {
    padding: 15px;
    width: 400px;
    border: none;
    border-radius: 5px 0 0 5px;
}

.search-container button {
    padding: 15px 25px;
    border: none;
    background: var(--fountain-blue);
    color: white;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

/* Services */
.services { padding: 80px 0; }
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
    border-bottom: 5px solid var(--fountain-blue);
}

.card:hover { transform: translateY(-10px); }
.card i { font-size: 3rem; color: var(--blue-bayoux); margin-bottom: 15px; }

/* WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

/* Footer */
footer {
    background: var(--blue-bayoux);
    color: white;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

footer a { color: var(--anzac); text-decoration: none; }
.credit { text-align: center; font-size: 0.8rem; margin-top: 20px; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    text-decoration: none !important; /* Removes the underline */
    color: var(--blue-bayoux) !important; /* Matches your brand color */
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background-color: rgba(78, 111, 126, 0.1); /* Subtle background instead of raw link */
    border-radius: 50px;
    transition: all 0.3s ease; [cite: 6, 14]
}

.phone-link:hover {
    background-color: var(--blue-bayoux);
    color: white !important;
}

.phone-link i {
    color: var(--fountain-blue); /* Professional icon accent */
}