/* 
   Supreme Home Health Services - Main Styles
   Design: Premium, Modern, Clean Medical
   Colors: White, Deep Navy, Sky Blue, Teutonic Teal
*/

:root {
    /* Color Palette - REFINED */
    --primary-color: #0d47a1;
    /* Deeper, more premium Navy */
    --primary-light: #1565c0;
    --secondary-color: #039be5;
    /* VIVID Sky Blue */
    --accent-color: #00bfa5;
    /* Teal Accent */
    --text-color: #263238;
    /* Blue-grey dark */
    --text-light: #546e7a;
    --bg-light: #f4f7f6;
    --white: #ffffff;
    --success: #2e7d32;
    --error: #c62828;

    /* Shadows - LIGHTER & SOFTER */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 40px rgba(13, 71, 161, 0.1);
    /* Tinted shadow */
    --shadow-glow: 0 0 20px rgba(3, 155, 229, 0.4);

    /* Typography */
    --font-heading: 'Merriweather', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2.5rem;
    --spacing-lg: 5rem;
    --spacing-xl: 8rem;

    /* Transitions - FASTER & LIGHTER */
    --transition-speed: 0.2s;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 30px;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.8;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    line-height: 1.25;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-speed) ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons - LIGHTER FEEL */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    /* Reduced padding slightly for 'lightness' */
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    /* Faster transition */
    border: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
    gap: 0.6rem;
    text-transform: none;
    /* Removed uppercase for friendlier feel */
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(13, 71, 161, 0.2);
    /* Softer shadow */
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-light));
    z-index: -1;
    transition: opacity 0.4s;
    opacity: 0;
}

.btn-primary:active {
    transform: translateY(1px);
    /* Click feedback */
    box-shadow: 0 2px 8px rgba(13, 71, 161, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 71, 161, 0.3);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid rgba(13, 71, 161, 0.15);
    box-shadow: none;
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    background-color: rgba(13, 71, 161, 0.05);
    transform: translateY(-2px);
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Header Styles */
.site-header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: padding 0.3s;
}

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

.logo {
    display: flex;
    align-items: center;
    line-height: 1;
}

.logo-img {
    height: 52px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-fallback {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.logo-sub {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.main-nav a {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}

.main-nav a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background: var(--secondary-color);
    transition: width var(--transition-speed);
    border-radius: 2px;
}

.main-nav a:not(.btn):hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
}

.header-cta {
    margin-left: 2rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.bar {
    display: block;
    width: 28px;
    height: 3px;
    margin: 6px auto;
    background-color: var(--primary-color);
    transition: all 0.3s;
    border-radius: 10px;
}

/* Footer Styles - REDESIGNED */
.site-footer {
    background: linear-gradient(180deg, #1a2634 0%, #0f1922 100%);
    color: #c5d0dc;
    padding: 0 0 2rem;
    margin-top: var(--spacing-xl);
}

.footer-top {
    text-align: center;
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 3rem;
}

.footer-logo {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 1rem;
}

.footer-logo .logo-text {
    font-size: 2.2rem;
    color: var(--white);
    background: none;
    -webkit-text-fill-color: var(--white);
}

.footer-logo .logo-sub {
    color: var(--secondary-color);
    font-size: 0.8rem;
}

.footer-tagline {
    color: #8899a6;
    font-size: 1.05rem;
    max-width: 400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    font-weight: 700;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #8899a6;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: #8899a6;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-col ul li a i {
    font-size: 0.6rem;
    color: var(--secondary-color);
    transition: transform 0.2s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-col ul li a:hover i {
    transform: translateX(3px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.footer-contact li i {
    color: var(--secondary-color);
    margin-top: 3px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.footer-contact li a,
.footer-contact li span {
    color: #8899a6;
    font-size: 0.95rem;
}

.footer-contact li a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8899a6;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #5c6f7e;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #5c6f7e;
    font-size: 0.85rem;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* Section Common */
section {
    padding: var(--spacing-xl) 0;
}

/* Responsive Footer */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--white);
        padding: 5rem 2rem 2rem;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .main-nav li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .main-nav a {
        display: block;
        padding: 1.2rem 0;
        font-size: 1.1rem;
    }

    .header-cta {
        display: none;
    }

    .nav-cta {
        margin-left: 0;
        width: 100%;
    }
}

/* Home Page Specific Styles */
/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(rgba(13, 71, 161, 0.7), rgba(0, 0, 0, 0.6)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 90vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 86, 179, 0.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 3rem;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
}

/* Intro Section */
.intro-section .row {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.intro-text {
    flex: 1;
}

.intro-text .lead,
.about-text .lead {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
    display: block;
}

.intro-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.intro-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.read-more {
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    gap: 0.5rem;
    border-bottom: 2px solid transparent;
}

.read-more:hover {
    gap: 0.8rem;
    border-bottom-color: var(--secondary-color);
}

.intro-image {
    flex: 1;
    position: relative;
}

.intro-image img {
    border-radius: 20px;
    box-shadow: -15px 15px 0 rgba(3, 155, 229, 0.08);
}

/* Services Overview */
.bg-light {
    background-color: var(--bg-light);
}

.section-header {
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

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

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

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}

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

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

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(3, 155, 229, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    transition: all 0.2s ease;
}

.service-card:hover .icon-box {
    background: var(--primary-color);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.link-arrow {
    margin-top: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.link-arrow:hover {
    gap: 0.8rem;
}

/* Why Choose Us - REFINED */
.why-choose-us {
    background-color: var(--white);
    position: relative;
}

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

.feature-item {
    text-align: left;
    /* Changed from center for a more list-like accessible feel, or keep center but improve cards */
    padding: 2.5rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: rgba(3, 155, 229, 0.3);
}

.feature-item .icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 0 0 1.5rem 0;
    /* Align left */
    border-radius: 16px;
    /* Rounded square instead of circle */
}

.feature-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.feature-item p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* Testimonials Slider */
.testimonial-slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    padding: 2rem 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
}

.testimonial-card::before {
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 3rem;
    color: rgba(0, 86, 179, 0.05);
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-card .quote {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-style: italic;
    position: relative;
    z-index: 1;
    line-height: 1.8;
    margin-top: 1rem;
}

.testimonial-card cite {
    display: block;
    font-weight: 700;
    color: var(--primary-color);
    font-style: normal;
    font-size: 1.1rem;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.prev-btn,
.next-btn {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--primary-color);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
}

.prev-btn:hover,
.next-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    text-align: center;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

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

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    font-size: 3rem;
}

.cta-section p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-radius: 50px;
}

.btn-white:hover {
    background-color: var(--bg-light);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    color: var(--primary-dark);
}

/* Utility Helpers */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .intro-section .row {
        flex-direction: column;
        gap: 2rem;
    }

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

/* Inner Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 8rem 0 6rem;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    margin-bottom: 3rem;
    position: relative;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Page Styles */
.about-content .row {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

/* Mission Vision Values */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mv-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--primary-color);
    text-align: center;
    transition: all 0.2s ease;
}

.mv-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.mv-card .icon-box {
    margin: 0 auto 1.5rem;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

.mv-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.mv-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Stats Section */
.about-stats {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Trust Section */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.trust-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.trust-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    background: rgba(3, 155, 229, 0.1);
    width: 55px;
    height: 55px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-item h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.trust-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Care Philosophy */
.care-philosophy {
    padding: 6rem 0;
}

.care-philosophy h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.care-philosophy p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Services Page Styles */
.service-item {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2rem;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
}

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

.service-item:last-child {
    margin-bottom: 0;
}

.service-icon {
    flex: 0 0 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(3, 155, 229, 0.15), rgba(13, 71, 161, 0.1));
    color: var(--primary-color);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.service-details p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-details ul {
    list-style: none;
    margin-left: 0;
    color: var(--text-light);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1.5rem;
}

.service-details li {
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.service-details li i {
    color: var(--success);
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Responsive - About & Services */
@media (max-width: 900px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .about-content .row {
        flex-direction: column;
    }

    .service-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .service-icon {
        margin: 0 auto;
    }

    .service-details ul {
        grid-template-columns: 1fr;
        text-align: left;
    }

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

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

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header {
        padding: 6rem 0 4rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2,
.form-card h2 {
    margin-bottom: 1.5rem;
}

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

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background-color: rgba(79, 172, 254, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.map-container {
    margin-top: 2rem;
    background-color: #eee;
    height: 300px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.form-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition-speed);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.btn-block {
    display: block;
    width: 100%;
}

.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}