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

:root {
    --primary-dark: #1a365d;
    --primary-light: #2d3748;
    --secondary-gold: #d4af37;
    --accent-cream: #f7fafc;
    --text-dark: #2d3748;
    --text-light: #4a5568;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(26, 54, 93, 0.05) 0%, transparent 50%);
    z-index: -1;
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid var(--secondary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

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

/* Language Navigation */
.language-navigation {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

/* RTL Language Support */
html[dir="rtl"] .language-navigation {
    right: auto;
    left: 20px;
}

/* RTL Language Support */
html[dir="rtl"] .language-navigation {
    right: auto;
    left: 20px;
}

html[dir="rtl"] .language-menu {
    right: auto;
    left: 0;
}

html[dir="rtl"] .language-dropdown span::after {
    content: '▼';
}

html[dir="rtl"] .container {
    direction: rtl;
}

html[dir="rtl"] .navbar {
    direction: rtl;
}

html[dir="rtl"] .nav-menu {
    direction: rtl;
}

html[dir="rtl"] .hero-content {
    direction: rtl;
}

html[dir="rtl"] .services-grid {
    direction: rtl;
}

html[dir="rtl"] .elderly-content,
html[dir="rtl"] .safe-content {
    direction: rtl;
}

html[dir="rtl"] .elderly-feature-item,
html[dir="rtl"] .feature-item {
    direction: rtl;
}

html[dir="rtl"] .elderly-feature-icon,
html[dir="rtl"] .feature-icon {
    margin-right: 0;
    margin-left: 15px;
}

html[dir="rtl"] .elderly-stats,
html[dir="rtl"] .stats-grid {
    direction: rtl;
}

html[dir="rtl"] .about-content {
    direction: rtl;
}

html[dir="rtl"] .contact-content {
    direction: rtl;
}

html[dir="rtl"] .footer {
    direction: rtl;
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-dropdown span {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.language-dropdown span:hover {
    background: rgba(255, 255, 255, 0.2);
}

.language-dropdown span::after {
    content: '▼';
    font-size: 10px;
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--primary-dark);
    border-radius: 10px;
    padding: 10px 0;
    min-width: 200px;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
}

.language-dropdown:hover .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.language-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Language Switcher (old) - Hide */
.language-switcher {
    display: none;
}

/* Navigation */
.navbar {
    background: rgba(26, 54, 93, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

/* Responsive Language Navigation */
@media (max-width: 768px) {
    .language-navigation {
        top: 90px;
        right: 20px;
    }
    
    html[dir="rtl"] .language-navigation {
        right: auto;
        left: 20px;
    }
    
    .language-dropdown span {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .language-menu {
        min-width: 150px;
        right: 0;
    }
    
    html[dir="rtl"] .language-menu {
        right: auto;
        left: 0;
    }
}

.navbar.scrolled {
    background: rgba(26, 54, 93, 0.98);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo h1 {
    color: var(--secondary-gold);
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 12px 0;
    position: relative;
    font-size: 16px;
}

.nav-link:hover {
    color: var(--secondary-gold);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-gold), #e6c158);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

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

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, 
        rgba(26, 54, 93, 0.95) 0%, 
        rgba(45, 55, 72, 0.95) 50%, 
        rgba(26, 54, 93, 0.8) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="1" cy="1" r="1" fill="%23d4af37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    color: var(--white);
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.1); opacity: 0.2; }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    max-width: 800px;
    padding: 0 20px;
}

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

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.4s both;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-gold) 0%, #e6c158 100%);
    color: var(--primary-dark);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e6c158 0%, var(--secondary-gold) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* Services Overview */
.services-overview {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--white) 0%, #f8fafc 100%);
    position: relative;
}

.services-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.services-overview h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 80px;
    color: var(--primary-dark);
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 50px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-slow);
    border: 1px solid rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.08), transparent);
    transition: var(--transition-slow);
}

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

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Elderly Care Section */
.elderly-care {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--accent-cream) 0%, #f1f5f9 100%);
    position: relative;
}

.elderly-care::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid3" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="%23d4af37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid3)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.elderly-care h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 80px;
    color: var(--primary-dark);
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.elderly-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.elderly-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
    line-height: 1.3;
}

.elderly-text p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-dark);
    line-height: 1.7;
}

.elderly-features {
    margin: 40px 0;
}

.elderly-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.elderly-feature-icon {
    font-size: 2.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.elderly-feature-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

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

.elderly-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
    background: var(--primary-dark);
    padding: 30px;
    border-radius: 15px;
    color: var(--white);
}

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

.elderly-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-gold);
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.elderly-stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.service-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-slow);
}

.service-image:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.placeholder-image {
    background: var(--primary-dark);
    color: var(--white);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.2rem;
}

/* Safe Haven Section */
.safe-haven {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--white) 0%, #f8fafc 100%);
    position: relative;
}

.safe-haven::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid2" width="15" height="15" patternUnits="userSpaceOnUse"><path d="M 15 0 L 0 0 0 15" fill="none" stroke="%23e2e8f0" stroke-width="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid2)"/></svg>');
    opacity: 0.2;
    z-index: 0;
}

.safe-haven h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 80px;
    color: var(--primary-dark);
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.safe-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.safe-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
    line-height: 1.3;
}

.safe-text p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-dark);
    line-height: 1.7;
}

.service-features {
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 50px 0;
    background: var(--primary-dark);
    padding: 40px;
    border-radius: 20px;
    color: var(--white);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-gold);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--accent-cream);
}

.about h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-dark);
}

.about-content p {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--text-dark);
    line-height: 1.8;
}

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

.value-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.value-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.value-item p {
    color: var(--text-light);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--primary-dark);
    color: var(--white);
}

.contact h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--secondary-gold);
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--secondary-gold);
}

.contact-link {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.contact-link:hover h3 {
    color: var(--white);
    transform: translateY(-2px);
}

.contact-item {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-item strong {
    color: var(--secondary-gold);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    color: var(--text-dark);
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-gold);
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

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

/* Footer */
.footer {
    background: var(--primary-light);
    color: var(--white);
    text-align: center;
    padding: 30px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--primary-dark);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        padding: 20px 0;
        gap: 0;
    }

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

    .nav-link {
        padding: 15px 0;
        font-size: 18px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 1.15rem;
        line-height: 1.5;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

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

    .elderly-content,
    .safe-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .elderly-content .elderly-image,
    .safe-content .safe-image {
        order: -1;
    }

    .service-image {
        height: 300px;
        border-radius: 15px;
    }

    .container {
        padding: 0 20px;
    }

    .service-card {
        padding: 35px 25px;
        border-radius: 15px;
    }

    .feature-item,
    .elderly-feature-item {
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .stats-grid,
    .elderly-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px;
    }

    .stat-number,
    .elderly-stat-number {
        font-size: 2.5rem;
    }

    .services-overview h2,
    .elderly-care h2,
    .safe-haven h2,
    .about h2,
    .contact h2 {
        font-size: 2.5rem;
        margin-bottom: 50px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero {
        padding: 140px 0 60px;
        min-height: 90vh;
    }

    .services-overview,
    .elderly-care,
    .safe-haven,
    .about,
    .contact {
        padding: 50px 0;
    }

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

    .feature-icon,
    .elderly-feature-icon {
        font-size: 2rem;
        margin-right: 15px;
    }

    .feature-content h4,
    .elderly-feature-content h4 {
        font-size: 1.2rem;
    }

    .service-image {
        height: 250px;
    }

    .language-switcher {
        top: 15px;
        right: 15px;
        padding: 3px;
    }

    .language-switcher select {
        font-size: 12px;
    }
}