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

:root {
    --primary-color: #02bfe9;
    --primary-dark: #0298bd;
    --primary-light: #33ccee;
    --primary-lighter: #66d9f2;
    --primary-pale: #e6f9fd;
    --secondary-color: #0a2239;
    --text-dark: #1a1a2e;
    --text-light: #546e7a;
    --bg-light: #f5f9fb;
    --bg-section: #e6f9fd;
    --white: #ffffff;
    --border-color: #d4ebf2;
    --shadow: 0 4px 6px rgba(2, 191, 233, 0.1);
    --shadow-lg: 0 10px 30px rgba(2, 191, 233, 0.15);
    --gradient-primary: linear-gradient(135deg, #02bfe9 0%, #0298bd 100%);
    --gradient-light: linear-gradient(135deg, #33ccee 0%, #02bfe9 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Header & Navigation */
.header {
    background: var(--gradient-primary);
    box-shadow: 0 2px 10px rgba(2, 191, 233, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    opacity: 1;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: all 0.3s;
    font-size: 0.95rem;
    opacity: 1;
}

.nav-menu a:hover {
    color: var(--white);
    opacity: 0.85;
    transform: translateY(-1px);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s;
}

/* Buttons */
.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid var(--white);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--white);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.4);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Header specific button styles */
.header .btn-primary {
    background: var(--white);
    color: var(--primary-color) !important;
    border-color: var(--white);
}

.header .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark) !important;
}

.header .btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white) !important;
    border-color: rgba(255, 255, 255, 0.8);
}

.header .btn-outline:hover {
    background: var(--white);
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-pale) 0%, var(--white) 100%);
    padding: 6rem 0;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.hero-image img {
    width: 80%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: block;
    object-fit: contain;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .hero-image img {
        background: transparent !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        width: 70% !important;
        max-width: 230px !important;
        min-width: 120px !important;
        margin: 0 auto !important;
        display: block !important;
    }
}

/* Hero buttons specific styles */
.hero .btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.hero .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

.hero .btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.hero .btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--white);
}

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

.service-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    background: var(--white);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* About Section */
.about {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-section) 0%, #f8fdff 100%);
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -140px;
    right: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(2, 191, 233, 0.16) 0%, rgba(2, 191, 233, 0) 70%);
}

.about::after {
    content: '';
    position: absolute;
    bottom: -180px;
    left: -140px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(10, 34, 57, 0.08) 0%, rgba(10, 34, 57, 0) 72%);
}

.about .container {
    position: relative;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.95fr);
    gap: 2rem;
    align-items: stretch;
}

.about-text {
    position: relative;
    padding: 3rem;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(2, 191, 233, 0.16);
    box-shadow: 0 24px 60px rgba(10, 34, 57, 0.08);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.about-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(2, 191, 233, 0.16) 0%, rgba(2, 191, 233, 0) 72%);
    transform: translate(-35%, -35%);
}

.about-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(2, 191, 233, 0.12);
    color: var(--primary-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.about-text h2 {
    position: relative;
    font-size: clamp(2.3rem, 4vw, 3.4rem);
    line-height: 1.05;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: -0.03em;
    max-width: 11ch;
    margin-bottom: 1.5rem;
}

.about-highlight {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--secondary-color);
    max-width: 42rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-description-group {
    display: grid;
    gap: 1rem;
}

.about-description {
    color: var(--text-light);
    line-height: 1.85;
    margin: 0;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 0.9rem 1.4rem;
    background: var(--white);
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 700;
    border-radius: 999px;
    box-shadow: 0 12px 24px rgba(2, 191, 233, 0.14);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.about-link::after {
    content: '->';
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.about-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(2, 191, 233, 0.18);
    background: var(--primary-pale);
}

.about-link:hover::after {
    transform: translateX(4px);
}

.about-summary-card {
    position: relative;
    padding: 2rem;
    border-radius: 32px;
    background: linear-gradient(160deg, rgba(10, 34, 57, 0.98) 0%, rgba(7, 45, 72, 0.96) 100%);
    color: var(--white);
    box-shadow: 0 24px 60px rgba(10, 34, 57, 0.16);
    overflow: hidden;
}

.about-summary-card::before {
    content: '';
    position: absolute;
    top: -90px;
    right: -70px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(102, 217, 242, 0.24) 0%, rgba(102, 217, 242, 0) 72%);
}

.about-summary-title {
    position: relative;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.74);
    margin-bottom: 1.4rem;
}

.about-pillars {
    position: relative;
    display: grid;
    gap: 1rem;
}

.about-pillar {
    padding: 1.2rem 1.25rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.about-pillar strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.45rem;
    color: var(--white);
}

.about-pillar p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
    font-size: 0.95rem;
}

/* Professionals Section */
.professionals-section {
    margin-top: 4.5rem;
    padding-top: 3.5rem;
    border-top: 1px solid rgba(2, 191, 233, 0.16);
}

.professionals-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.professionals-heading-copy {
    max-width: 32rem;
}

.professionals-intro {
    max-width: 36rem;
    color: var(--text-light);
    line-height: 1.85;
}

.professionals-section h3 {
    font-size: 2.4rem;
    color: var(--secondary-color);
    margin-top: 0.35rem;
    position: relative;
    display: inline-block;
    text-align: left;
    font-weight: 800;
}

.professionals-section h3::after {
    content: '';
    position: absolute;
    width: 72px;
    height: 4px;
    background: var(--gradient-primary);
    bottom: -12px;
    left: 0;
    transform: none;
    border-radius: 999px;
}

.professionals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 0;
    padding: 0;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    justify-items: stretch;
}

.professional-card {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 1.6rem;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 250, 252, 0.98) 100%);
    border: 1px solid rgba(2, 191, 233, 0.12);
    box-shadow: 0 22px 50px rgba(10, 34, 57, 0.08);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1), box-shadow 0.4s ease;
}

.professional-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 170px;
    background: linear-gradient(180deg, rgba(2, 191, 233, 0.18) 0%, rgba(2, 191, 233, 0) 100%);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.professional-card::after {
    content: '';
    position: absolute;
    top: -90px;
    right: -70px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(102, 217, 242, 0.28) 0%, rgba(102, 217, 242, 0) 70%);
    pointer-events: none;
}

.professional-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(10, 34, 57, 0.12);
}

.professional-card:hover::before {
    opacity: 1;
}

.professional-image {
    width: 120px;
    height: 120px;
    margin: 0;
    border-radius: 28px;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 16px 30px rgba(2, 191, 233, 0.18);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.professional-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.professional-card:hover .professional-image img {
    transform: scale(1.06);
}

.professional-info {
    position: relative;
    z-index: 1;
    padding: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100%;
}

.professional-card-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    align-items: center;
    margin-bottom: 1.4rem;
}

.professional-identity {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.professional-badge {
    display: inline-flex;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(2, 191, 233, 0.16);
    color: var(--primary-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}

.professional-info h4 {
    font-size: 1.5rem;
    margin: 0 0 0.45rem;
    color: var(--secondary-color);
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.professional-info h4::after {
    content: '';
    position: absolute;
    width: 48px;
    height: 3px;
    background: var(--gradient-primary);
    bottom: -10px;
    left: 0;
    transform: none;
    opacity: 0.85;
    border-radius: 999px;
}

.professional-title {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.5;
    margin: 0.25rem 0 0;
    padding: 0;
    position: relative;
}

.specialties {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.6rem;
    margin: 1.25rem 0 1.2rem;
    padding: 0;
}

.professional-specialty {
    display: inline-block;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary-dark);
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 700;
    margin: 0;
    border: 1px solid rgba(2, 191, 233, 0.14);
    transition: all 0.3s ease;
}

.professional-specialty:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
}

.professional-crp {
    color: var(--text-light);
    line-height: 1.4;
    margin: 0.85rem 0 0.15rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.professional-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
    padding: 0.9rem 1.4rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-decoration: none;
    border-radius: 18px;
    font-size: 0.95rem;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.22);
    width: 100%;
    max-width: none;
}

.professional-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
    color: white;
}

.professional-whatsapp svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: block;
}

.professional-whatsapp span {
    color: white;
    font-weight: 600;
}

.professional-description {
    color: var(--text-light);
    line-height: 1.75;
}

.professional-bio {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    text-align: left;
    margin: 0.2rem 0 1.5rem;
}

.professional-bio .professional-description {
    margin: 0;
    font-size: 0.96rem;
}

/* Values Section */
.values {
    padding: 6rem 0;
    background: var(--white);
}

.values-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.mv-card {
    background: var(--gradient-primary);
    padding: 2.5rem;
    border-radius: 16px;
    color: var(--white);
    text-align: center;
    box-shadow: 0 8px 20px rgba(2, 191, 233, 0.25);
}

.mv-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.mv-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
}

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

.principle-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    background: var(--white);
}

.principle-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.principle-card h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.principle-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Caregivers Section */
.caregivers {
    padding: 6rem 0;
    background: var(--bg-light);
}

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

.benefit-card {
    background: var(--bg-section);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.benefit-card p {
    color: var(--text-light);
}

.cta-box {
    background: var(--gradient-primary);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(2, 191, 233, 0.25);
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-box .btn-large {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.cta-box .btn-large:hover {
    background: var(--primary-pale);
    border-color: var(--primary-pale);
    color: var(--primary-dark);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--bg-light);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: var(--white);
}

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

.faq-item {
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-align: left;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

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

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--bg-section);
}

.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-intro h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.contact-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.contact-content-center {
    max-width: 900px;
    margin: 0 auto;
}

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

.info-box {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.info-box h3 {
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.info-box p {
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.whatsapp-box {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--white);
    text-align: center;
    padding: 2rem;
}

.whatsapp-box h3,
.whatsapp-box p {
    color: var(--white);
}

.whatsapp-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.whatsapp-icon-large svg {
    width: 100%;
    height: 100%;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--white);
    color: #25d366;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 1rem;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-whatsapp svg {
    width: 24px;
    height: 24px;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column p {
    opacity: 0.8;
    line-height: 1.8;
}

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

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.7;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
    z-index: 999;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 4px 10px rgba(2, 191, 233, 0.3);
        padding: 2rem 0;
        gap: 1rem;
    }

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

    .hamburger {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .hero-image {
        order: -1;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-text,
    .about-summary-card {
        padding: 2rem;
        border-radius: 28px;
    }

    .about-text h2 {
        font-size: 2.2rem;
        max-width: none;
    }

    .mission-vision,
    .principles-grid {
        grid-template-columns: 1fr;
    }

    .professionals-heading {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 2rem;
    }

    .professionals-intro {
        max-width: none;
    }

    .professionals-section h3 {
        font-size: 2.1rem;
    }

    .professionals-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
    }

    .professional-card {
        padding: 1.4rem;
    }
    
    .professional-whatsapp {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .services,
    .about,
    .caregivers,
    .testimonials,
    .faq,
    .contact {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .about-text,
    .about-summary-card,
    .professional-card {
        padding: 1.5rem;
        border-radius: 24px;
    }

    .about-text h2 {
        font-size: 1.95rem;
    }

    .about-highlight {
        font-size: 1.05rem;
    }

    .about-link {
        width: 100%;
        justify-content: center;
    }

    .services-grid,
    .benefits-grid,
    .testimonials-grid,
    .principles-grid,
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .professionals-heading {
        align-items: center;
        text-align: center;
    }

    .professionals-section h3 {
        font-size: 1.9rem;
        display: block;
        text-align: center;
    }

    .professionals-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .professionals-intro {
        text-align: center;
    }

    .professional-card-header {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .professional-image {
        width: 110px;
        height: 110px;
    }

    .professional-identity {
        align-items: center;
        text-align: center;
    }

    .professional-info h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .specialties {
        justify-content: center;
    }

    .cta-box {
        padding: 2rem;
    }

    .cta-box h3 {
        font-size: 1.5rem;
    }

    .cta-box p {
        font-size: 1rem;
    }

    .contact-intro h3 {
        font-size: 1.5rem;
    }

    .contact-intro p {
        font-size: 1rem;
    }
}

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

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.fade-in {
    animation: fade-in 0.8s ease-out forwards;
}

.fade-in-up {
    animation: fade-in-up 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Initial state for animated elements */
.services-grid > *,
.testimonials-grid > *,
.principles-grid > *,
.contact-info-grid > *,
.mission-vision > *,
.professionals-grid > * {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
}

/* WhatsApp Float Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
    animation: float 3s ease-in-out infinite;
    padding: 12px;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 100%;
    height: 100%;
}
