/*
Theme Name: Sanoosha Home Nursing
Theme URI: https://sanooshahomenursing.com
Author: Stark
Author URI: https://yourwebsite.com
Description: A professional healthcare-focused WordPress theme designed for home nursing services with compassionate design and easy-to-use features.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: starter-theme
Tags: healthcare, nursing, medical, home-care, custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, boxed-layout

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.
*/

/* ==========================================================================
   CSS Variables - Modern Healthcare Theme
   ========================================================================== */
:root {
    /* Modern Hospital Color Palette */
    --color-primary: #4A90A4;        /* Soft medical blue - calming and professional */
    --color-secondary: #E8B4B8;      /* Blush rose - warmth and compassion */
    --color-accent: #2D8B8B;         /* Teal - trust and vitality */
    --color-healthcare: #6BAF92;     /* Success green - health and wellness */
    --color-success: #6BAF92;        /* Success green - healing and growth */
    --color-text: #2C3E50;           /* Charcoal - professional readability */
    --color-text-light: #6B7B8E;     /* Soft gray for secondary text */
    --color-background: #F8FAFB;     /* Clean off-white - airy and spacious */
    --color-background-alt: #FFFFFF; /* Pure white for contrast */
    --color-background-light: #EDF4F5; /* Light blue tint for sections */
    --color-border: #E3E8EB;

    /* Typography */
    --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    --font-title: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    --font-caption: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    --font-nav: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;

    /* Spacing */
    --font-size-base: 16px;
    --line-height-base: 1.7;         /* Slightly more open for readability */
    --spacing-unit: 1rem;
    --container-width: 1180px;
    --sidebar-width: 300px;

    /* Border Radius for softer feel */
    --border-radius: 8px;
    --border-radius-sm: 4px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: #e5e5e5;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.5em;
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-top: 0;
    margin-bottom: var(--spacing-unit);
    font-family: var(--font-body);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover,
a:focus {
    color: var(--color-accent);
    text-decoration: underline;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-width: 100%;
    margin: 0 auto;
    background-color: var(--color-background);
}

.site-content {
    flex: 1;
    padding: 0;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 50px;
}

.content-area {
    display: flex;
    flex-wrap: wrap;
    gap: calc(var(--spacing-unit) * 2);
}

.primary {
    flex: 1;
    min-width: 0;
}

.sidebar {
    width: 100%;
}

@media (min-width: 768px) {
    .sidebar {
        width: var(--sidebar-width);
        flex-shrink: 0;
    }
}

/* ==========================================================================
   Top Bar
   ========================================================================== */
.top-bar {
    background: var(--color-text);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 0;
    font-size: 0.875rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-item i {
    color: var(--color-secondary);
    font-size: 0.875rem;
}

.top-bar-item span {
    color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   Header - Modern Professional Design
   ========================================================================== */
.site-header {
    background: var(--color-background-alt);
    box-shadow: 0 2px 20px rgba(74, 144, 164, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(74, 144, 164, 0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    gap: 2rem;
}

.site-branding {
    flex: 0 0 auto;
}

.site-title {
    margin: 0;
    font-size: 2.25rem;
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.5px;
}

.site-title a {
    color: var(--color-primary);
    text-decoration: none;
    font-family: var(--font-title);
    font-weight: 700;
    transition: color 0.3s ease;
}

.site-title a:hover {
    color: var(--color-accent);
    text-decoration: none;
}

.site-description {
    margin: 0.25rem 0 0;
    color: var(--color-text-light);
    font-size: 0.95rem;
    font-weight: 400;
}

.custom-logo {
    max-height: 80px;
    width: auto;
}

.custom-logo-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.custom-logo-link:hover {
    transform: scale(1.05);
}

/* ==========================================================================
   Navigation - Modern Professional Design
   ========================================================================== */
.main-navigation {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 6px;
    position: relative;
}

.nav-menu > li > a:hover {
    color: var(--color-primary);
    background-color: rgba(74, 144, 164, 0.08);
}

.nav-menu > li.current-menu-item > a,
.nav-menu > li.current_page_item > a {
    color: var(--color-primary);
    font-weight: 600;
}

.nav-menu > li.current-menu-item > a::after,
.nav-menu > li.current_page_item > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.25rem;
    right: 1.25rem;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 3px 3px 0 0;
}

/* Dropdown Menu */
.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: white;
    box-shadow: 0 8px 30px rgba(74, 144, 164, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    list-style: none;
    margin: 0;
}

.nav-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .sub-menu li {
    margin: 0;
}

.nav-menu .sub-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--color-text);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-menu .sub-menu a:hover {
    background-color: var(--color-background);
    color: var(--color-primary);
    padding-left: 1.5rem;
}

/* Header CTA Button */
.header-cta .btn-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 164, 0.3);
}

.header-cta .btn-header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 164, 0.4);
}

.header-cta .btn-header-cta i {
    font-size: 1rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle .bar {
    width: 28px;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover .bar {
    background-color: var(--color-accent);
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Responsive - Modern Design */
@media (max-width: 992px) {
    .top-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .top-bar-left,
    .top-bar-right {
        flex-direction: column;
        gap: 0.75rem;
    }

    .header-content {
        flex-wrap: wrap;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu-wrapper {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 8px 30px rgba(74, 144, 164, 0.15);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0;
        display: none;
    }

    .nav-menu-wrapper.active {
        display: flex;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-menu > li > a {
        padding: 1rem;
        border-bottom: 1px solid var(--color-border);
    }

    .nav-menu > li:last-child > a {
        border-bottom: none;
    }

    .nav-menu > li.current-menu-item > a::after,
    .nav-menu > li.current_page_item > a::after {
        display: none;
    }

    .nav-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        padding-left: 1rem;
        background: var(--color-background);
    }

    .header-cta {
        width: 100%;
        margin-top: 1rem;
    }

    .header-cta .btn-header-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 20px;
    }

    .site-branding {
        text-align: center;
        width: 100%;
    }

    .site-title {
        font-size: 1.75rem;
    }

    .custom-logo {
        max-height: 60px;
    }
}

/* ==========================================================================
   Hero Section - Full Width (Legacy - see main hero section below)
   ========================================================================== */

/* ==========================================================================
   Content
   ========================================================================== */
.site-main {
    padding: 50px 0;
}

.site-main.front-page {
    padding: 0;
}

.front-page .container {
    padding-top: 50px;
    padding-bottom: 50px;
}

.entry-header {
    margin-bottom: var(--spacing-unit);
}

.entry-title {
    margin-bottom: 0.25em;
}

.entry-title a {
    color: var(--color-text);
}

.entry-title a:hover {
    color: var(--color-primary);
}

.entry-meta {
    color: var(--color-text-light);
    font-size: 0.875rem;
    font-family: var(--font-caption);
}

.entry-meta a {
    color: var(--color-text-light);
}

.entry-content {
    margin-bottom: var(--spacing-unit);
}

.entry-content img {
    max-width: 100%;
    height: auto;
}

.entry-footer {
    padding-top: var(--spacing-unit);
    border-top: 1px solid var(--color-border);
    color: var(--color-text-light);
    font-size: 0.875rem;
}

/* Post Thumbnail */
.post-thumbnail {
    margin-bottom: var(--spacing-unit);
}

.post-thumbnail img {
    display: block;
    width: 100%;
    height: auto;
}

/* ==========================================================================
   Post Navigation
   ========================================================================== */
.post-navigation,
.posts-navigation {
    margin: calc(var(--spacing-unit) * 2) 0;
    padding: var(--spacing-unit) 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.nav-links {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--spacing-unit);
}

.nav-previous,
.nav-next {
    flex: 1;
    min-width: 200px;
}

.nav-next {
    text-align: right;
}

/* Pagination */
.pagination {
    margin: calc(var(--spacing-unit) * 2) 0;
    text-align: center;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    margin: 0 0.25rem;
    border: 1px solid var(--color-border);
}

.pagination .page-numbers.current {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
}

/* ==========================================================================
   Comments
   ========================================================================== */
.comments-area {
    margin-top: calc(var(--spacing-unit) * 2);
    padding-top: calc(var(--spacing-unit) * 2);
    border-top: 1px solid var(--color-border);
}

.comments-title {
    margin-bottom: var(--spacing-unit);
}

.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment-list .comment {
    margin-bottom: var(--spacing-unit);
    padding-bottom: var(--spacing-unit);
    border-bottom: 1px solid var(--color-border);
}

.comment-list .children {
    list-style: none;
    margin-left: calc(var(--spacing-unit) * 2);
    padding: 0;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.comment-author .avatar {
    border-radius: 50%;
}

.comment-metadata {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.comment-content {
    margin-top: 0.5rem;
}

.reply {
    margin-top: 0.5rem;
}

/* Comment Form */
.comment-respond {
    margin-top: calc(var(--spacing-unit) * 2);
}

.comment-form label {
    display: block;
    margin-bottom: 0.25rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--color-border);
    font-family: inherit;
    font-size: 1rem;
}

.comment-form textarea {
    min-height: 150px;
    resize: vertical;
}

.comment-form .form-submit {
    margin-top: var(--spacing-unit);
}

/* ==========================================================================
   Widgets / Sidebar
   ========================================================================== */
.widget {
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.widget-title {
    margin-bottom: var(--spacing-unit);
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--color-primary);
    font-size: 1.125rem;
}

.widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget li {
    padding: 0.5rem 0;
    border-bottom: 0.5px solid var(--color-border);
}

.widget li:last-child {
    border-bottom: none;
}

/* Search Widget */
.search-form {
    display: flex;
}

.search-form .search-field {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid var(--color-border);
    border-right: none;
    font-size: 1rem;
}

.search-form .search-submit {
    padding: 0.5rem 1rem;
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #ffffff;
    cursor: pointer;
}

/* ==========================================================================
   Call to Action Section
   ========================================================================== */
.cta-section {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #F5C9CC 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M30 20 L30 40 M20 30 L40 30" stroke="rgba(255,255,255,0.05)" stroke-width="2" fill="none"/></svg>');
    opacity: 0.3;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cta-description {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 1.25rem 3rem;
    background-color: #ffffff;
    color: var(--color-primary);
    font-size: 1.125rem;
    font-weight: 600;
    border: 2px solid #ffffff;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background-color: transparent;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    text-decoration: none;
}

@media (max-width: 767px) {
    .cta-title {
        font-size: 1.75rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: linear-gradient(135deg, var(--color-text) 0%, #1e2d3d 100%);
    color: #ffffff;
    padding: calc(var(--spacing-unit) * 2) 0;
    margin-top: auto;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: calc(var(--spacing-unit) * 2);
    margin-bottom: var(--spacing-unit);
}

.footer-widgets .widget-title {
    color: #ffffff;
    border-bottom: none;
}

.footer-widgets li {
    border-bottom-color: rgba(255,255,255,0.15);
}

.footer-widgets a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-widgets a:hover {
    color: var(--color-secondary);
}

.site-info {
    text-align: left;
    padding-top: var(--spacing-unit);
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.site-info a {
    color: var(--color-secondary);
    transition: color 0.3s ease;
}

.site-info a:hover {
    color: #ffffff;
}

/* ==========================================================================
   Forms & Buttons
   ========================================================================== */
button,
input[type="button"],
input[type="submit"],
.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--color-primary);
    border: none;
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
.button:hover {
    background-color: var(--color-accent);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
textarea,
select {
    padding: 0.5rem;
    border: 1px solid var(--color-border);
    font-family: inherit;
    font-size: 1rem;
    width: 100%;
    max-width: 100%;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--color-primary);
}

/* ==========================================================================
   Contact Form
   ========================================================================== */
.basicpro-contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.basicpro-contact-form .form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.basicpro-contact-form .required {
    color: #dc3545;
}

.basicpro-contact-form .form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.3s ease;
}

.basicpro-contact-form .form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 164, 0.15);
}

.basicpro-contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.basicpro-contact-form .btn-primary {
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.basicpro-contact-form .btn-primary:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 164, 0.3);
}

.basicpro-contact-form .alert {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    border: 1px solid transparent;
}

.basicpro-contact-form .alert-success {
    color: #2d5a3d;
    background-color: #e8f5ed;
    border-color: var(--color-success);
}

.basicpro-contact-form .alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

.alignleft {
    float: left;
    margin-right: var(--spacing-unit);
    margin-bottom: var(--spacing-unit);
}

.alignright {
    float: right;
    margin-left: var(--spacing-unit);
    margin-bottom: var(--spacing-unit);
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--spacing-unit);
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* ==========================================================================
   WordPress Core Styles
   ========================================================================== */
.wp-caption {
    max-width: 100%;
    margin-bottom: var(--spacing-unit);
}

.wp-caption img {
    display: block;
    max-width: 100%;
    height: auto;
}

.wp-caption-text,
figcaption,
.gallery-caption {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-light);
    text-align: center;
    font-family: var(--font-caption);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: var(--spacing-unit);
    margin-bottom: var(--spacing-unit);
}

.gallery-item {
    margin: 0;
}

.gallery-item img {
    display: block;
    width: 100%;
    height: auto;
}

/* Block Editor Alignments */
.alignwide {
    max-width: calc(var(--container-width) + 100px);
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
}

/* ==========================================================================
   404 Page
   ========================================================================== */
.error-404 {
    text-align: center;
    padding: calc(var(--spacing-unit) * 4) 0;
}

.error-404 .page-title {
    font-size: 4rem;
    color: var(--color-primary);
}

/* ==========================================================================
   Healthcare Services Section
   ========================================================================== */
.services-section {
    padding: 80px 0;
    background-color: var(--color-background-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.services-grid-4col {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
    .services-grid-4col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid-4col {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--color-border);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(74, 144, 164, 0.2);
    border-color: var(--color-accent);
}

.service-icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-description {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-choose-section {
    padding: 80px 0;
    background-color: var(--color-background-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 2rem;
    color: var(--color-accent);
    flex-shrink: 0;
}

.feature-content h3 {
    color: var(--color-primary);
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.feature-content p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin: 0;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-info-section {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.contact-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--color-background-light);
    border-radius: var(--border-radius);
}

.contact-item-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.contact-item h3 {
    color: var(--color-primary);
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.contact-item a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--color-accent);
}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {
    *,
    *::before,
    *::after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]::after {
        content: " (" attr(href) ")";
    }

    .site-header,
    .main-navigation,
    .sidebar,
    .site-footer,
    .comments-area {
        display: none;
    }
}

/* ==========================================================================
   Home Services Highlight Section
   ========================================================================== */

.home-services-highlight {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-background) 0%, var(--color-background-light) 100%);
    position: relative;
    overflow: hidden;
}

.home-services-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 144, 164, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.home-services-highlight::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(45, 139, 139, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.highlight-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.highlight-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
    box-shadow: 0 12px 40px rgba(74, 144, 164, 0.25);
}

.highlight-card:hover::before {
    transform: scaleX(1);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(74, 144, 164, 0.25);
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(74, 144, 164, 0.35);
}

.highlight-icon i {
    font-size: 2.5rem;
    color: white;
}

.highlight-title {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.highlight-description {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.highlight-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

.btn-outline {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--color-primary);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: -1;
}

.btn-outline:hover {
    color: white;
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 144, 164, 0.35);
}

.btn-outline:hover::before {
    width: 300px;
    height: 300px;
}

/* Animation Keyframes */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Animation Classes */
.fade-in {
    animation: fade-in 0.8s ease-out forwards;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .services-highlight-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .section-title {
        font-size: 2rem;
    }

    .highlight-icon {
        width: 70px;
        height: 70px;
    }

    .highlight-icon i {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .home-services-highlight {
        padding: 60px 0;
    }

    .services-highlight-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title {
        font-size: 1.75rem;
    }

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

    .highlight-card {
        padding: 30px 20px;
    }

    .btn-outline {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}


/* ==========================================================================
   SANOOSHA HOME NURSING - HOMEPAGE STYLES
   Add this to your style.css or enqueue as separate file
   Version: 1.0.3
   ========================================================================== */

/* ==========================================================================
   Additional CSS Variables for Homepage
   ========================================================================== */
:root {
    --shadow-sm: 0 2px 8px rgba(44, 62, 80, 0.08);
    --shadow-md: 0 8px 30px rgba(44, 62, 80, 0.12);
    --shadow-lg: 0 20px 60px rgba(44, 62, 80, 0.15);
    --shadow-primary: 0 10px 40px rgba(74, 144, 164, 0.25);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font-display: 'Playfair Display', Georgia, serif;
}

/* ==========================================================================
   Section Badge & Headers
   ========================================================================== */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(74, 144, 164, 0.1) 0%, rgba(45, 139, 139, 0.1) 100%);
    border: 1px solid rgba(74, 144, 164, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-badge i {
    width: 16px;
    height: 16px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title span {
    color: var(--color-primary);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-background) 0%, #E8F4F5 50%, rgba(232, 180, 184, 0.1) 100%);
    overflow: hidden;
    padding: 80px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(74, 144, 164, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroFloat 20s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 180, 184, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroFloat 25s ease-in-out infinite reverse;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-40px) rotate(5deg); }
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--color-background-alt);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.hero-badge i {
    width: 18px;
    height: 18px;
    color: var(--color-success);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--color-text);
}

.hero-title .highlight {
    color: var(--color-primary);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(232, 180, 184, 0.4);
    z-index: -1;
    border-radius: 4px;
}

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

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

.stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

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

.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease 0.3s both;
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.hero-image-placeholder {
    width: 100%;
    height: 550px;
    background: linear-gradient(135deg, #e8f4f5 0%, #d4e8e9 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.hero-image-placeholder i {
    width: 120px;
    height: 120px;
    color: var(--color-primary);
    opacity: 0.3;
}

.hero-image-placeholder span {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--color-background-alt);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-md);
    animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-card-1 {
    top: 30px;
    left: -40px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-card-1 .icon-wrapper {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-success) 0%, #5a9e81 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card-1 .icon-wrapper i {
    width: 24px;
    height: 24px;
    color: white;
}

.floating-card-1 .card-text {
    font-weight: 600;
    color: var(--color-text);
}

.floating-card-1 .card-subtext {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.floating-card-2 {
    bottom: 60px;
    right: -30px;
    animation-delay: 1s;
}

.floating-card-2 .rating {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
}

.floating-card-2 .rating i {
    width: 18px;
    height: 18px;
    color: #F59E0B;
    fill: #F59E0B;
}

.floating-card-2 .card-text {
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.95rem;
}

.floating-card-2 .card-subtext {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

/* ==========================================================================
   Trust Bar
   ========================================================================== */
.trust-bar {
    background: var(--color-background-alt);
    padding: 40px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.trust-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.trust-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(74, 144, 164, 0.1) 0%, rgba(45, 139, 139, 0.1) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon i {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.trust-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 2px;
}

.trust-text p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin: 0;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-section {
    padding: 100px 0;
    background: var(--color-background-alt);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

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

.service-card {
    background: var(--color-background);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    background: var(--color-background-alt);
    border-color: rgba(74, 144, 164, 0.2);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(74, 144, 164, 0.25);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(74, 144, 164, 0.35);
}

.service-icon i {
    width: 36px;
    height: 36px;
    color: white;
}

.service-title-ml {
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 12px;
}

.service-description {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-choose-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-background) 0%, #E8F4F5 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 180, 184, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
}

.why-choose-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-choose-content {
    position: relative;
    z-index: 1;
}

.features-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--color-background-alt);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(74, 144, 164, 0.1) 0%, rgba(45, 139, 139, 0.15) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    width: 26px;
    height: 26px;
    color: var(--color-accent);
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 6px;
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

.why-choose-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #d4e8e9 0%, #c8dfe0 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.about-image-placeholder i {
    width: 100px;
    height: 100px;
    color: var(--color-primary);
    opacity: 0.3;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: white;
    padding: 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-primary);
}

.experience-badge .years {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.experience-badge .text {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 4px;
    display: block;
}

/* ==========================================================================
   Healthcare Services Grid
   ========================================================================== */
.healthcare-services-section {
    padding: 100px 0;
    background: var(--color-background-alt);
}

.healthcare-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.healthcare-card {
    background: var(--color-background);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--color-border);
}

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

.healthcare-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(74, 144, 164, 0.15) 0%, rgba(45, 139, 139, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.healthcare-card:hover .healthcare-card-icon {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

.healthcare-card-icon i {
    width: 28px;
    height: 28px;
    color: var(--color-primary);
    transition: color 0.3s ease;
}

.healthcare-card:hover .healthcare-card-icon i {
    color: white;
}

.healthcare-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.healthcare-card p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   CTA Section (Homepage)
   ========================================================================== */
.home-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    position: relative;
    overflow: hidden;
}

.home-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 10 L40 30 M30 20 L50 20' stroke='rgba(255,255,255,0.05)' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    pointer-events: none;
}

.home-cta-section::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.home-cta-section .cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.home-cta-section .cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.home-cta-section .cta-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   Contact Section (Homepage)
   ========================================================================== */
.home-contact-section {
    padding: 100px 0;
    background: var(--color-background);
}

.home-contact-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 24px;
    background: var(--color-background-alt);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon i {
    width: 28px;
    height: 28px;
    color: white;
}

.contact-card-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
}

.contact-card-content a {
    font-size: 1.1rem;
    color: var(--color-primary);
    font-weight: 600;
    display: block;
}

.contact-card-content a:hover {
    color: var(--color-accent);
}

.contact-card-content p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0;
}

.contact-form-wrapper {
    background: var(--color-background-alt);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    transition: all 0.3s ease;
    background: var(--color-background);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    background: var(--color-background-alt);
    box-shadow: 0 0 0 4px rgba(74, 144, 164, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn i {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: white;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(74, 144, 164, 0.35);
    color: white;
    text-decoration: none;
}

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

.btn-outline:hover {
    background: var(--color-primary);
    color: white;
    text-decoration: none;
}

.btn-white {
    background: white;
    color: var(--color-primary);
    font-weight: 600;
}

.btn-white:hover {
    background: var(--color-secondary);
    color: var(--color-text);
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    color: white;
    text-decoration: none;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   Animations
   ========================================================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .healthcare-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero-section {
        min-height: auto !important;
        height: auto !important;
        padding: 20px 0 40px !important;
        overflow: visible !important;
    }

    .hero-section::before,
    .hero-section::after {
        display: none !important;
    }

    .hero-section .container {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px;
        text-align: center;
    }

    .hero-content {
        order: 2 !important;
    }

    .hero-visual {
        order: 1 !important;
        width: 100% !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        position: relative !important;
    }

    .hero-cta {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image-wrapper {
        width: 100% !important;
        display: block !important;
        visibility: visible !important;
        overflow: hidden;
        border-radius: 16px;
    }

    .hero-image {
        height: 280px !important;
        width: 100% !important;
        object-fit: cover !important;
        object-position: top center !important;
        display: block !important;
        visibility: visible !important;
    }

    .hero-image-placeholder {
        height: 200px !important;
        display: flex !important;
    }

    .floating-card {
        display: none !important;
    }

    .trust-bar .container {
        flex-direction: column;
        gap: 20px;
    }

    .trust-item {
        width: 100%;
        justify-content: center;
    }

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

    .why-choose-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-choose-visual {
        order: -1;
        position: relative;
        margin-bottom: 40px;
    }

    .about-image-wrapper {
        position: relative;
    }

    .about-image,
    .about-image-placeholder {
        height: 300px;
        width: 100%;
        object-fit: cover;
    }

    .experience-badge {
        position: absolute;
        bottom: -25px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }

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

    .home-contact-section .container {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .section-title {
        font-size: 1.75rem;
    }

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

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 0;
        min-height: auto;
    }

    .services-section,
    .why-choose-section,
    .healthcare-services-section,
    .home-cta-section,
    .home-contact-section {
        padding: 60px 0;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}