@font-face {
  font-family: 'FuzzyBubbles';
  src: url('FuzzyBubbles-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'FuzzyBubbles';
  src: url('FuzzyBubbles-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comic Sans MS', 'Segoe UI', Tahoma, sans-serif;
    background: linear-gradient(135deg, #f5e6ff 0%, #e6ccff 100%);
    overflow-x: hidden;
}

.paw {
    position: fixed;
    opacity: 0.15;
    font-size: 40px;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.container {
    max-width: 750px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 0 50px rgba(199, 154, 252, 0.3);
    position: relative;
    z-index: 1;
}

header {
    background: linear-gradient(135deg, #c79afc, #a875d8);
    color: white;
    text-align: center;
    padding: 60px 30px 40px 30px;
    position: relative;
    overflow: hidden;
}

header h1 {
    font-family: FuzzyBubbles, sans-serif;
}

.contact-info {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    margin-top: 25px;
    font-size: 1.2em;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-info a {
    color: white;
    text-decoration: none;
    font-weight: normal;
    transition: opacity 0.3s;
}

.contact-info a:hover {
    opacity: 0.8;
}

.contact-info p {
    margin: 12px 0;
}

header::before {
    content: '🐾';
    position: absolute;
    font-size: 150px;
    opacity: 0.2;
    top: -30px;
    right: -30px;
    animation: spin 20s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

h1 {
    font-size: 2.8em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.tagline {
    font-size: 1.3em;
    font-style: italic;
}

section {
    padding: 50px 40px;
    border-bottom: 3px dashed #e6ccff;
}

section:nth-child(even) {
    background: #faf5ff;
}

section:last-child {
    border-bottom: none;
}

h2 {
    color: #c79afc;
    font-size: 2.2em;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

h2::after {
    content: '🐕';
    display: block;
    font-size: 0.6em;
    margin-top: 10px;
}

.intro-box {
    background: linear-gradient(135deg, #c79afc, #a875d8);
    color: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(199, 154, 252, 0.3);
    line-height: 1.8;
    font-size: 1.1em;
    margin-bottom: 30px;
}

.intro-box strong {
    font-size: 1.2em;
    display: block;
    margin-bottom: 15px;
}

.service-card {
    background: white;
    padding: 25px;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid #e6ccff;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(199, 154, 252, 0.4);
    border-color: #c79afc;
}

.service-card h3 {
    color: #a875d8;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.price {
    color: #00b894;
    font-size: 1.8em;
    font-weight: bold;
    margin: 15px 0;
}

.about-text {
    font-size: 1.1em;
    line-height: 1.8;
    color: #444;
    text-align: center;
    margin: 20px 0;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.feature {
    background: linear-gradient(135deg, #c79afc, #a875d8);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    flex: 1;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(199, 154, 252, 0.3);
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 10px;
}

.contact-form {
    max-width: 100%;
}

input, textarea {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: 2px solid #e6ccff;
    border-radius: 10px;
    font-size: 1em;
    font-family: inherit;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #c79afc;
}

button {
    background: linear-gradient(135deg, #c79afc, #a875d8);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.3em;
    border-radius: 30px;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(199, 154, 252, 0.5);
}

footer {
    background: #2d3436;
    color: white;
    text-align: center;
    padding: 30px;
}

footer p {
    margin: 12px 0;
    font-size: 1em;

}

.testimonial {
    background: #fff;
    padding: 25px;
    margin: 20px 0;
    border-radius: 15px;
    border-left: 5px solid #c79afc;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.testimonial-author {
    color: #a875d8;
    font-weight: bold;
    margin-top: 15px;
    font-size: 1.1em;
}

.rating {
    color: #ffd700;
    font-size: 1.5em;
}

.location-badge {
    display: inline-block;
    background: #a875d8;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 1em;
    margin: 10px 5px;
}

.highlight-box {
    background: #faf5ff;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #e6ccff;
    margin: 25px 0;
    line-height: 1.8;
}