:root {
            --primary-color: #1cbb8c;
            --primary-dark: #17a078;
            --primary-light: #e6f7f2;
            --secondary-color: #2a3b5e;
            --secondary-light: #3a4d78;
            --light-color: #f8f9fa;
            --dark-color: #212529;
            --gray-color: #6c757d;
            --light-gray: #e9ecef;
            --border-color: #dee2e6;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark-color);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }
        
        /* ========== ENHANCED HEADER ========== */
        .header-top {
            background-color: var(--secondary-color);
            color: white;
            padding: 0.5rem 0;
            font-size: 0.9rem;
        }
        
        .header-top a {
            color: #b0b7c3;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .header-top a:hover {
            color: var(--primary-color);
        }
        
        .header-contact i {
            color: var(--primary-color);
            margin-right: 0.5rem;
        }
        
        .header-social a {
            display: inline-block;
            width: 28px;
            height: 28px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 28px;
            margin-left: 0.5rem;
            color: white;
            transition: all 0.3s;
        }
        
        .header-social a:hover {
            background-color: var(--primary-color);
            transform: translateY(-2px);
        }
        
        /* Main Navigation */
        .navbar {
            padding: 1rem 0;
            background-color: white;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            padding: 0.7rem 0;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 2rem;
            color: var(--secondary-color);
            display: flex;
            align-items: center;
        }
        
        .navbar-brand .logo-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 10px;
            margin-right: 10px;
            font-size: 1.5rem;
        }
        
        .navbar-brand span {
            color: var(--primary-color);
        }
        
        .nav-link {
            font-weight: 500;
            margin: 0 0.3rem;
            color: var(--secondary-color);
            transition: all 0.3s;
            padding: 0.5rem 1rem !important;
            border-radius: 5px;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary-color);
            background-color: var(--primary-light);
        }
        
        .dropdown-menu {
            border: none;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            padding: 0.5rem 0;
            margin-top: 10px;
        }
        
        .dropdown-item {
            padding: 0.7rem 1.5rem;
            transition: all 0.3s;
        }
        
        .dropdown-item:hover {
            background-color: var(--primary-light);
            color: var(--primary-color);
            padding-left: 2rem;
        }
        
        .btn-login {
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            padding: 0.5rem 1.8rem;
            margin-right: 0.5rem;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-login:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(28, 187, 140, 0.3);
        }
        
        .btn-register {
            background-color: var(--primary-color);
            color: white;
            padding: 0.5rem 1.8rem;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-register:hover {
            background-color: var(--primary-dark);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(28, 187, 140, 0.3);
        }
        
        /* ========== HERO SECTION ========== */
        .hero-section {
            background: linear-gradient(135deg, rgba(42, 59, 94, 0.95) 0%, rgba(28, 187, 140, 0.85) 100%), url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 10rem 0 8rem;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section:before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 150px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,128L48,138.7C96,149,192,171,288,170.7C384,171,480,149,576,128C672,107,768,85,864,96C960,107,1056,149,1152,165.3C1248,181,1344,171,1392,165.3L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
            background-size: cover;
            background-position: center;
        }
        
        .hero-section h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            line-height: 1.2;
        }
        
        .hero-section p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            max-width: 700px;
            opacity: 0.9;
        }
        
        .btn-whatsapp {
            background-color: #25D366;
            color: white;
            padding: 0.9rem 2rem;
            margin-right: 0.8rem;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
        }
        
        .btn-whatsapp:hover {
            background-color: #1da851;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
        }
        
        .btn-call {
            background-color: white;
            color: var(--secondary-color);
            padding: 0.9rem 2rem;
            margin-right: 0.8rem;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
        }
        
        .btn-call:hover {
            background-color: var(--light-gray);
            color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .btn-get-started {
            background-color: var(--primary-color);
            color: white;
            padding: 0.9rem 2.5rem;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
        }
        
        .btn-get-started:hover {
            background-color: var(--primary-dark);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(28, 187, 140, 0.3);
        }
        
        /* ========== SERVICES SECTION ========== */
        .section-padding {
            padding: 3rem 0;
        }
        
        .section-title {
            margin-bottom: 3rem;
            position: relative;
            padding-bottom: 1rem;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .text-center .section-title:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .service-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--border-color);
        }
        
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-color);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.8rem;
        }
        
        .service-icon i {
            font-size: 2rem;
            color: white;
        }
        
        /* ========== WHY CHOOSE US SECTION ========== */
        .why-choose-section {
            background-color: var(--light-color);
        }
        
        .feature-box {
            text-align: center;
            padding: 2.5rem 2rem;
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.4s;
            height: 100%;
            border: 1px solid var(--border-color);
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-color);
        }
        
        .feature-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.8rem;
        }
        
        .feature-icon i {
            font-size: 2.2rem;
            color: white;
        }
        
        /* ========== CEO MESSAGE SECTION ========== */
        .ceo-section {
            background: linear-gradient(to right, var(--secondary-color) 50%, white 50%);
        }
        
        .ceo-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transform: perspective(1000px) rotateY(-10deg);
            transition: transform 0.5s;
        }
        
        .ceo-image:hover {
            transform: perspective(1000px) rotateY(0deg);
        }
        
        .ceo-image img {
            width: 100%;
            height: auto;
        }
        
        .ceo-message {
            padding-left: 4rem;
        }
        
        .ceo-name {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        /* ========== TESTIMONIALS ========== */
        .testimonial-card {
            background-color: white;
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin-bottom: 1rem;
            height: 100%;
            border: 1px solid var(--border-color);
            transition: all 0.3s;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-color);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.8rem;
            position: relative;
            padding-left: 1.5rem;
        }
        
        .testimonial-text:before {
            content: '"';
            position: absolute;
            left: 0;
            top: -10px;
            font-size: 3rem;
            color: var(--primary-color);
            opacity: 0.3;
            font-family: Georgia, serif;
        }
        
        .client-info img {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 1.2rem;
            border: 3px solid var(--primary-color);
        }
        
        /* ========== FAQ ========== */
        .faq-section {
            background-color: var(--light-color);
        }
        
        .faq-accordion .accordion-item {
            border: 1px solid var(--border-color);
            border-radius: 10px;
            margin-bottom: 1rem;
            overflow: hidden;
        }
        
        .faq-accordion .accordion-button {
            font-weight: 600;
            padding: 1.5rem 1.5rem;
            background-color: white;
            font-size: 1.05rem;
        }
        
        .faq-accordion .accordion-button:not(.collapsed) {
            background-color: rgba(28, 187, 140, 0.1);
            color: var(--secondary-color);
            box-shadow: none;
        }
        
        .faq-accordion .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(28, 187, 140, 0.25);
            border-color: var(--primary-color);
        }
        
        .faq-accordion .accordion-button:after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231cbb8c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }
        
        /* ========== ENHANCED FOOTER ========== */
        .footer {
            background-color: var(--secondary-color);
            color: white;
            padding: 5rem 0 0;
            position: relative;
        }
        
        .footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
        }
        
        .footer-logo {
            font-weight: 700;
            font-size: 2rem;
            color: white;
            margin-bottom: 1.5rem;
            display: inline-block;
        }
        
        .footer-logo span {
            color: var(--primary-color);
        }
        
        .footer-about p {
            color: #b0b7c3;
            margin-bottom: 1.5rem;
        }
        
        .footer-links h5 {
            color: white;
            margin-bottom: 1.8rem;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 0.8rem;
        }
        
        .footer-links h5:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--primary-color);
        }
        
        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: #b0b7c3;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }
        
        .footer-contact li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
        }
        
        .footer-contact i {
            color: var(--primary-color);
            margin-right: 1rem;
            margin-top: 0.2rem;
            font-size: 1.1rem;
        }
        
        .newsletter-form {
            margin-top: 1.5rem;
        }
        
        .newsletter-form .form-control {
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            border-radius: 30px;
            padding: 0.75rem 1.5rem;
        }
        
        .newsletter-form .form-control:focus {
            background-color: rgba(255, 255, 255, 0.15);
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(28, 187, 140, 0.25);
        }
        
        .newsletter-form .btn {
            background-color: var(--primary-color);
            color: white;
            border-radius: 30px;
            padding: 0.75rem 1.5rem;
            width: 100%;
            margin-top: 0.8rem;
            font-weight: 600;
        }
        
        .newsletter-form .btn:hover {
            background-color: var(--primary-dark);
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            margin-right: 0.8rem;
            margin-bottom: 0.8rem;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .social-icons a:hover {
            background-color: var(--primary-color);
            transform: translateY(-5px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 4rem;
            padding: 2rem 0;
            text-align: center;
            color: #b0b7c3;
            font-size: 0.9rem;
        }
        
        .footer-links-bottom a {
            color: #b0b7c3;
            text-decoration: none;
            margin: 0 0.8rem;
            transition: color 0.3s;
        }
        
        .footer-links-bottom a:hover {
            color: var(--primary-color);
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            text-decoration: none;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(28, 187, 140, 0.3);
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: var(--primary-dark);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(28, 187, 140, 0.4);
        }
        
        /* ========== RESPONSIVE ========== */
        @media (max-width: 1200px) {
            .ceo-section {
                background: white;
            }
            
            .ceo-message {
                padding-left: 0;
                margin-top: 3rem;
            }
        }
        
        @media (max-width: 992px) {
            .hero-section h1 {
                font-size: 2.8rem;
            }
            
            .section-padding {
                padding: 4rem 0;
            }
            
            .navbar-nav {
                padding: 1rem 0;
            }
            
            .nav-link {
                padding: 0.7rem 0.5rem !important;
            }
        }
        
        @media (max-width: 768px) {
            .hero-section {
                padding: 8rem 0 6rem;
            }
            
            .hero-section h1 {
                font-size: 2.2rem;
            }
            
            .header-top {
                display: none;
            }
            
            .btn-whatsapp, .btn-call, .btn-get-started {
                display: block;
                width: 100%;
                margin-bottom: 0.8rem;
            }
            
            .footer-links {
                margin-bottom: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .navbar-brand {
                font-size: 1.6rem;
            }
            
            .hero-section h1 {
                font-size: 1.8rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }
.text-primary {
	color: #1cbb8c !important;
}
.btn-primary{
	background-color: #1cbb8c;
	border-color: #1cbb8c;
	border-radius: 30px;
	padding: 0.5rem 1.8rem;
}
.btn:hover {
	background-color: #17a078;
	border-color: #17a078;
}

.btn-secondary{
	background-color: #fff;
	color: #1cbb8c;
	border: 2px solid #1cbb8c;
	border-radius: 30px;
	padding: 0.5rem 1.8rem;
}

/*Services*/
/* Hero Section */
        .services-hero {
            background: linear-gradient(135deg, rgba(42, 59, 94, 0.95) 0%, rgba(28, 187, 140, 0.85) 100%), url('https://images.unsplash.com/photo-1556761175-b413da4baf72?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 6rem 0 4rem;
            position: relative;
        }
        
        .services-hero:before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23f9fbfd' fill-opacity='1' d='M0,192L48,186.7C96,181,192,171,288,160C384,149,480,139,576,149.3C672,160,768,192,864,192C960,192,1056,160,1152,144C1248,128,1344,128,1392,128L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
            background-size: cover;
            background-position: center;
        }
        
        .services-hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        
        .breadcrumb {
            background-color: transparent;
            padding: 0;
            margin-bottom: 2rem;
        }
        
        .breadcrumb-item a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
        }
        
        .breadcrumb-item.active {
            color: var(--primary-color);
        }
        
        .breadcrumb-item+.breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.5);
        }
        
        /* Search & Filter */
        .search-filter-section {
            background-color: white;
            padding: 3rem 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            position: relative;
            z-index: 2;
        }
        
        .search-box {
            position: relative;
        }
        
        .search-box input {
            padding: 1rem 1.5rem 1rem 3.5rem;
            border-radius: 50px;
            border: 2px solid var(--border-color);
            font-size: 1rem;
            width: 100%;
            transition: all 0.3s;
        }
        
        .search-box input:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(28, 187, 140, 0.25);
        }
        
        .search-box i {
            position: absolute;
            left: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray-color);
        }
        
        .filter-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            justify-content: center;
        }
        
        .filter-btn {
            background-color: white;
            border: 2px solid var(--border-color);
            color: var(--secondary-color);
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(28, 187, 140, 0.2);
        }
        
        .filter-btn.active {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
        }
        
        /* Services Grid */
        .services-section {
            background-color: #f9fbfd;
            padding: 4rem 0 6rem;
        }
        
        .service-card {
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.4s;
            height: 100%;
            border: 1px solid var(--border-color);
            position: relative;
        }
        
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-color);
        }
        
        .service-card-header {
            padding: 2rem 2rem 1rem;
            border-bottom: 1px solid var(--light-gray);
        }
        
        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        .service-icon i {
            font-size: 1.8rem;
            color: white;
        }
        
        .service-card-body {
            padding: 1.5rem 2rem;
        }
        
        .service-card-title {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--secondary-color);
            font-weight: 600;
        }
        
        .service-description {
            color: var(--gray-color);
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        .service-card-footer {
            padding: 0 2rem 2rem;
        }
        
        .service-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        
        .btn-whatsapp-sm {
            background-color: #25D366;
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            font-size: 0.85rem;
            font-weight: 500;
            transition: all 0.3s;
            flex: 1;
            min-width: 80px;
            text-align: center;
        }
        
        .btn-whatsapp-sm:hover {
            background-color: #1da851;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(37, 211, 102, 0.3);
        }
        
        .btn-call-sm {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            font-size: 0.85rem;
            font-weight: 500;
            transition: all 0.3s;
            flex: 1;
            min-width: 80px;
            text-align: center;
        }
        
        .btn-call-sm:hover {
            background-color: var(--secondary-light);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(42, 59, 94, 0.3);
        }
        
        .btn-order-sm {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            font-size: 0.85rem;
            font-weight: 500;
            transition: all 0.3s;
            flex: 1;
            min-width: 80px;
            text-align: center;
        }
        
        .btn-order-sm:hover {
            background-color: var(--primary-dark);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(28, 187, 140, 0.3);
        }
        
        /* Service Categories */
        .service-category {
            margin-bottom: 3rem;
        }
        
        .category-title {
            position: relative;
            padding-bottom: 0.8rem;
            margin-bottom: 2rem;
            border-bottom: 2px solid var(--light-gray);
        }
        
        .category-title h2 {
            color: var(--secondary-color);
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }
        
        .category-title p {
            color: var(--gray-color);
            margin-bottom: 0;
        }
        
        /* No Results */
        .no-results {
            display: none;
            text-align: center;
            padding: 4rem 0;
        }
        
        .no-results i {
            font-size: 4rem;
            color: var(--light-gray);
            margin-bottom: 1.5rem;
        }
        
        /* Stats Banner */
        .stats-banner {
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
            color: white;
            padding: 4rem 0;
            margin-top: 4rem;
            border-radius: 15px;
            text-align: center;
        }
        
        .stat-item {
            padding: 0 1.5rem;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
            font-family: 'Playfair Display', serif;
        }
        
        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        /* CTA Section */
        .services-cta {
            background-color: white;
            padding: 5rem 0;
            text-align: center;
        }
        
        .cta-box {
            background: linear-gradient(135deg, rgba(28, 187, 140, 0.1) 0%, rgba(42, 59, 94, 0.05) 100%);
            border-radius: 20px;
            padding: 4rem;
            border: 2px dashed var(--primary-color);
        }
        
        .btn-whatsapp-lg {
            background-color: #25D366;
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            transition: all 0.3s;
            margin-right: 1rem;
            margin-bottom: 1rem;
        }
        
        .btn-whatsapp-lg:hover {
            background-color: #1da851;
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
        }
        
        .btn-call-lg {
            background-color: var(--secondary-color);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            transition: all 0.3s;
            margin-bottom: 1rem;
        }
        
        .btn-call-lg:hover {
            background-color: var(--secondary-light);
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(42, 59, 94, 0.3);
        }
        
        /* Responsive */
        @media (max-width: 1200px) {
            .services-hero h1 {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 992px) {
            .services-hero h1 {
                font-size: 2.4rem;
            }
            
            .section-padding {
                padding: 4rem 0;
            }
            
            .service-actions {
                flex-direction: column;
            }
            
            .btn-whatsapp-sm, .btn-call-sm, .btn-order-sm {
                width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .services-hero {
                padding: 4rem 0 3rem;
            }
            
            .services-hero h1 {
                font-size: 2rem;
            }
            
            .search-box input {
                padding: 0.8rem 1rem 0.8rem 3rem;
            }
            
            .filter-buttons {
                justify-content: flex-start;
            }
            
            .filter-btn {
                padding: 0.5rem 1rem;
                font-size: 0.9rem;
            }
            
            .service-card-header, .service-card-body, .service-card-footer {
                padding: 1.5rem;
            }
            
            .btn-whatsapp-lg, .btn-call-lg {
                display: block;
                width: 100%;
                margin-right: 0;
            }
            
            .cta-box {
                padding: 2.5rem 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .services-hero h1 {
                font-size: 1.8rem;
            }
            
            .category-title h2 {
                font-size: 1.5rem;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
        }