/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --rose-500: #f43f5e;
    --rose-600: #e11d48;
    --rose-50: #fff1f2;
    --pink-50: #fdf2f8;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--gray-50);
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--gray-800);
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    color: var(--rose-500);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--rose-500);
}

.language-selector {
    padding: 0.5rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    background: var(--white);
    cursor: pointer;
    margin-left: 1rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 0.25rem;
}

.mobile-menu-btn span {
    width: 1.5rem;
    height: 2px;
    background: var(--gray-800);
    transition: 0.3s;
}

/* Main Content */
main {
    margin-top: 4rem;
    min-height: calc(100vh - 4rem);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--rose-50) 0%, var(--pink-50) 100%);
    padding: 4rem 1.5rem;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.hero p {
    font-size: 1.5rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--rose-500);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background: var(--rose-600);
}

.location-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
}

/* Section Styles */
.section {
    padding: 4rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-header h3 {
    font-size: 2rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--gray-600);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: linear-gradient(135deg, var(--rose-50) 0%, var(--pink-50) 100%);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.service-price {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    align-items: baseline;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--rose-500);
}

.duration {
    color: var(--gray-600);
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--rose-500);
    font-weight: bold;
}

.extra-services {
    background: #fce7f3;
    padding: 2rem;
    border-radius: 1rem;
    margin-top: 2rem;
}

.extra-services h3 {
    text-align: center;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.extra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.extra-grid > div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.extra-grid > div::before {
    content: "✓";
    color: var(--rose-600);
    font-weight: bold;
    font-size: 1.25rem;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.about-content p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.reason-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.reason-card h4 {
    color: var(--gray-900);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.reason-card p {
    color: var(--gray-600);
    font-size: 1rem;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: linear-gradient(135deg, var(--rose-50) 0%, var(--pink-50) 100%);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.stars {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 1rem;
}

.author-name {
    font-weight: 600;
    color: var(--gray-900);
}

.author-location {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.author-pet {
    font-size: 0.875rem;
    color: var(--rose-600);
    margin-top: 0.25rem;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.contact-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-info h3 {
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--rose-500);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-details h4 {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--gray-600);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rose-500);
    box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.1);
}

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

.required {
    color: var(--rose-500);
}

.form-success {
    text-align: center;
    padding: 3rem;
}

.success-icon {
    width: 4rem;
    height: 4rem;
    color: #10b981;
    margin: 0 auto 1rem;
    display: block;
}

.form-success h3 {
    color: var(--gray-900);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 2rem 1.5rem;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: bold;
}

.footer-brand svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--rose-500);
}

.footer-text {
    color: #9ca3af;
    margin: 0.5rem 0;
}

/* Loading Spinner */
.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--gray-100);
    border-top-color: var(--rose-500);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 4rem;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        transition: left 0.3s;
        gap: 1rem;
        align-items: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.125rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

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

    .language-selector {
        margin-left: 0;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section {
        padding: 2rem 1rem;
    }

    .service-card,
    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Print Styles */
@media print {
    #navbar,
    #footer,
    .contact-form {
        display: none;
    }
}