
        :root {
            --primary-color: #8B5CF6;
            --primary-dark: #7C3AED;
            --secondary-color: #F59E0B;
            --accent-color: #10B981;
            --light-bg: #F8F7FF;
            --dark-text: #1F2937;
            --light-text: #6B7280;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-text);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 4px;
        }
        
        /* Navigation */
        .navbar {
            background: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            padding: 0.5rem 0;
            box-shadow: 0 4px 30px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color) !important;
        }
        
        .navbar-brand i {
            color: var(--secondary-color);
            margin-right: 0.5rem;
        }
        
        .nav-link {
            font-weight: 500;
            color: var(--dark-text) !important;
            margin: 0 0.5rem;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }
        
        .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .btn-primary-custom {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            border: none;
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
        }
        
        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
            color: white;
        }
        
        .btn-primary-custom:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }
        
        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            background: linear-gradient(135deg, var(--light-bg) 0%, #E0E7FF 50%, #F3E8FF 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 150%;
            background: radial-gradient(ellipse, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
            animation: float 8s ease-in-out infinite;
        }
        
        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 60%;
            height: 100%;
            background: radial-gradient(ellipse, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
            animation: float 10s ease-in-out infinite reverse;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(2deg); }
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--dark-text), var(--primary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--light-text);
            margin-bottom: 2rem;
            line-height: 1.8;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            background: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            color: var(--primary-color);
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            margin-bottom: 1.5rem;
        }
        
        .hero-badge i {
            color: var(--secondary-color);
            margin-right: 0.5rem;
        }
        
        .hero-image-container {
            position: relative;
            z-index: 2;
        }
        
        .hero-image {
            border-radius: 30px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
            transition: transform 0.5s ease;
        }
        
        .hero-image:hover {
            transform: scale(1.02);
        }
        
        .floating-card {
            position: absolute;
            background: white;
            padding: 1rem 1.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            animation: floatCard 4s ease-in-out infinite;
        }
        
        .floating-card.card-1 {
            top: 10%;
            left: -10%;
            animation-delay: 0s;
        }
        
        .floating-card.card-2 {
            bottom: 15%;
            right: -5%;
            animation-delay: 2s;
        }
        
        @keyframes floatCard {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }
        
        .floating-card i {
            font-size: 2rem;
            color: var(--primary-color);
        }
        
        .floating-card span {
            display: block;
            font-size: 0.85rem;
            color: var(--light-text);
            margin-top: 0.25rem;
        }
        
        /* Services Section */
        .services-section {
            padding: 6rem 0;
            background: white;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark-text);
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--light-text);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .service-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.4s ease;
            border: 1px solid rgba(139, 92, 246, 0.1);
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(139, 92, 246, 0.15);
            border-color: rgba(139, 92, 246, 0.3);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--light-bg), #E0E7FF);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            transition: all 0.3s ease;
        }
        
        .service-card:hover .service-icon {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        }
        
        .service-icon i {
            font-size: 2rem;
            color: var(--primary-color);
            transition: color 0.3s ease;
        }
        
        .service-card:hover .service-icon i {
            color: white;
        }
        
        .service-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--dark-text);
        }
        
        .service-description {
            color: var(--light-text);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }
        
        .service-price {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-color);
        }
		
		#back-to-top {
        position: fixed;
        bottom: 65px;
        right: 10px;
        display: none;
		width: 51px; 
        height: 51px; 		
        z-index: 99;
        border: none;
        cursor: pointer;
    }
        
        /* About Section */
        .about-section {
            padding: 6rem 0;
            background: var(--light-bg);
        }
        
        .about-image {
            border-radius: 25px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }
        
        .about-content {
            padding-left: 3rem;
        }
        
        .about-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--dark-text);
        }
        
        .about-text {
            color: var(--light-text);
            line-height: 1.9;
            margin-bottom: 1.5rem;
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
            margin-bottom: 2rem;
        }
        
        .feature-list li {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            color: var(--dark-text);
        }
        
        .feature-list li i {
            width: 30px;
            height: 30px;
            background: var(--accent-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            font-size: 0.9rem;
        }
        
        .stats-container {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            font-family: 'Playfair Display', serif;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: var(--light-text);
        }
        
        /* Gallery Section */
        .gallery-section {
            padding: 6rem 0;
            background: white;
        }
        
        .gallery-item {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            margin-bottom: 1.5rem;
        }
        
        .gallery-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(139, 92, 246, 0.9), transparent);
            display: flex;
            align-items: flex-end;
            padding: 1.5rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-info h5 {
            color: white;
            margin-bottom: 0.25rem;
        }
        
        .gallery-info p {
            color: rgba(255,255,255,0.8);
            font-size: 0.9rem;
            margin: 0;
        }
        
        /* Gallery Modal */
        .gallery-modal .modal-content {
            border-radius: 25px;
            border: none;
            overflow: hidden;
        }
        
        .gallery-modal .modal-header {
            border-bottom: none;
            padding: 1.5rem;
        }
        
        .gallery-modal .modal-body {
            padding: 0;
        }
        
        .gallery-modal .modal-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }
        
        .gallery-modal .modal-info {
            padding: 2rem;
        }
        
        .gallery-modal .pet-name {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        
        .gallery-modal .pet-breed {
            font-size: 1.1rem;
            color: var(--light-text);
            margin-bottom: 1.5rem;
        }
        
        .gallery-modal .pet-details {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .gallery-modal .detail-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .gallery-modal .detail-item i {
            width: 40px;
            height: 40px;
            background: var(--light-bg);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
        }
        
        .gallery-modal .detail-label {
            font-size: 0.85rem;
            color: var(--light-text);
        }
        
        .gallery-modal .detail-value {
            font-weight: 600;
            color: var(--dark-text);
        }
        
        .gallery-modal .pet-description {
            color: var(--light-text);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        
        .gallery-modal .service-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        
        .gallery-modal .service-tag {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
        }
        
        /* Testimonials Section */
        .testimonials-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--light-bg), #F3E8FF);
        }
        
        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            height: 100%;
        }
        
        .testimonial-rating {
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        
        .testimonial-text {
            font-style: italic;
            color: var(--dark-text);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 1rem;
        }
        
        .testimonial-name {
            font-weight: 600;
            color: var(--dark-text);
            margin-bottom: 0.25rem;
        }
        
        .testimonial-pet {
            font-size: 0.9rem;
            color: var(--light-text);
        }
        
        /* Booking Section */
        .booking-section {
            padding: 6rem 0;
            background: white;
        }
        
        .booking-form {
            background: white;
            border-radius: 25px;
            padding: 3rem;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }
        
        .form-control {
            border: 2px solid #E5E7EB;
            border-radius: 12px;
            padding: 1rem 1.25rem;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
        }
        
        .form-label {
            font-weight: 500;
            color: var(--dark-text);
            margin-bottom: 0.5rem;
        }
        
        .form-success {
            background: linear-gradient(135deg, #10B981, #059669);
            color: white;
            padding: 1.5rem;
            border-radius: 15px;
            text-align: center;
            display: none;
        }
        
        .form-success.show {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        .form-success i {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .spinner-border {
            width: 1.2rem;
            height: 1.2rem;
            margin-right: 0.5rem;
        }
        
        /* Footer */
        .footer {
            background: var(--dark-text);
            color: white;
            padding: 4rem 0 2rem;
        }
        
        .footer-brand {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
        }
        
        .footer-brand i {
            color: var(--secondary-color);
            margin-right: 0.5rem;
        }
        
        .footer-text {
            color: rgba(255,255,255,0.7);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        
        .footer-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: white;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        
        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
        }
        
        .footer-contact li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
            color: rgba(255,255,255,0.7);
        }
        
        .footer-contact i {
            margin-right: 0.75rem;
            color: var(--primary-color);
            margin-top: 0.25rem;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 3rem;
            padding-top: 2rem;
            text-align: center;
            color: rgba(255,255,255,0.5);
        }
        
        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive */
        @media (max-width: 991px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .about-content {
                padding-left: 0;
                margin-top: 3rem;
            }
            
            .floating-card {
                display: none;
            }
            
            .gallery-modal .pet-details {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .stats-container {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .booking-form {
                padding: 2rem;
            }
            
            .gallery-modal .modal-image {
                height: 250px;
            }
        }