
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Advanced Stylish Navbar */
.navbar {
    background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(26,26,26,0.95) 100%) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, #f1ca58, transparent) 1;
    padding: 0.8rem 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(241, 202, 88, 0.1), transparent);
    transition: left 0.8s ease;
}

.navbar:hover::before {
    left: 100%;
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(0,0,0,0.98) 0%, rgba(26,26,26,0.98) 100%) !important;
    padding: 0.5rem 0;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(241, 202, 88, 0.3);
}

/* Advanced Logo Styling */
.navbar-brand {
    position: relative;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
}

.navbar-brand::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #f1ca58, transparent, #f1ca58);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.navbar-brand:hover::before {
    opacity: 0.3;
}

.navbar-brand img {
    width: 95px;
    margin-top:8px;
    height: 105px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 15px rgba(241, 202, 88, 0.4));
    border: 2px solid transparent;
    background: linear-gradient(#000, #000) padding-box, 
                linear-gradient(45deg, #f1ca58, transparent, #f1ca58) border-box;
}

.navbar-brand:hover img {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 6px 20px rgba(241, 202, 88, 0.6));
}

.navbar.scrolled .navbar-brand img {
    width: 75px;
    height: 55px;
}

/* Advanced Navigation Links */
.navbar-nav {
    position: relative;
}

.navbar-nav::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(241, 202, 88, 0.3), transparent);
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar-nav:hover::before {
    opacity: 1;
}

.navbar-nav .nav-item {
    position: relative;
    margin: 0 0.3rem;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600;
    padding: 0.8rem 1.5rem !important;
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 0.9rem;
    overflow: hidden;
    background: linear-gradient(135deg, transparent, rgba(241, 202, 88, 0.05), transparent);
    border: 1px solid transparent;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(241, 202, 88, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.navbar-nav .nav-link:hover::before {
    left: 100%;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f1ca58, #d2ac3e);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover {
    color: #f1ca58 !important;
    background: linear-gradient(135deg, rgba(241, 202, 88, 0.1), rgba(241, 202, 88, 0.05));
    border-color: rgba(241, 202, 88, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(241, 202, 88, 0.2);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-nav .nav-link.active {
    color: #f1ca58 !important;
    background: linear-gradient(135deg, rgba(241, 202, 88, 0.15), rgba(241, 202, 88, 0.08));
    border-color: rgba(241, 202, 88, 0.4);
    box-shadow: 0 4px 15px rgba(241, 202, 88, 0.3);
}

.navbar-nav .nav-link.active::after {
    width: 80%;
}

/* Advanced Mobile Toggle */
.navbar-toggler {
    border: none;
    padding: 0.6rem;
    background: linear-gradient(135deg, #f1ca58, #d2ac3e);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(241, 202, 88, 0.4);
    position: relative;
    overflow: hidden;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler::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: left 0.5s ease;
}

.navbar-toggler:hover::before {
    left: 100%;
}

.navbar-toggler:focus {
    box-shadow: 0 6px 25px rgba(241, 202, 88, 0.6);
}

.navbar-toggler:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(241, 202, 88, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.navbar-toggler:hover .navbar-toggler-icon {
    transform: rotate(90deg);
}

/* Advanced Mobile Menu */
.navbar-collapse {
    background: linear-gradient(135deg, rgba(0,0,0,0.98) 0%, rgba(26,26,26,0.98) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 20px;
    margin-top: 1.5rem;
    padding: 2rem;
    border: 2px solid rgba(241, 202, 88, 0.3);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.navbar-collapse::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(241, 202, 88, 0.05), transparent);
    pointer-events: none;
}

@media (max-width: 991px) {
    .navbar-nav .nav-link {
        color: rgba(255, 255, 255, 0.9) !important;
        margin: 0.5rem 0;
        text-align: center;
        background: linear-gradient(135deg, rgba(241, 202, 88, 0.08), rgba(241, 202, 88, 0.03));
        border: 1px solid rgba(241, 202, 88, 0.2);
        border-radius: 15px;
        font-size: 1rem;
        text-transform: none;
        letter-spacing: 0.5px;
    }

    .navbar-nav .nav-link:hover {
        color: #f1ca58 !important;
        background: linear-gradient(135deg, rgba(241, 202, 88, 0.2), rgba(241, 202, 88, 0.1));
        border-color: rgba(241, 202, 88, 0.5);
        transform: translateX(10px);
    }
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/placeholder.svg?height=1080&width=1920') center/cover;
    opacity: 0.6;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff, #f1ca58);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #f1ca58;
    font-weight: 600;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
}

.explore-btn {
    background: linear-gradient(135deg, #f1ca58, #d2ac3e);
    border: none;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(241, 202, 88, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.explore-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(241, 202, 88, 0.5);
    color: #000;
}

/* Section Styles */
.section {
    padding: 120px 0;
    position: relative;
}

.hr-section {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: white;
}

.hr-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('image/hr.jpg?height=800&width=1200') center/cover;
    opacity: 0.4;
    z-index: 1;
}

.maintenance-section {
    background: linear-gradient(135deg, #f1ca58 0%, #d2ac3e 100%);
    color: #000;
}

.maintenance-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('image/m.jpg?height=800&width=1200') center/cover;
    opacity: 0.5;
    z-index: 1;
}

.care-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    color: white;
}

.care-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('image/c.jpg?height=800&width=1200') center/cover;
    opacity: 0.4;
    z-index: 1;
}

.section-content {
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 500;
}

.section-description {
    font-size: 1rem;
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 500px;
}

/* Service Cards */
.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    margin: 1rem 0;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.service-icon {
    font-size: 2.5rem;
    color: #f1ca58;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
}

.service-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #f1ca58, transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: #f1ca58;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.3rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

.footer-section ul li a:hover {
    color: #f1ca58;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #f1ca58, #d2ac3e);
    color: #000;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    transition: all 0.4s ease;
    font-size: 1.1rem;
}

.social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(241, 202, 88, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .hero-section {
        height: 90vh;
    }

    .navbar-brand img {
        width: 70px;
        height: 50px;
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #f1ca58;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}
















/* Additional unique styles for the HR page */
.hero-image-container {
    position: relative;
    text-align: center;
}

.hero-main-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(241, 202, 88, 0.3);
    transition: all 0.4s ease;
}

.hero-main-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(241, 202, 88, 0.4);
}

.hr-services-grid {
    display: grid;
    gap: 1.5rem;
}

.why-choose-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0;
}

.expertise-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    height: 100%;
}

.expertise-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(241, 202, 88, 0.2);
    border-color: #f1ca58;
}

.expertise-icon {
    font-size: 3rem;
    color: #f1ca58;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.expertise-card:hover .expertise-icon {
    transform: scale(1.2) rotate(5deg);
}

.expertise-card h4 {
    color: #333;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.expertise-card p {
    color: #666;
    line-height: 1.6;
}

.process-image-container {
    position: relative;
    text-align: center;
}

.process-main-image {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.process-steps {
    margin-top: 2rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: translateX(10px);
}

.step-number {
    background: linear-gradient(135deg, #f1ca58, #d2ac3e);
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content h5 {
    color: #000;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step-content p {
    color: #333;
    margin: 0;
    line-height: 1.5;
}

.specialized-services-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0;
}

.specialized-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.specialized-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(241, 202, 88, 0.2);
}

.specialized-image {
    height: 200px;
    overflow: hidden;
}

.specialized-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.specialized-card:hover .specialized-image img {
    transform: scale(1.1);
}

.specialized-content {
    padding: 2rem;
    text-align: center;
}

.specialized-content h5 {
    color: #333;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.specialized-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.wellness-features {
    margin-top: 2rem;
}

.wellness-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.wellness-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.wellness-feature i {
    color: #f1ca58;
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 30px;
}

.wellness-feature span {
    font-weight: 600;
    font-size: 1.1rem;
}

.wellness-image-container {
    position: relative;
    text-align: center;
}

.wellness-main-image {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(241, 202, 88, 0.3);
}

.statistics-section {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: white;
    padding: 100px 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: #f1ca58;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(241, 202, 88, 0.2);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f1ca58;
}

.author-info h6 {
    color: #333;
    font-weight: 700;
    margin: 0;
    font-size: 1.1rem;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

.cta-section {
    background: linear-gradient(135deg, #f1ca58 0%, #d2ac3e 100%);
    color: #000;
    padding: 100px 0;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.secondary-btn {
    background: transparent;
    border: 2px solid #000;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.secondary-btn:hover {
    background: #000;
    color: #f1ca58;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Enhanced Mobile Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .hero-main-image {
        max-width: 100%;
        margin-top: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .section-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .process-steps {
        margin-top: 2rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .wellness-features {
        margin-top: 2rem;
    }
    
    .wellness-feature {
        justify-content: center;
        padding: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .cta-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .secondary-btn,
    .explore-btn {
        width: 100%;
        max-width: 280px;
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .expertise-card,
    .specialized-card,
    .testimonial-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .specialized-image {
        height: 180px;
    }
    
    .specialized-content {
        padding: 1.5rem;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 60px 0 30px;
    }
    
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .expertise-card,
    .specialized-card,
    .testimonial-card {
        padding: 1.5rem 1rem;
    }
    
    .process-step {
        padding: 1rem;
    }
    
    .wellness-feature {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .wellness-feature i {
        font-size: 1.3rem;
    }
    
    .cta-title {
        font-size: 1.9rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 50px 0 20px;
    }
    
    .hero-title {
        font-size: 1.7rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .expertise-card,
    .specialized-card,
    .testimonial-card {
        padding: 1.2rem 0.8rem;
    }
    
    .cta-title {
        font-size: 1.7rem;
    }
    
    .explore-btn,
    .secondary-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}



















/* Maintenance Page Unique Styles */
.maintenance-hero-container {
    position: relative;
    text-align: center;
}

.maintenance-hero-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(241, 202, 88, 0.3);
    transition: all 0.4s ease;
}

.maintenance-hero-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(241, 202, 88, 0.4);
}

.core-services-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0;
}

.core-service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.core-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(241, 202, 88, 0.1), transparent);
    transition: left 0.6s ease;
}

.core-service-card:hover::before {
    left: 100%;
}

.plumbing-card:hover {
    border-color: #007bff;
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 123, 255, 0.2);
}

.electrical-card:hover {
    border-color: #ffc107;
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(255, 193, 7, 0.2);
}

.carpentry-card:hover {
    border-color: #8b4513;
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(139, 69, 19, 0.2);
}

.service-icon-container {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f1ca58, #d2ac3e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.service-icon-container i {
    font-size: 2rem;
    color: #000;
}

.core-service-card:hover .service-icon-container {
    transform: scale(1.2) rotate(10deg);
}

.core-service-card h4 {
    color: #333;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.core-service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    background: linear-gradient(135deg, rgba(241, 202, 88, 0.1), rgba(241, 202, 88, 0.05));
    padding: 0.5rem 1rem;
    margin: 0.5rem 0;
    border-radius: 25px;
    color: #333;
    font-weight: 600;
    border: 1px solid rgba(241, 202, 88, 0.3);
    transition: all 0.3s ease;
}

.service-features li:hover {
    background: linear-gradient(135deg, rgba(241, 202, 88, 0.2), rgba(241, 202, 88, 0.1));
    transform: translateX(5px);
}

.specialized-maintenance-section {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: white;
    padding: 120px 0;
}

.specialized-services-grid {
    margin-top: 2rem;
}

.specialized-service-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.4s ease;
    border: 1px solid rgba(241, 202, 88, 0.2);
}

.specialized-service-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(15px);
    border-color: rgba(241, 202, 88, 0.5);
}

.spec-service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f1ca58, #d2ac3e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.spec-service-icon i {
    font-size: 1.5rem;
    color: #000;
}

.spec-service-content h5 {
    color: #f1ca58;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.spec-service-content p {
    margin: 0;
    line-height: 1.5;
    opacity: 0.9;
}

.specialized-image-container {
    position: relative;
    text-align: center;
}

.specialized-main-image {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(241, 202, 88, 0.3);
}

.service-categories-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0;
}

.category-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    border: 3px solid transparent;
}

.interior-category:hover {
    border-color: #28a745;
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(40, 167, 69, 0.2);
}

.exterior-category:hover {
    border-color: #17a2b8;
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(23, 162, 184, 0.2);
}

.deep-cleaning-category:hover {
    border-color: #6f42c1;
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(111, 66, 193, 0.2);
}

.hvac-category:hover {
    border-color: #fd7e14;
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(253, 126, 20, 0.2);
}

.category-image {
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-content {
    padding: 2rem;
    text-align: center;
}

.category-content h5 {
    color: #333;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.category-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.category-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.category-features span {
    background: linear-gradient(135deg, #f1ca58, #d2ac3e);
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.maintenance-advantages-section {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: white;
    padding: 120px 0;
}

.advantages-image-container {
    position: relative;
    text-align: center;
}

.advantages-main-image {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(241, 202, 88, 0.3);
}

.advantages-list {
    margin-top: 2rem;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.4s ease;
    border: 1px solid rgba(241, 202, 88, 0.2);
}

.advantage-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(15px);
    border-color: rgba(241, 202, 88, 0.5);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f1ca58, #d2ac3e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.advantage-icon i {
    font-size: 1.5rem;
    color: #000;
}

.advantage-content h5 {
    color: #f1ca58;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.advantage-content p {
    margin: 0;
    line-height: 1.5;
    opacity: 0.9;
}

.maintenance-process-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0;
}

.process-step-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.process-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(241, 202, 88, 0.1), transparent);
    transition: left 0.6s ease;
}

.process-step-card:hover::before {
    left: 100%;
}

.process-step-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(241, 202, 88, 0.2);
}

.process-step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f1ca58, #d2ac3e);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(241, 202, 88, 0.4);
}

.process-step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(241, 202, 88, 0.1), rgba(241, 202, 88, 0.05));
    border: 2px solid rgba(241, 202, 88, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.process-step-icon i {
    font-size: 2rem;
    color: #f1ca58;
}

.process-step-card:hover .process-step-icon {
    transform: scale(1.2) rotate(10deg);
    background: linear-gradient(135deg, rgba(241, 202, 88, 0.2), rgba(241, 202, 88, 0.1));
}

.process-step-card h5 {
    color: #333;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.process-step-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.emergency-services-section {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 120px 0;
}

.emergency-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.plumbing-emergency:hover {
    background: rgba(0, 123, 255, 0.2);
    border-color: #007bff;
    transform: translateY(-15px);
}

.electrical-emergency:hover {
    background: rgba(255, 193, 7, 0.2);
    border-color: #ffc107;
    transform: translateY(-15px);
}

.hvac-emergency:hover {
    background: rgba(23, 162, 184, 0.2);
    border-color: #17a2b8;
    transform: translateY(-15px);
}

.emergency-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f1ca58, #d2ac3e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.emergency-icon i {
    font-size: 2rem;
    color: #000;
}

.emergency-card:hover .emergency-icon {
    transform: scale(1.2) rotate(10deg);
}

.emergency-card h5 {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.emergency-card p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.emergency-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.emergency-features span {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.maintenance-stats-section {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: white;
    padding: 100px 0;
}

.maintenance-stat-card {
    text-align: center;
    padding: 2rem;
}

.maintenance-stat-card .stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: #f1ca58;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.maintenance-stat-card .stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.maintenance-testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0;
}

.maintenance-testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    text-align: center;
}

.maintenance-testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(241, 202, 88, 0.2);
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #f1ca58;
    font-size: 1.2rem;
    margin: 0 0.2rem;
}

.maintenance-cta-section {
    background: linear-gradient(135deg, #f1ca58 0%, #d2ac3e 100%);
    color: #000;
    padding: 100px 0;
}

.maintenance-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.maintenance-cta-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.maintenance-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.contact-info-row {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-info-item i {
    color: #000;
    font-size: 1.2rem;
}

/* Enhanced Mobile Responsive adjustments for Maintenance Page */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .maintenance-hero-image {
        max-width: 100%;
        margin-top: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .specialized-service-item,
    .advantage-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .spec-service-icon,
    .advantage-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .maintenance-cta-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .maintenance-cta-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .maintenance-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .secondary-btn,
    .explore-btn {
        width: 100%;
        max-width: 280px;
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .contact-info-row {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .contact-info-item {
        font-size: 1rem;
    }
    
    .maintenance-stat-card .stat-number {
        font-size: 2.8rem;
    }
    
    .maintenance-stat-card .stat-label {
        font-size: 1rem;
    }
    
    .core-service-card,
    .category-card,
    .process-step-card,
    .emergency-card,
    .maintenance-testimonial-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .category-image {
        height: 180px;
    }
    
    .category-content {
        padding: 1.5rem;
    }
    
    .category-features {
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 60px 0 30px;
    }
    
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .core-service-card,
    .category-card,
    .process-step-card,
    .emergency-card,
    .maintenance-testimonial-card {
        padding: 1.5rem 1rem;
    }
    
    .specialized-service-item,
    .advantage-item {
        padding: 1rem;
    }
    
    .maintenance-cta-title {
        font-size: 1.9rem;
    }
    
    .maintenance-cta-description {
        font-size: 1rem;
    }
    
    .maintenance-stat-card .stat-number {
        font-size: 2.5rem;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 50px 0 20px;
    }
    
    .hero-title {
        font-size: 1.7rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .core-service-card,
    .category-card,
    .process-step-card,
    .emergency-card,
    .maintenance-testimonial-card {
        padding: 1.2rem 0.8rem;
    }
    
    .maintenance-cta-title {
        font-size: 1.7rem;
    }
    
    .explore-btn,
    .secondary-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .contact-info-item {
        font-size: 0.9rem;
    }
}














/* Care Page Unique Styles */
.care-hero-container {
    position: relative;
    text-align: center;
}

.care-hero-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(241, 202, 88, 0.3);
    transition: all 0.4s ease;
}

.care-hero-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(241, 202, 88, 0.4);
}

.core-care-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0;
}

.care-service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.care-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(241, 202, 88, 0.1), transparent);
    transition: left 0.6s ease;
}

.care-service-card:hover::before {
    left: 100%;
}

.palliative-card:hover {
    border-color: #e91e63;
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(233, 30, 99, 0.2);
}

.nursing-card:hover {
    border-color: #2196f3;
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(33, 150, 243, 0.2);
}

.elderly-card:hover {
    border-color: #4caf50;
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(76, 175, 80, 0.2);
}

.care-icon-container {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f1ca58, #d2ac3e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.care-icon-container i {
    font-size: 2rem;
    color: #000;
}

.care-service-card:hover .care-icon-container {
    transform: scale(1.2) rotate(10deg);
}

.care-service-card h4 {
    color: #333;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.care-service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.care-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.care-features li {
    background: linear-gradient(135deg, rgba(241, 202, 88, 0.1), rgba(241, 202, 88, 0.05));
    padding: 0.5rem 1rem;
    margin: 0.5rem 0;
    border-radius: 25px;
    color: #333;
    font-weight: 600;
    border: 1px solid rgba(241, 202, 88, 0.3);
    transition: all 0.3s ease;
}

.care-features li:hover {
    background: linear-gradient(135deg, rgba(241, 202, 88, 0.2), rgba(241, 202, 88, 0.1));
    transform: translateX(5px);
}

.specialized-care-section {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: white;
    padding: 120px 0;
}

.specialized-care-grid {
    margin-top: 2rem;
}

.specialized-care-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.4s ease;
    border: 1px solid rgba(241, 202, 88, 0.2);
}

.specialized-care-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(15px);
    border-color: rgba(241, 202, 88, 0.5);
}

.spec-care-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f1ca58, #d2ac3e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.spec-care-icon i {
    font-size: 1.5rem;
    color: #000;
}

.spec-care-content h5 {
    color: #f1ca58;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.spec-care-content p {
    margin: 0;
    line-height: 1.5;
    opacity: 0.9;
}

.specialized-care-image-container {
    position: relative;
    text-align: center;
}

.specialized-care-main-image {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(241, 202, 88, 0.3);
}

.care-categories-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0;
}

.category-care-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    border: 3px solid transparent;
}

.medical-category:hover {
    border-color: #f44336;
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(244, 67, 54, 0.2);
}

.therapy-category:hover {
    border-color: #9c27b0;
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(156, 39, 176, 0.2);
}

.mental-health-category:hover {
    border-color: #3f51b5;
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(63, 81, 181, 0.2);
}

.respite-category:hover {
    border-color: #009688;
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 150, 136, 0.2);
}

.category-care-image {
    height: 200px;
    overflow: hidden;
}

.category-care-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.category-care-card:hover .category-care-image img {
    transform: scale(1.1);
}

.category-care-content {
    padding: 2rem;
    text-align: center;
}

.category-care-content h5 {
    color: #333;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.category-care-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.category-care-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.category-care-features span {
    background: linear-gradient(135deg, #f1ca58, #d2ac3e);
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.care-advantages-section {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: white;
    padding: 120px 0;
}

.care-advantages-image-container {
    position: relative;
    text-align: center;
}

.care-advantages-main-image {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(241, 202, 88, 0.3);
}

.care-advantages-list {
    margin-top: 2rem;
}

.care-advantage-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.4s ease;
    border: 1px solid rgba(241, 202, 88, 0.2);
}

.care-advantage-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(15px);
    border-color: rgba(241, 202, 88, 0.5);
}

.care-advantage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f1ca58, #d2ac3e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.care-advantage-icon i {
    font-size: 1.5rem;
    color: #000;
}

.care-advantage-content h5 {
    color: #f1ca58;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.care-advantage-content p {
    margin: 0;
    line-height: 1.5;
    opacity: 0.9;
}

.care-process-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0;
}

.care-process-step-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.care-process-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(241, 202, 88, 0.1), transparent);
    transition: left 0.6s ease;
}

.care-process-step-card:hover::before {
    left: 100%;
}

.care-process-step-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(241, 202, 88, 0.2);
}

.care-process-step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f1ca58, #d2ac3e);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(241, 202, 88, 0.4);
}

.care-process-step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(241, 202, 88, 0.1), rgba(241, 202, 88, 0.05));
    border: 2px solid rgba(241, 202, 88, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.care-process-step-icon i {
    font-size: 2rem;
    color: #f1ca58;
}

.care-process-step-card:hover .care-process-step-icon {
    transform: scale(1.2) rotate(10deg);
    background: linear-gradient(135deg, rgba(241, 202, 88, 0.2), rgba(241, 202, 88, 0.1));
}

.care-process-step-card h5 {
    color: #333;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.care-process-step-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.care-facilities-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0;
}

.facility-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.medical-equipment:hover {
    background: rgba(76, 175, 80, 0.2);
    border-color: #4caf50;
    transform: translateY(-15px);
}

.comfortable-environment:hover {
    background: rgba(33, 150, 243, 0.2);
    border-color: #2196f3;
    transform: translateY(-15px);
}

.safety-security:hover {
    background: rgba(255, 152, 0, 0.2);
    border-color: #ff9800;
    transform: translateY(-15px);
}

.facility-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f1ca58, #d2ac3e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.facility-icon i {
    font-size: 2rem;
    color: #000;
}

.facility-card:hover .facility-icon {
    transform: scale(1.2) rotate(10deg);
}

.facility-card h5 {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.facility-card p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.facility-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.facility-features span {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.care-stats-section {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: white;
    padding: 100px 0;
}

.care-stat-card {
    text-align: center;
    padding: 2rem;
}

.care-stat-card .stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: #f1ca58;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.care-stat-card .stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.care-testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0;
}

.care-testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    text-align: center;
}

.care-testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(241, 202, 88, 0.2);
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #f1ca58;
    font-size: 1.2rem;
    margin: 0 0.2rem;
}

.care-cta-section {
    background: linear-gradient(135deg, #f1ca58 0%, #d2ac3e 100%);
    color: #000;
    padding: 100px 0;
}

.care-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.care-cta-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.care-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.care-contact-info-row {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.care-contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.care-contact-info-item i {
    color: #000;
    font-size: 1.2rem;
}

/* Enhanced Mobile Responsive adjustments for Care Page */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .care-hero-image {
        max-width: 100%;
        margin-top: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .specialized-care-item,
    .care-advantage-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .spec-care-icon,
    .care-advantage-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .care-cta-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .care-cta-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .care-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .secondary-btn,
    .explore-btn {
        width: 100%;
        max-width: 280px;
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .care-contact-info-row {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .care-contact-info-item {
        font-size: 1rem;
    }
    
    .care-stat-card .stat-number {
        font-size: 2.8rem;
    }
    
    .care-stat-card .stat-label {
        font-size: 1rem;
    }
    
    .care-service-card,
    .category-care-card,
    .care-process-step-card,
    .facility-card,
    .care-testimonial-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .category-care-image {
        height: 180px;
    }
    
    .category-care-content {
        padding: 1.5rem;
    }
    
    .category-care-features {
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 60px 0 30px;
    }
    
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .care-service-card,
    .category-care-card,
    .care-process-step-card,
    .facility-card,
    .care-testimonial-card {
        padding: 1.5rem 1rem;
    }
    
    .specialized-care-item,
    .care-advantage-item {
        padding: 1rem;
    }
    
    .care-cta-title {
        font-size: 1.9rem;
    }
    
    .care-cta-description {
        font-size: 1rem;
    }
    
    .care-stat-card .stat-number {
        font-size: 2.5rem;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 50px 0 20px;
    }
    
    .hero-title {
        font-size: 1.7rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .care-service-card,
    .category-care-card,
    .care-process-step-card,
    .facility-card,
    .care-testimonial-card {
        padding: 1.2rem 0.8rem;
    }
    
    .care-cta-title {
        font-size: 1.7rem;
    }
    
    .explore-btn,
    .secondary-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .care-contact-info-item {
        font-size: 0.9rem;
    }
}















/* Contact Page Unique Styles */
.contact-hero-container {
    position: relative;
    text-align: center;
}

.contact-hero-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(241, 202, 88, 0.3);
    transition: all 0.4s ease;
}

.contact-hero-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(241, 202, 88, 0.4);
}

.hero-contact-info {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(241, 202, 88, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hero-contact-item:hover {
    background: rgba(241, 202, 88, 0.2);
    transform: translateX(10px);
}

.hero-contact-item i {
    color: #f1ca58;
    font-size: 1.5rem;
    width: 30px;
}

.hero-contact-item span {
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-form-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #f1ca58, #d2ac3e, #f1ca58);
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-label i {
    color: #f1ca58;
    font-size: 1rem;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
    position: relative;
}

.form-control:focus {
    outline: none;
    border-color: #f1ca58;
    box-shadow: 0 0 0 3px rgba(241, 202, 88, 0.1);
    transform: translateY(-2px);
}

.form-focus-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f1ca58, #d2ac3e);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.form-control:focus + .form-focus-line {
    width: 100%;
}

select.form-control {
    cursor: pointer;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.file-upload-wrapper {
    position: relative;
    border: 2px dashed #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-wrapper:hover {
    border-color: #f1ca58;
    background: rgba(241, 202, 88, 0.05);
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-display i {
    font-size: 2.5rem;
    color: #f1ca58;
    margin-bottom: 1rem;
}

.file-upload-display span {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.file-upload-display small {
    color: #666;
    font-size: 0.85rem;
}

.form-check-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(241, 202, 88, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(241, 202, 88, 0.2);
}

.form-check-input {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: #f1ca58;
}

.form-check-label {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    cursor: pointer;
}

.privacy-link {
    color: #f1ca58;
    text-decoration: none;
    font-weight: 600;
}

.privacy-link:hover {
    text-decoration: underline;
}

.submit-btn {
    background: linear-gradient(135deg, #f1ca58, #d2ac3e);
    color: #000;
    border: none;
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(241, 202, 88, 0.4);
}

.submit-btn i {
    font-size: 1rem;
}

.contact-info-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0;
}

.contact-info-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(241, 202, 88, 0.2);
    border-color: #f1ca58;
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f1ca58, #d2ac3e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.contact-info-icon i {
    font-size: 2rem;
    color: #000;
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.2) rotate(10deg);
}

.contact-info-card h4 {
    color: #333;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.contact-info-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-link {
    color: #f1ca58;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #d2ac3e;
    text-decoration: underline;
}

.office-locations-section {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: white;
    padding: 120px 0;
}

.locations-list {
    margin-top: 2rem;
}

.location-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.4s ease;
    border: 1px solid rgba(241, 202, 88, 0.2);
}

.location-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(15px);
    border-color: rgba(241, 202, 88, 0.5);
}

.location-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f1ca58, #d2ac3e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.location-icon i {
    font-size: 1.5rem;
    color: #000;
}

.location-content h5 {
    color: #f1ca58;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.location-content p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    opacity: 0.9;
}

.location-hours {
    color: #f1ca58;
    font-weight: 600;
    font-size: 0.9rem;
}

.map-container {
    position: relative;
    text-align: center;
}

.map-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(241, 202, 88, 0.3);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.map-placeholder:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(241, 202, 88, 0.5);
}

.map-placeholder i {
    font-size: 4rem;
    color: #f1ca58;
    margin-bottom: 1rem;
}

.map-placeholder h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.map-btn {
    background: linear-gradient(135deg, #f1ca58, #d2ac3e);
    color: #000;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(241, 202, 88, 0.3);
}

.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0;
}

.faq-accordion {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-item {
    border-bottom: 1px solid #e9ecef;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: between;
    align-items: center;
    transition: all 0.3s ease;
    background: white;
}

.faq-question:hover {
    background: rgba(241, 202, 88, 0.05);
}

.faq-question h5 {
    margin: 0;
    color: #333;
    font-weight: 600;
    flex: 1;
}

.faq-icon {
    color: #f1ca58;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(241, 202, 88, 0.02);
}

.faq-answer.active {
    padding: 1.5rem 2rem;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.social-section {
    background: linear-gradient(135deg, #f1ca58 0%, #d2ac3e 100%);
    color: #000;
    padding: 100px 0;
}

.social-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.social-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    text-decoration: none;
    color: #000;
    transition: all 0.4s ease;
    min-width: 120px;
}

.social-link:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    color: #000;
}

.social-link.facebook:hover {
    background: #1877f2;
    color: white;
}

.social-link.twitter:hover {
    background: #1da1f2;
    color: white;
}

.social-link.linkedin:hover {
    background: #0077b5;
    color: white;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.social-link.youtube:hover {
    background: #ff0000;
    color: white;
}

.social-link i {
    font-size: 2rem;
}

.social-link span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Enhanced Mobile Responsive adjustments for Contact Page */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .contact-hero-image {
        max-width: 100%;
        margin-top: 2rem;
    }
    
    .hero-contact-info {
        margin-top: 2rem;
    }
    
    .hero-contact-item {
        justify-content: center;
        text-align: center;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .form-control {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .file-upload-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .submit-btn {
        padding: 15px 40px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
    
    .location-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .location-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .social-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .social-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-link {
        min-width: 100px;
        padding: 1rem;
    }
    
    .social-link i {
        font-size: 1.5rem;
    }
    
    .contact-info-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .map-placeholder {
        padding: 2rem 1rem;
    }
    
    .map-placeholder i {
        font-size: 3rem;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-answer.active {
        padding: 1rem 1.5rem;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 60px 0 30px;
    }
    
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .contact-form-container {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .form-label {
        font-size: 0.9rem;
    }
    
    .form-control {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
    
    .social-title {
        font-size: 1.9rem;
    }
    
    .social-description {
        font-size: 1rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .social-link {
        width: 100%;
        max-width: 200px;
    }
    
    .contact-info-card {
        padding: 1.5rem 1rem;
    }
    
    .location-item {
        padding: 1rem;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 50px 0 20px;
    }
    
    .hero-title {
        font-size: 1.7rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .contact-form-container {
        padding: 1.2rem 0.8rem;
    }
    
    .social-title {
        font-size: 1.7rem;
    }
    
    .form-control {
        padding: 8px 10px;
    }
    
    .submit-btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
}
















/* About Us Page Unique Styles */
.about-hero-container {
    position: relative;
    text-align: center;
}

.about-hero-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(241, 202, 88, 0.3);
    transition: all 0.4s ease;
}

.about-hero-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(241, 202, 88, 0.4);
}

.company-story-section {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: white;
    padding: 120px 0;
}

.story-image-container {
    position: relative;
    text-align: center;
}

.story-main-image {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(241, 202, 88, 0.3);
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.story-highlights {
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.highlight-item i {
    color: #f1ca58;
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 30px;
}

.highlight-item span {
    font-weight: 600;
    font-size: 1.1rem;
}

.mission-values-section {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 120px 0;
}

.value-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.mission-card:hover {
    background: rgba(241, 202, 88, 0.2);
    border-color: #f1ca58;
    transform: translateY(-15px);
}

.vision-card:hover {
    background: rgba(33, 150, 243, 0.2);
    border-color: #2196f3;
    transform: translateY(-15px);
}

.values-card:hover {
    background: rgba(76, 175, 80, 0.2);
    border-color: #4caf50;
    transform: translateY(-15px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f1ca58, #d2ac3e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.value-icon i {
    font-size: 2rem;
    color: #000;
}

.value-card:hover .value-icon {
    transform: scale(1.2) rotate(10deg);
}

.value-card h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.value-card p {
    line-height: 1.6;
    opacity: 0.9;
}



@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .about-hero-image {
        max-width: 100%;
        margin-top: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .story-text {
        font-size: 1rem;
    }
    
    .highlight-item {
        justify-content: center;
        text-align: center;
        padding: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .choose-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .choose-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .about-cta-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .about-cta-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .secondary-btn,
    .explore-btn {
        width: 100%;
        max-width: 280px;
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .about-stat-card .stat-number {
        font-size: 2.8rem;
    }
    
    .about-stat-card .stat-label {
        font-size: 1rem;
    }
    
    .value-card,
    .certification-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .badge-item {
        min-width: auto;
        width: 100%;
        max-width: 280px;
    }
    
    .cert-list {
        text-align: center;
    }
    
    .cert-item {
        justify-content: center;
        text-align: center;
    }
    
    .accreditation-badges {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .team-image {
        height: 220px;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 60px 0 30px;
    }
    
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .value-card,
    .certification-card {
        padding: 1.5rem 1rem;
    }
    
    .cert-item {
        padding: 0.5rem;
        margin-bottom: 0.75rem;
    }
    
    .cert-item span {
        font-size: 0.9rem;
    }
    
    .badge-item {
        padding: 1rem;
    }
    
    .choose-item {
        padding: 1rem;
    }
    
    .about-cta-title {
        font-size: 1.9rem;
    }
    
    .about-cta-description {
        font-size: 1rem;
    }
    
    .about-stat-card .stat-number {
        font-size: 2.5rem;
    }
    
    .team-image {
        height: 200px;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 50px 0 20px;
    }
    
    .hero-title {
        font-size: 1.7rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .value-card,
    .certification-card {
        padding: 1.2rem 0.8rem;
    }
    
    .about-cta-title {
        font-size: 1.7rem;
    }
    
    .explore-btn,
    .secondary-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .team-image {
        height: 180px;
    }
}