* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Comic Sans MS", cursive, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
}

.hero {
    background: linear-gradient(135deg,
            #ff9a9e 0%,
            #fecfef 50%,
            #fecfef 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "🐕 🦴 🐾 🎾 🐕 🦴 🐾 🎾 🐕 🦴 🐾 🎾";
    position: absolute;
    top: 20px;
    left: -100px;
    font-size: 2rem;
    animation: float 20s infinite linear;
    opacity: 0.3;
}

.hero::after {
    content: "🐕‍🦺 🐾 🦮 🐕 🐾 🦮 🐕‍🦺 🐾 🦮 🐕 🐾";
    position: absolute;
    bottom: 20px;
    right: -100px;
    font-size: 1.5rem;
    animation: float-reverse 15s infinite linear;
    opacity: 0.3;
}

@keyframes float {
    0% {
        transform: translateX(-100px);
    }

    100% {
        transform: translateX(calc(100vw + 100px));
    }
}

@keyframes float-reverse {
    0% {
        transform: translateX(100px);
    }

    100% {
        transform: translateX(calc(-100vw - 100px));
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.city-selector {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.city-selector select {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
}

.city-selector select option {
    color: #2c3e50;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.cta-button {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: "🐾";
    position: absolute;
    right: -50px;
    top: 0;
    font-size: 2rem;
    animation: wiggle 2s infinite;
}

@keyframes wiggle {

    0%,
    50%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(10deg);
    }

    75% {
        transform: rotate(-10deg);
    }
}

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

.service-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.service-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #feca57;
}

.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text {
    font-size: 1.2rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.about-visual {
    text-align: center;
    font-size: 10rem;
    animation: rotate 10s infinite linear;
}

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

    100% {
        transform: rotate(360deg);
    }
}

.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #feca57;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
}

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

.submit-btn {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.form-success {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid #10b981;
    color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    display: none;
    margin-top: 2rem;
}

.form-success h3 {
    color: #10b981;
    margin-bottom: 1rem;
}

.footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 40px 0;
}

.footer-dogs {
    font-size: 2rem;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-visual {
        font-size: 6rem;
    }

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

.floating-paws {
    position: fixed;
    font-size: 1.5rem;
    opacity: 0.6;
    pointer-events: none;
    z-index: 1000;
    animation: float-up 4s infinite ease-in-out;
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}