/* Root Variables */
:root {
    --primary-color: #3b82f6;
    --primary-dark: #1e40af;
    --primary-light: #dbeafe;
    --secondary-color: #6b7280;
    --accent-color: #10b981;
    --accent-light: #d1fae5;
    --text-dark: #111827;
    --text-medium: #374151;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --background-primary: #ffffff;
    --background-secondary: #f9fafb;
    --background-accent: #f3f4f6;
    --border-color: #e5e7eb;
    --border-light: #f3f4f6;
    --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --transition-fast: all 0.15s ease;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-sm: 0.375rem;
    --border-radius: 0.75rem;
    --border-radius-lg: 1.5rem;
    --border-radius-xl: 2rem;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-primary);
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: -0.01em;
}

html {
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* White hero titles for secondary pages to match contact icon color */
.hero-title.white-title {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: white !important;
    background-clip: unset !important;
    color: white !important;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Custom Button Styles */
.btn {
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.btn-outline-secondary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    backdrop-filter: blur(10px);
}

.btn-outline-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    border-radius: var(--border-radius-xl);
}

/* Navigation Styles */
.navbar {
    background: #ffffff !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    padding: 0.5rem 0;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    min-height: 100px;
    z-index: 999;
    position: fixed;
    top: 0;
    width: 100%;
}

.navbar.scrolled {
    background: #ffffff !important;
    box-shadow: var(--shadow-md) !important;
}

/* Ensure navbar consistency across all pages */
body .navbar {
    background: #ffffff !important;
}

body .navbar.scrolled {
    background: #ffffff !important;
}



.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--text-dark);
    text-decoration: none;
    padding: 0;
    height: 95px;
    gap: 1rem;
    transition: var(--transition);
}

.navbar-brand:hover {
    color: var(--text-dark);
    text-decoration: none;
}

.brand-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-nav {
    max-height: 90px;
    max-width: 1050px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: brightness(1) contrast(1.1);
}

.navbar-brand:hover .logo-nav {
    filter: brightness(1.05) contrast(1.15);
    transform: scale(1.02);
}

.brand-text {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
    margin-top: -0.25rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    margin-left: 1rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--background-primary) 0%, var(--background-secondary) 50%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
    min-height: 75vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
}

/* Hero Background for other pages */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.8) 0%, rgba(59, 130, 246, 0.7) 50%, rgba(37, 99, 235, 0.8) 100%);
    z-index: 2;
}

/* Enhanced hero content positioning for pages with background images */
.hero-section .container {
    position: relative;
    z-index: 3;
}

/* Reduce hero section height on desktop for non-home pages */
@media (min-width: 992px) {
    .hero-section:not(#hero) {
        min-height: 60vh !important;
        padding: 8rem 0 4rem !important;
    }
    
    .hero-section:not(#hero) .row {
        min-height: auto !important;
        align-items: center !important;
    }
}

/* Reduce height on mobile devices */
@media (max-width: 991.98px) {
    .hero-section:not(#hero) {
        min-height: 50vh;
        padding: 4rem 0 2rem;
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, var(--primary-light) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, var(--accent-light) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, var(--primary-light) 0%, transparent 50%);
    opacity: 0.3;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233b82f6' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1001;
    padding-top: 1rem;
}

/* Desktop - Move hero title closer to navbar */
@media (min-width: 992px) {
    .hero-section {
        padding-top: 80px;
    }
    
    .hero-content {
        padding-top: 0;
    }
}

/* Mobile - Add more space from navbar */
@media (max-width: 767.98px) {
    .navbar {
        min-height: 60px;
        padding: 0.25rem 0;
    }
    
    .navbar-brand {
        height: 55px;
    }
    
    .logo-nav {
        max-height: 90px;
        max-width: 1050px;
    }
    
    .hero-section {
        padding-top: 200px;
    }
    
    .hero-content {
        padding-top: 2rem;
    }
}

/* Extra mobile spacing for larger phones like iPhone 16 Pro Max */
@media (max-width: 430px) {
    .hero-section {
        padding-top: 350px;
    }
}

/* Specific fix for iPhone 16 Pro Max and similar large phones */
@media (max-width: 414px) and (min-height: 800px) {
    .hero-section {
        padding-top: 380px;
        min-height: auto !important;
    }
    
    .hero-content {
        padding-top: 3rem;
    }
}

/* Override Bootstrap min-vh-100 that may cause mobile spacing issues */
@media (max-width: 767.98px) {
    .hero-section.min-vh-100 {
        min-height: auto !important;
    }
}

/* iPhone 16 Pro Max specific fix (430x932 viewport) */
@media screen and (max-width: 430px) and (max-height: 932px) {
    .hero-section {
        padding-top: 250px !important;
    }
    
    .hero-content {
        padding-top: 0 !important;
    }
    
    .navbar {
        min-height: 50px !important;
        padding: 0.15rem 0 !important;
    }
    
    .navbar-brand {
        height: 45px !important;
    }
    
    .logo-nav {
        max-height: 85px !important;
        max-width: 1050px !important;
    }
    
    .hero-section .row.min-vh-100 {
        min-height: auto !important;
    }
}

.hero-title {
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Mobile hero title optimization */
@media (max-width: 767.98px) {
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Hero buttons layout - single line on desktop, 2x2 on mobile */
@media (min-width: 768px) {
    .hero-buttons {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: center;
        gap: 0.75rem !important;
    }
    
    .hero-buttons .btn {
        flex: 0 0 auto;
        white-space: nowrap;
        padding: 0.875rem 1.5rem !important;
        font-size: 1rem !important;
    }
}

@media (max-width: 767.98px) {
    .hero-buttons {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 1rem !important;
        max-width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 1rem 0.75rem;
        font-size: 0.95rem;
    }
}

.hero-stats {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.hero-image {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero-image-card {
    background: white;
    padding: 1rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    transition: all 0.4s ease;
    cursor: pointer;
    animation: fadeInUp 1s ease-out 0.8s both;
    overflow: hidden;
    position: relative;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    display: block;
    transition: all 0.3s ease;
    image-rendering: high-quality;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero-image-card:hover .hero-image img {
    transform: scale(1.02);
}

/* Prevent hover effects on slideshow images */
.hero-image-card:hover .slide img {
    transform: none !important;
}

/* Hero Slideshow Container */
.hero-slideshow-container {
    position: relative;
    width: 100%;
    background: white;
    padding: 1rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    animation: fadeInUp 1s ease-out 0.8s both;
    transition: all 0.4s ease;
}

.hero-slideshow-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Hero Slideshow Styles */
.hero-slideshow {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    animation: fadeInUp 1s ease-out 0.8s both;
    transition: all 0.4s ease;
    overflow: hidden;
    background: #f8f9fa;
}

.hero-slideshow:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.slide:first-child,
.slide.active {
    opacity: 1;
    z-index: 2;
    position: relative;
}

.slide:not(.active) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-lg);
    image-rendering: auto;
}

.slideshow-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

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

.hero-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    text-align: center;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hero-card h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.hero-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Section Styles */
.section-title {
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    position: relative;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 640px;
    margin: 0 auto var(--spacing-xl);
    text-align: center;
    line-height: 1.8;
}

/* About Section */
.about-section {
    background: var(--background-primary);
    padding: var(--spacing-lg) 0;
}

/* Reduce top padding specifically on desktop for better spacing after hero */
@media (min-width: 992px) {
    .about-section {
        padding: var(--spacing-md) 0 var(--spacing-xl) 0;
    }
}

.about-content {
    padding: var(--spacing-lg) 0;
}

.about-description {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
    font-weight: 500;
    padding: var(--spacing-sm);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--background-secondary);
    transform: translateX(8px);
}

.feature-item i {
    margin-right: var(--spacing-md) !important;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: var(--spacing-lg);
}

.care-features-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1.5rem;
    max-width: 100%;
    box-sizing: border-box;
}

.feature-highlight {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.feature-highlight h5 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-highlight p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Services Section */
.services-section {
    background: var(--background-secondary);
    padding: var(--spacing-xl) 0;
}

.service-card {
    background: var(--background-primary);
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

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

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-light);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--border-radius-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: var(--transition-slow);
}

.service-card:hover .service-icon::before {
    transform: translateX(100%);
}

.service-icon i {
    font-size: 1.75rem;
    color: white;
    z-index: 1;
}

.service-title {
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    font-size: 1.25rem;
    font-weight: 700;
}

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

.service-details {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.service-details li {
    padding: 0.25rem 0;
    color: var(--text-muted);
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.9rem;
}

.service-details li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

/* Contact Section */
.contact-section {
    background: var(--background-primary);
    padding: var(--spacing-xl) 0;
}

.contact-form-wrapper {
    background: var(--background-primary);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.form-control, .form-select {
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 1rem 1.25rem;
    transition: var(--transition);
    font-size: 1rem;
    background: var(--background-secondary);
    position: relative;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    outline: none;
    background: var(--background-primary);
    transform: translateY(-2px);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.05), transparent);
    transition: all 0.6s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, white 0%, rgba(37, 99, 235, 0.02) 100%);
}

.contact-info-card:hover::before {
    left: 100%;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.3);
}

.contact-info-card:hover h5 {
    color: var(--primary-color);
}

.contact-info-card:hover p a {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-info-card h5 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

/* Footer */
.footer-section {
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--text-medium) 100%);
    color: white;
    padding: var(--spacing-lg) 0 var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #94a3b8;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer-contact p i {
    margin-right: 0.5rem !important;
    flex-shrink: 0;
    font-size: 0.9rem;
}

@media (min-width: 992px) {
    .footer-contact {
        max-width: 280px;
    }
    .footer-contact p {
        font-size: 0.85rem;
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
    }
}

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

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.footer-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-brand-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.footer-tagline {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success-color);
    margin-top: -0.25rem;
}

.footer-brand .brand-text {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.footer-description {
    color: #94a3b8;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 1.5rem 0 0.5rem;
}

.footer-bottom {
    padding-top: 0.5rem;
}

.footer-copyright, .footer-signature {
    color: #94a3b8;
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-content {
        text-align: center;
        padding-top: var(--spacing-lg);
        margin-bottom: var(--spacing-md);
    }
    
    .hero-buttons {
        justify-content: center;
        margin-bottom: var(--spacing-xs);
    }
    
    .hero-buttons .btn {
        width: auto;
        min-width: 200px;
    }
    
    .contact-form-wrapper {
        padding: var(--spacing-lg);
        margin: var(--spacing-md);
    }
    
    .service-card {
        margin-bottom: var(--spacing-lg);
    }
    
    .care-features-visual {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: var(--spacing-md);
        padding: var(--spacing-md);
    }
}

/* Medium screens - maintain 2x2 grid */
@media (max-width: 991.98px) and (min-width: 768px) {
    .care-features-visual {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: var(--spacing-md);
        padding: var(--spacing-md);
    }
    
    .feature-highlight {
        padding: var(--spacing-md);
        text-align: center;
    }
    
    .feature-highlight h5 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-highlight p {
        font-size: 0.85rem;
    }
}

@media (max-width: 767.98px) {
    .navbar {
        padding: var(--spacing-sm) 0;
    }
    
    .service-card {
        padding: var(--spacing-lg) var(--spacing-md);
        margin-bottom: var(--spacing-md);
    }
    
    .contact-form-wrapper {
        padding: var(--spacing-md);
        margin: var(--spacing-sm);
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: var(--spacing-xs);
        width: 100%;
    }
    
    .section-title::after {
        width: 60px;
        height: 3px;
    }
    
    .feature-highlight {
        padding: var(--spacing-md);
    }
    
    .hero-image img {
        border-radius: var(--border-radius);
    }
}

@media (max-width: 575.98px) {
    .btn-lg {
        padding: 1rem 1.75rem;
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 2.0rem;
        line-height: 1.15;
        margin-bottom: 1rem;
        word-wrap: break-word;
    }
    
    .hero-content {
        padding-top: var(--spacing-xs);
        padding-left: var(--spacing-sm);
        padding-right: var(--spacing-sm);
        margin-bottom: 0;
    }
    
    .hero-section {
        padding-top: 70px;
        min-height: 80vh;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
        margin-bottom: 0;
    }
    
    /* Reduce gap between hero content and image on mobile */
    .hero-section .row {
        min-height: auto !important;
        gap: var(--spacing-sm);
    }
    
    .hero-section .col-lg-6 {
        margin-bottom: var(--spacing-sm);
    }
    
    .hero-section .col-lg-6:last-child {
        margin-bottom: 0;
    }
    
    /* Mobile slideshow adjustments */
    .hero-slideshow {
        height: 280px;
        position: relative;
        overflow: hidden;
    }
    
    .slide {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        opacity: 0 !important;
        z-index: 1 !important;
    }
    
    .slide.active {
        opacity: 1 !important;
        z-index: 2 !important;
    }
    
    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .slideshow-dots {
        bottom: 15px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .care-features-visual {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: var(--spacing-sm);
        padding: var(--spacing-sm);
    }
    
    .feature-highlight {
        padding: var(--spacing-sm);
        text-align: center;
    }
    
    .feature-highlight h5 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .feature-highlight p {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .feature-highlight i {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .feature-highlight {
        padding: var(--spacing-sm);
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: var(--spacing-md);
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
}

/* Standard mobile phones */
@media (max-width: 480px) and (min-width: 431px) {
    .care-features-visual {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: var(--spacing-sm);
        padding: var(--spacing-sm);
    }
    
    .feature-highlight {
        padding: var(--spacing-sm);
        text-align: center;
    }
    
    .feature-highlight h5 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .feature-highlight p {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    .feature-highlight i {
        font-size: 1.4rem !important;
        margin-bottom: 0.4rem !important;
    }
}

/* Extra small screens (iPhone 16 at 100% zoom) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
    }
    
    .hero-section {
        padding-top: 85px;
        min-height: auto;
        padding-bottom: var(--spacing-sm);
    }
    
    .hero-content {
        padding: var(--spacing-sm);
        margin-bottom: 0;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
    }
    
    .hero-buttons {
        margin-bottom: 0;
        margin-top: 0.5rem;
    }
}

/* iPhone 16 Pro Max and similar large phones */
@media (max-width: 430px) {
    .hero-buttons {
        margin-bottom: 0;
        margin-top: 0.3rem;
    }
    
    .hero-description {
        margin-bottom: 0.6rem;
    }
    
    /* Ensure 2x2 grid for About feature cards on mobile phones */
    .care-features-visual {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: var(--spacing-sm);
        padding: var(--spacing-sm);
    }
    
    .feature-highlight {
        padding: var(--spacing-sm);
        text-align: center;
    }
    
    .feature-highlight h5 {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }
    
    .feature-highlight p {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .feature-highlight i {
        font-size: 1.3rem !important;
        margin-bottom: 0.4rem !important;
    }
}

/* Very small screens with zoom (iPhone 16 at 85% zoom) */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.4rem;
        line-height: 1.05;
        margin-bottom: 0.6rem;
        word-break: break-word;
        overflow-wrap: anywhere;
    }
    
    .hero-section {
        padding-top: 85px;
        padding-bottom: var(--spacing-sm);
    }
    
    .hero-content {
        padding: var(--spacing-xs);
        margin-bottom: 0;
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    .hero-buttons .btn {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
        min-width: 160px;
    }
    
    .hero-buttons {
        margin-bottom: 0;
        margin-top: 0;
    }
}

/* Ultra small screens with high zoom (iPhone 16 at 85% zoom and smaller) */
@media (max-width: 350px) {
    .navbar {
        height: 75px;
    }
    
    .care-features-visual {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 0.5rem;
        padding: 0.5rem;
    }
    
    .feature-highlight {
        padding: 0.5rem;
        text-align: center;
    }
    
    .feature-highlight h5 {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
    }
    
    .feature-highlight p {
        font-size: 0.7rem;
        line-height: 1.1;
    }
    
    .feature-highlight i {
        font-size: 1.2rem !important;
        margin-bottom: 0.3rem !important;
    }
    
    .hero-title {
        font-size: 1.2rem;
        line-height: 1.0;
        margin-bottom: 0.5rem;
        word-break: break-word;
        overflow-wrap: anywhere;
        max-width: 100%;
    }
    
    .hero-section {
        padding-top: 75px;
        padding-bottom: var(--spacing-xs);
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 0.5rem;
        margin-top: 0;
        margin-bottom: 0;
    }
    
    .hero-description {
        font-size: 0.85rem;
        line-height: 1.25;
        margin-bottom: 0.6rem;
    }
    
    .hero-buttons {
        margin-top: 0.3rem;
        margin-bottom: 0;
        gap: 0.5rem;
    }
    
    .hero-buttons .btn {
        font-size: 0.85rem;
        padding: 0.7rem 1.2rem;
        min-width: 140px;
    }
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-custom {
    box-shadow: var(--shadow-xl);
}

.border-custom {
    border: 1px solid var(--border-color);
}

/* Loading Animation for Form */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Why Choose Us Section */
.why-choose-section {
    background: var(--surface-color);
}

.why-choose-card {
    display: flex;
    align-items: flex-start;
    padding: var(--spacing-lg);
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: all 0.3s ease;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.why-choose-icon {
    min-width: 60px;
    margin-right: var(--spacing-md);
}

.why-choose-icon i {
    font-size: 2.5rem;
}

.why-choose-content h4 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    font-weight: 600;
}

.why-choose-content p {
    color: var(--text-muted);
    margin: 0;
}

/* Service Areas Section */
.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.service-area-item {
    display: flex;
    align-items: center;
    padding: var(--spacing-md);
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
}

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

.service-area-item i {
    margin-right: var(--spacing-sm);
    font-size: 1.2rem;
}

.service-area-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--surface-color);
}

.testimonial-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: all 0.3s ease;
}

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

.testimonial-stars {
    margin-bottom: var(--spacing-md);
}

.testimonial-stars i {
    color: var(--accent-color);
    margin-right: 2px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: var(--spacing-md);
    color: var(--text-muted);
    line-height: 1.6;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 4px;
}

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

/* Careers Section */
.career-benefits,
.career-positions {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    height: 100%;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.benefit-item i {
    font-size: 1.1rem;
}

.position-item {
    padding: var(--spacing-md);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-md);
    transition: all 0.3s ease;
}

.position-item:hover {
    border-color: var(--primary-color);
    background: rgba(37, 99, 235, 0.02);
}

.position-item h5 {
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.position-item p {
    margin-bottom: var(--spacing-xs);
    color: var(--text-muted);
}

.position-type {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-color);
    color: white;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    background: var(--surface-color);
}

.accordion-item {
    border: none;
    margin-bottom: var(--spacing-sm);
    border-radius: var(--border-radius-lg) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    background: white;
    border: none;
    padding: var(--spacing-md) var(--spacing-lg);
    font-weight: 600;
    color: var(--text-dark);
    border-radius: var(--border-radius-lg) !important;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.25);
    border-color: var(--primary-color);
}

.accordion-body {
    background: white;
    padding: var(--spacing-md) var(--spacing-lg);
    color: var(--text-muted);
    line-height: 1.6;
}

/* Update Navigation to Include New Sections */
@media (min-width: 992px) {
    .navbar-nav .nav-item:not(:last-child) {
        margin-right: var(--spacing-md);
    }
}

/* Mobile Improvements for New Sections */
@media (max-width: 991.98px) {
    .why-choose-card,
    .testimonial-card,
    .career-benefits,
    .career-positions {
        margin-bottom: var(--spacing-md);
    }
    
    .service-areas-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-icon {
        min-width: 50px;
        margin-right: var(--spacing-sm);
    }
    
    .why-choose-icon i {
        font-size: 2rem;
    }
}

@media (max-width: 575.98px) {
    .why-choose-card {
        flex-direction: column;
        text-align: center;
    }
    
    .why-choose-icon {
        margin-right: 0;
        margin-bottom: var(--spacing-sm);
    }
    
    .service-area-item {
        justify-content: center;
        white-space: normal;
        text-align: center;
    }
}

/* Mission Section */
.mission-section {
    background: var(--background-secondary);
    padding: var(--spacing-xl) 0;
}

.mission-statement {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #6b7280;
    text-align: center;
    margin-bottom: var(--spacing-xl);
    font-weight: 500;
}

.mission-value-card {
    background: var(--background-primary);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mission-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

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

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

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.mission-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: var(--transition-slow);
}

.mission-value-card:hover .mission-icon::before {
    transform: translateX(100%);
}

.mission-icon i {
    font-size: 2rem;
    z-index: 1;
}

.mission-value-card h4 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.mission-value-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

.mission-commitment h3 {
    color: var(--text-dark);
    font-weight: 700;
}

.commitment-item {
    padding: var(--spacing-lg) var(--spacing-md);
    background: var(--background-primary);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    height: 100%;
}

.commitment-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.commitment-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.commitment-icon i {
    font-size: 1.5rem;
    color: white;
}

.commitment-item h5 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

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

/* Mobile Improvements for Mission Section */
@media (max-width: 767.98px) {
    .mission-statement {
        font-size: 1.125rem;
    }
    
    .mission-value-card,
    .commitment-item {
        margin-bottom: var(--spacing-md);
    }
    
    .mission-icon {
        width: 60px;
        height: 60px;
    }
    
    .mission-icon i {
        font-size: 1.5rem;
    }
    
    /* Commitment items 2x2 layout on mobile */
    .commitment-item {
        padding: var(--spacing-md) var(--spacing-sm);
    }
    
    .commitment-icon {
        width: 50px;
        height: 50px;
        margin-bottom: var(--spacing-sm);
    }
    
    .commitment-icon i {
        font-size: 1.2rem;
    }
    
    .commitment-item h5 {
        font-size: 0.9rem;
        margin-bottom: var(--spacing-xs);
    }
    
    .commitment-item p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

/* Small mobile screens - extra compact commitment items */
@media (max-width: 575.98px) {
    .commitment-item {
        padding: var(--spacing-sm) var(--spacing-xs);
    }
    
    .commitment-icon {
        width: 45px;
        height: 45px;
        margin-bottom: var(--spacing-xs);
    }
    
    .commitment-icon i {
        font-size: 1.1rem;
    }
    
    .commitment-item h5 {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }
    
    .commitment-item p {
        font-size: 0.75rem;
        line-height: 1.3;
    }
}

/* Ultra small screens - minimal commitment items */
@media (max-width: 350px) {
    .commitment-item {
        padding: 0.5rem 0.3rem;
    }
    
    .commitment-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.3rem;
    }
    
    .commitment-icon i {
        font-size: 1rem;
    }
    
    .commitment-item h5 {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
    }
    
    .commitment-item p {
        font-size: 0.7rem;
        line-height: 1.2;
    }
}

/* Page Header for separate pages */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2563eb 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="20" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="60" cy="15" r="1" fill="rgba(255,255,255,0.12)"/><circle cx="80" cy="25" r="1.2" fill="rgba(255,255,255,0.06)"/><circle cx="20" cy="40" r="1" fill="rgba(255,255,255,0.09)"/><circle cx="70" cy="35" r="1.3" fill="rgba(255,255,255,0.11)"/><circle cx="40" cy="50" r="1" fill="rgba(255,255,255,0.07)"/><circle cx="90" cy="45" r="1.1" fill="rgba(255,255,255,0.1)"/><circle cx="15" cy="70" r="1" fill="rgba(255,255,255,0.08)"/><circle cx="50" cy="75" r="1.4" fill="rgba(255,255,255,0.12)"/><circle cx="75" cy="65" r="1" fill="rgba(255,255,255,0.09)"/><circle cx="35" cy="80" r="1.2" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

/* Additional styles for new pages */
.section-padding {
    padding: 5rem 0;
    background: var(--background-primary);
}

/* Contact Form Styles */
.contact-form-section {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.25);
}

/* Value Cards for Mission Page */
.value-card {
    background: var(--background-primary);
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--border-light);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.value-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--border-radius-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto var(--spacing-lg);
}

.value-icon i {
    font-size: 1.75rem;
    color: white;
}

.value-card h4 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    font-size: 1.25rem;
    font-weight: 700;
}

.value-card p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.7;
}

/* Service Areas Styling */
.service-areas-section {
    background: var(--background-secondary);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-xl);
    margin-top: var(--spacing-xl);
}

.area-card {
    background: var(--background-primary);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

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

.area-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.area-card h5 {
    color: var(--text-dark);
    margin-bottom: 0;
    font-weight: 600;
}

/* Commitment Items */
.commitment-item {
    background: var(--background-primary);
    text-align: center;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.commitment-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.commitment-item:hover::before {
    transform: scaleX(1);
}

.commitment-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.commitment-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.commitment-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: var(--transition-slow);
}

.commitment-item:hover .commitment-icon::before {
    transform: translateX(100%);
}

.commitment-icon i {
    font-size: 2rem;
    color: white;
    z-index: 1;
}

.commitment-item h5 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    font-size: 1.25rem;
}

.commitment-item p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.7;
    font-size: 1rem;
}

/* FAQ Section */
.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg) !important;
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
}

.accordion-button {
    background: var(--background-primary);
    color: var(--text-dark);
    border: none;
    font-weight: 600;
    padding: 1.25rem var(--spacing-lg);
}

.accordion-button:not(.collapsed) {
    background: var(--primary-light);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.25);
    border-color: var(--primary-color);
}

.accordion-body {
    background: var(--background-primary);
    color: var(--text-light);
    padding: var(--spacing-lg);
    line-height: 1.7;
}

/* Responsive adjustments for new pages */
@media (max-width: 767.98px) {
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-form-section {
        padding: 2rem 1.5rem;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .value-card,
    .area-card {
        margin-bottom: var(--spacing-lg);
    }
}
