.social-btns {
    display: flex;
    gap: 1rem;
    margin: 0.7rem 0 1.2rem 0;
    flex-wrap: wrap;
}
.social-btn {
    background: #fffaf5;
    color: #ea580c;
    border: 1.5px solid #ea580c;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.55rem 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 6px 18px rgba(234,88,12,0.08);
    transition: background 0.14s, color 0.14s, box-shadow 0.14s, border-color 0.14s;
    text-decoration: none;
    outline: none;
}
.social-btn svg {
    margin-right: 0.4em;
    flex-shrink: 0;
}
.social-btn.instagram:hover {
    background: linear-gradient(90deg,#f97316,#ea580c 80%);
    color: #fff;
    border-color: #ea580c;
}
.social-btn.viber:hover {
    background: #e0e7ff;
    color: #4b2992;
    border-color: #4b2992;
}
.social-btn.telegram:hover {
    background: #e0f2fe;
    color: #229ed9;
    border-color: #229ed9;
}
.contact-form-card .social-links {
    border: 2px solid transparent;
    border-radius: 14px;
    transition: border-color 0.18s, box-shadow 0.18s;
    box-shadow: 0 6px 24px rgba(234,88,12,0.06);
    padding: 1.1rem 1.2rem 0.7rem 1.2rem;
    margin-bottom: 1.2rem;
}
.contact-form-card .social-links:hover, .contact-form-card .social-links:focus-within {
    border-color: #ea580c;
    box-shadow: 0 8px 32px rgba(234,88,12,0.13);
}
* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    margin: 0;
}

html {
    overscroll-behavior-y: none;
    overflow: hidden;
}

body {
    overflow-y: auto;
    overscroll-behavior-y: none;
    -webkit-overflow-scrolling: auto;
    font-family: 'Rubik', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #1a1b1f;
    background-image:
        radial-gradient(circle at top left, rgba(255, 247, 237, 0.96) 0, rgba(255, 251, 235, 0.96) 40%, rgba(255, 255, 255, 0.98) 100%),
        url("photos/lapki_wallper.png");
    background-repeat: no-repeat, repeat;
    background-position: top left, center;
    background-size: auto, 420px auto;
    background-attachment: scroll, fixed;
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

main {
    padding-bottom: 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(234, 88, 12, 0.12);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0.5rem;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-left: -5px;
}

.logo-mark {
    width: 50px;
    height: 50px;
    border-radius: 999px;
    object-fit: cover;
    background-color: #ffffff;
    background-image: url("logo.png");
    background-size: 120%;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow:
        0 0 0 2px rgba(248, 250, 252, 0.9),
        0 0 0 6px rgba(248, 153, 72, 0.45),
        0 10px 20px rgba(15, 23, 42, 0.38);
    flex-shrink: 0;
    transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: "Baloo 2", "Rubik", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: none;
    font-size: 1.26rem;
    background: linear-gradient(135deg, #f97316, #ea580c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 14px rgba(248, 153, 72, 0.5);
    transition: letter-spacing 0.18s ease-out, text-shadow 0.18s ease-out, transform 0.18s ease-out;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: #64748b;
}

.logo:hover .logo-title {
    letter-spacing: 0.09em;
    transform: translateY(-0.5px);
    text-shadow: 0 0 16px rgba(248, 153, 72, 0.7);
}

.logo:hover .logo-mark {
    transform: translateY(-1px) scale(1.04) rotate(-3deg);
    box-shadow:
        0 0 0 2px rgba(248, 250, 252, 0.95),
        0 0 0 8px rgba(248, 153, 72, 0.6),
        0 14px 26px rgba(15, 23, 42, 0.45);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0;
    padding: 0.25rem 0.4rem;
    border-radius: 999px;
    background: radial-gradient(circle at top, rgba(255,255,255,0.97), rgba(248,250,252,0.92));
    box-shadow:
        0 0 0 1px rgba(248, 250, 252, 0.9),
        0 0 18px rgba(248, 153, 72, 0.45),
        0 10px 26px rgba(15, 23, 42, 0.22);
    border: 1px solid rgba(248, 153, 72, 0.6);
}

.nav-link {
    position: relative;
    font-size: 0.95rem;
    text-decoration: none;
    color: #334155;
    font-weight: 500;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    transition: color 0.18s ease-out, background 0.18s ease-out, box-shadow 0.18s ease-out, transform 0.18s ease-out;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 14px;
    bottom: 0.2rem;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ea580c, #f97316);
    transition: width 0.22s ease-out;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.98);
    color: #0f172a;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
    transform: translateY(-1px);
}

.nav-link.active {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fffbeb;
    box-shadow: 0 14px 30px rgba(234, 88, 12, 0.45);
}

.nav-link.active::after {
    background: rgba(255, 255, 255, 0.85);
}

.nav-toggle {
    display: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: #ffffff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #0f172a;
}

.hero {
    padding: 1.4rem 0 0.7rem;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
    gap: 2.75rem;
    align-items: center;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    background: rgba(248, 153, 72, 0.08);
    color: #c2410c;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.hero-label::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #fb923c;
    box-shadow: 0 0 0 6px rgba(248, 153, 72, 0.3);
}

.hero h1 {
    margin: 0.9rem 0 0.5rem;
    font-size: clamp(2rem, 2.8vw + 1rem, 2.8rem);
    line-height: 1.1;
}

.hero-text {
    margin: 0 0 1.5rem;
    color: #4b5563;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.8rem;
}

.hero-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.75rem;
    font-size: 0.85rem;
}

.hero-info-number {
    display: block;
    font-weight: 700;
    font-size: 1.4rem;
}

.hero-info-label {
    display: block;
    color: #6b7280;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-card {
    position: relative;
    min-height: 260px;
    border-radius: 28px;
    padding: 1.8rem 1.6rem;
    background: radial-gradient(circle at top left, #ffedd5 0, #fef3c7 35%, #fff7ed 100%);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(234, 88, 12, 0.32);
}

.hero-circle {
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(248, 171, 80, 0.4);
}

.hero-circle-lg {
    width: 240px;
    height: 240px;
    right: -40px;
    top: -60px;
    animation: circle-float 14s ease-in-out infinite alternate;
}

.hero-circle-sm {
    width: 110px;
    height: 110px;
    left: -40px;
    bottom: -40px;
    animation: circle-float 18s ease-in-out infinite alternate;
}

.hero-photo {
    position: relative;
    width: 100%;
    height: 190px;
    border-radius: 22px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    background-image:
        radial-gradient(circle at 20% 20%, rgba(248, 250, 252, 0.25), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(248, 250, 252, 0.25), transparent 55%);
    box-shadow: 0 18px 35px rgba(234, 88, 12, 0.45);
    transform-origin: center;
    overflow: visible;
}

.hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.06), transparent 10%), radial-gradient(circle at 80% 80%, rgba(0,0,0,0.03), transparent 12%);
    border-radius: 22px;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.hero-cat {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: auto;
    pointer-events: auto;
    z-index: 3;
    filter:
        drop-shadow(0 10px 18px rgba(15, 23, 42, 0.35))
        drop-shadow(0 0 10px rgba(249, 115, 22, 0.8));
    transition: filter 0.18s ease-out, transform 0.18s ease-out;
}

.hero-cat:hover {
    filter:
        drop-shadow(0 10px 18px rgba(15, 23, 42, 0.45))
        drop-shadow(0 0 14px rgba(34, 197, 94, 0.9));
    transform: translateX(-50%) translateY(-4px) scale(1.08);
}

@media (max-width: 720px) {
    .hero-cat {
        top: -50px;
        width: 150px;
    }
}

.hero-badge {
    position: absolute;
    left: 1.6rem;
    bottom: 1.6rem;
    padding: 0.7rem 0.9rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 25px rgba(15, 23, 42, 0.2);
    max-width: 220px;
    animation: hero-glow 6s ease-in-out infinite alternate;
}

.hero-badge-title {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-badge-text {
    display: block;
    font-size: 0.8rem;
    color: #6b7280;
}

.running-dog {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -29px;
    height: 80px;
    pointer-events: none;
    overflow: visible;
}

.running-dog-image {
    position: absolute;
    left: -120px;
    bottom: 0;
    width: 88px;
    height: auto;
    image-rendering: pixelated;
    filter:
        drop-shadow(0 10px 18px rgba(15, 23, 42, 0.35))
        drop-shadow(0 0 10px rgba(249, 115, 22, 0.8));
    pointer-events: auto;
    transition: filter 0.18s ease-out, transform 0.18s ease-out;
    z-index: 11;
    animation: dog-run 10s linear infinite;
}

.running-dog-image:hover {
    filter:
        drop-shadow(0 10px 18px rgba(15, 23, 42, 0.35))
        drop-shadow(0 0 12px rgba(34, 197, 94, 0.95));
    transform: translateY(-3px) scale(1.18) rotate(-4deg);
}

@keyframes dog-run {
    0%   { left: -120px; }
    100% { left: calc(100vw + 120px); }
}

@media (max-width: 640px) {
    .running-dog {
        height: 72px;
        bottom: -23px;
    }
    .running-dog-image {
        width: 72px;
        left: -80px;
        animation-duration: 4s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .running-dog-image {
        animation: none;
    }
}

.section {
    padding: 2.75rem 0;
}
.page-about .page-hero {
    padding: 2rem 0 1.4rem;
}

.page-about .section {
    padding: 2.1rem 0;
}

.page-about .jetvet-badge {
    margin-top: 1.6rem;
}

.page-about .section-values {
    padding-top: 1.1rem;
    padding-bottom: 0.9rem;
}

.page-about .section-mission {
    padding-bottom: 0.9rem;
}

.page-services .section {
    padding-top: 1.4rem;
}.section-accent {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fffbeb;
}

.section-title {
    margin: 0 0 0.6rem;
    font-size: 1.6rem;
}

.section-subtitle {
    margin: 0 0 2rem;
    color: #6b7280;
}

.contact-form-card .form-intro {
    display: inline-block;
    padding: 0.5rem 0.9rem;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(250, 240, 230, 0.8), rgba(255,255,255,0.6));
    border-left: 4px solid #ea580c;
    box-shadow: 0 8px 20px rgba(15,23,42,0.05);
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 1rem;
}
.contact-form-card .form-intro span {
    display: inline-block;
    transform: translateY(-1px);
}

@media (max-width:880px) {
    .contact-form-card .form-intro { width: 100%; }
}

.page-hero {
    padding: 2.4rem 0 1.8rem;
}

.page-hero h1 {
    margin: 0 0 0.4rem;
}

.page-hero-text {
    margin: 0;
    color: #6b7280;
}

.about-cats {
    position: absolute;
    left: -230px;
    bottom: -21px;
    width: 180px;
    height: auto;
    pointer-events: auto;
    z-index: 1;
    filter:
        drop-shadow(0 10px 18px rgba(15, 23, 42, 0.25))
        drop-shadow(0 0 10px rgba(249, 115, 22, 0.6));
    transition: transform 0.18s ease-out, filter 0.18s ease-out;
}

.page-hero .container {
    position: relative;
}

.about-cats:hover {
    transform: translateY(-4px) scale(1.03);
    filter:
        drop-shadow(0 12px 20px rgba(15, 23, 42, 0.28))
        drop-shadow(0 0 14px rgba(34, 197, 94, 0.9));
}

.services-cats {
    position: absolute;
    right: -220px;
    bottom: -45px;
    width: 240px;
    height: auto;
    pointer-events: auto;
    z-index: 1;
    filter:
        drop-shadow(0 10px 18px rgba(15, 23, 42, 0.25))
        drop-shadow(0 0 10px rgba(249, 115, 22, 0.6));
    transition: transform 0.18s ease-out, filter 0.18s ease-out;
}

.services-cats:hover {
    transform: translateY(-4px) scale(1.03);
    filter:
        drop-shadow(0 12px 20px rgba(15, 23, 42, 0.28))
        drop-shadow(0 0 14px rgba(34, 197, 94, 0.9));
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-greeting {
    margin: 0 0 1.2rem;
    font-size: 0.9rem;
    color: #ea580c;
}

.grid {
    display: grid;
    gap: 1.6rem;
}

.grid-2 {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.service-card,
.about-card {
    position: relative;
    background: radial-gradient(circle at top left, #fff7ed, #ffffff);
    border-radius: 18px;
    padding: 1.3rem 1.4rem;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(248, 153, 72, 0.12);
    overflow: hidden;
    transition: transform 0.22s ease-out, box-shadow 0.22s ease-out, border-color 0.22s ease-out;
}

.feature-card::before,
.service-card::before,
.about-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at top center, rgba(249, 115, 22, 0.12), transparent 60%);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.25s ease-out, transform 0.25s ease-out;
}

.feature-card:hover,
.feature-card:focus-within,
.service-card:hover,
.service-card:focus-within,
.about-card:hover,
.about-card:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 26px 48px rgba(15, 23, 42, 0.12);
    border-color: rgba(234, 88, 12, 0.45);
}

.feature-card:hover::before,
.feature-card:focus-within::before,
.service-card:hover::before,
.service-card:focus-within::before,
.about-card:hover::before,
.about-card:focus-within::before {
    opacity: 1;
    transform: translateY(0);
}

.feature-card h3,
.service-card h2,
.about-card h3 {
    margin-top: 0;
    margin-bottom: 0.4rem;
}

.service-card ul,
.about-card ul {
    margin: 0.6rem 0 0;
    padding-left: 1.1rem;
    color: #4b5563;
}

.about-list li span {
    font-weight: 600;
}

.cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.jetvet-badge {
    position: relative;
    margin: 0.6rem 0 0;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.48rem 1.15rem;
    border-radius: 999px;
    background: linear-gradient(120deg, rgba(34, 197, 94, 0.14), rgba(16, 185, 129, 0.12) 45%, rgba(240, 253, 244, 0.92));
    border: 1px solid rgba(34, 197, 94, 0.42);
    color: #14532d;
    font-size: 0.82rem;
    font-weight: 650;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow:
        0 12px 28px rgba(16, 185, 129, 0.22),
        0 0 0 4px rgba(16, 185, 129, 0.08);
    backdrop-filter: blur(8px);
    overflow: hidden;
    transition: transform 0.14s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out;
}

.jetvet-badge::before {
    content: "";
    position: absolute;
    inset: -30%;
    background:
        radial-gradient(circle at 18% 25%, rgba(134, 239, 172, 0.55), transparent 55%),
        radial-gradient(circle at 78% 35%, rgba(74, 222, 128, 0.45), transparent 60%);
    opacity: 0.75;
    pointer-events: none;
    filter: blur(10px);
}

.jetvet-badge:hover,
.jetvet-badge:focus-within {
    transform: translateY(-1px);
    border-color: rgba(22, 163, 74, 0.7);
    box-shadow:
        0 16px 34px rgba(22, 163, 74, 0.28),
        0 0 0 5px rgba(16, 185, 129, 0.12);
}

.jetvet-badge-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% 50%, #bbf7d0 60%, #22c55e 100%);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow:
        0 10px 20px rgba(16, 185, 129, 0.28),
        0 0 0 2px rgba(240, 253, 244, 0.9);
    transition: box-shadow 0.18s, background 0.18s;
}

.jetvet-badge-text {
    font-weight: 600;
}

.service-notice {
    margin: 1.1rem auto 1.8rem;
    padding: 1rem 1.8rem;
    border-radius: 999px;
    background: radial-gradient(circle at 0% 0%, #fffbeb, #fed7aa);
    border: 1px solid rgba(248, 153, 72, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.9rem;
    font-size: 0.9rem;
    color: #7c2d12;
    box-shadow: 0 10px 24px rgba(249, 115, 22, 0.25);
    width: 100%;
    max-width: 900px;
    text-align: center;
    transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out, background 0.18s ease-out;
}

.page-services .service-notice {
    margin-top: 0.4rem;
}

.service-notice-badge {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0, #fed7aa, #f97316);
    color: #fffbeb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 8px 18px rgba(234, 88, 12, 0.45);
}

.service-notice a {
    color: #b45309;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.service-notice:hover,
.service-notice:focus-within {
    transform: translateY(-2px);
    border-color: rgba(34, 197, 94, 0.85);
    box-shadow: 0 18px 38px rgba(22, 163, 74, 0.35);
    background: radial-gradient(circle at 0% 0%, #f0fdf4, #bbf7d0);
}

.service-notice:hover .service-notice-badge,
.service-notice:focus-within .service-notice-badge {
    background: radial-gradient(circle at 30% 0, #bbf7d0, #22c55e);
}

.social-links {
    margin-bottom: 1.2rem;
    padding: 1.1rem 1.4rem 1.1rem 1.4rem;
    border-radius: 18px;
    background: linear-gradient(120deg, #fff7ed 80%, #fef3c7 100%);
    border: 1.5px solid #fcd34d;
    box-shadow: 0 8px 28px rgba(234,88,12,0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 1.04rem;
    color: #b45309;
    transition: box-shadow 0.18s, border-color 0.18s;
}

.social-links:hover,
.social-links:focus-within {
    box-shadow: 0 14px 36px rgba(34,197,94,0.18);
    border-color: #22c55e;
}

.social-links p {
    margin: 0 0 0.3rem 0;
    font-size: 1.01rem;
    color: #b45309;
    font-weight: 600;
}

.social-links ul {
    margin: 0;
    padding-left: 0.2rem;
    font-size: 1.01rem;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.social-links a {
    color: #ea580c;
    font-weight: 600;
    text-decoration: none;
    border-radius: 7px;
    padding: 0.13em 0.4em;
    transition: background 0.14s, color 0.14s;
}
.social-links a:hover,
.social-links a:focus {
    background: #fef3c7;
    color: #b45309;
}

.cta-text p {
    margin: 0.2rem 0;
}

.cta-phone a {
    color: #fffbeb;
    font-weight: 600;
    text-decoration: none;
}

.contact-grid {
    align-items: stretch;
    gap: 2rem;
}

.contact-note {
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    background: rgba(249, 115, 22, 0.06);
    border: 1px dashed rgba(249, 115, 22, 0.4);
    font-size: 0.9rem;
    color: #c2410c;
}

.contact-card {
    background: linear-gradient(180deg, #ffffff, #fffaf5);
    border-radius: 16px;
    padding: 1.6rem;
    box-shadow: 0 16px 36px rgba(15,23,42,0.06);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    position: relative;
}

.contact-form-card {
    background: linear-gradient(180deg, #ffffff, #fffaf5);
    border-radius: 16px;
    padding: 1.6rem;
    box-shadow: 0 16px 36px rgba(15,23,42,0.06);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.contact-grid > * {
    display: flex;
    flex-direction: column;
}

.contact-form { display: flex; flex-direction: column; gap: 0.9rem; }
.contact-form .form-row { margin-bottom: 0; }
.contact-form button { align-self: flex-start; }

.map-wrapper { border-radius: 12px; overflow: hidden; }
.contact-map iframe { display: block; }
.contact-map-caption .btn { margin-right: 0.6rem; }
.emergency-banner { justify-content: space-between; }
.contact-card .section-title, .contact-form-card .section-title { margin-top: 0; }

.icon { flex: 0 0 auto; margin-right: 0.5rem; vertical-align: middle; }
.contact-line { display: inline-flex; align-items: center; gap: 0.6rem; }

.emergency-banner {
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(250, 210, 180, 0.9), rgba(255,243,236,0.9));
    border-left: 4px solid #ea580c;
    color: #92400e;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.emergency-phone a { color: #92400e; font-weight:700; text-decoration: none; }

.contact-map-caption { margin-top: 0.8rem; }

@media (max-width: 720px) {
    .map-wrapper { padding-top: 62%; }
}

.contact-details p {
    display: block;
    margin: 0.25rem 0;
    color: #334155;
}

.schedule-line {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.schedule-line strong {
    margin-right: 0.15rem;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0.15rem 0;
}
.contact-info { display: inline-flex; align-items: center; gap: 0.6rem; }
.contact-info a { color: #0f172a; text-decoration: none; font-size: 1rem; }
.call-btn { box-shadow: 0 10px 28px rgba(234,88,12,0.12); }
.contact-line a { color: #0f172a; text-decoration: none; }
.contact-line .btn { margin-left: 0.6rem; }

.contact-map-caption p {
    margin: 0;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.3;
}
.contact-map-caption { padding-top: 0.6rem; }

.contact-map {
    margin-top: 1rem;
    position: relative;
    padding-bottom: 0;
}

.map-wrapper {
    position: relative;
    width: 100%;
    padding-top: 46%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(15,23,42,0.08);
}

.map-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-map-caption {
    position: static;
    display: flex;
    gap: 0.8rem;
    align-items: center;
    justify-content: flex-start;
    background: rgba(255,255,255,0.98);
    padding: 0.75rem;
    border-radius: 6px;
    box-shadow: 0 10px 20px rgba(15,23,42,0.06);
    margin-top: 0.9rem;
}

.contact-map-caption p {
    margin: 0;
    color: #475569;
}

.btn.small {
    padding: 0.35rem 0.6rem;
    font-size: 0.85rem;
}

.contact-map-caption .btn {
    padding: 0.6rem 1rem;
    border-radius: 6px;
    min-width: 140px;
    text-align: center;
}
.contact-map-caption .btn.btn-outline { border-radius: 6px; }
.contact-map-caption .btn.btn-light { border-radius: 6px; }

@media (max-width: 880px) {
    .grid-2 { grid-template-columns: 1fr; }
    .contact-card { margin-bottom: 1.2rem; }
    .contact-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    .contact-map-caption { display: flex; flex-direction: column; gap: 0.6rem; }
}

.contact-card { padding-bottom: 0.6rem; }
.lead { color: #0f172a; font-weight: 600; margin-bottom: 0.6rem; }
.contact-details p { display: flex; align-items: center; gap: 0.6rem; }

.contact-cat {
    position: absolute;
    left: -104px;
    top: 65px;
    width: 120px;
    height: auto;
    pointer-events: auto;
    z-index: 2;
    filter:
        drop-shadow(0 10px 18px rgba(15, 23, 42, 0.35))
        drop-shadow(0 0 10px rgba(249, 115, 22, 0.8));
    transition: filter 0.18s ease-out, transform 0.18s ease-out;
}

.contact-cat:hover {
    filter:
        drop-shadow(0 10px 18px rgba(15, 23, 42, 0.45))
        drop-shadow(0 0 14px rgba(34, 197, 94, 0.9));
    transform: translateY(-4px) scale(1.08);
}

.page-hero { background: linear-gradient(180deg, #fffaf5, #ffffff); border-bottom: 1px solid rgba(234,88,12,0.04); }
.page-hero .container { padding: 1.4rem 1.5rem; }
.page-hero h1 { font-size: 1.6rem; margin-bottom: 0.4rem; }

.contact-form {
    margin-top: 0.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 0.9rem;
}

.form-field label {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

input,
textarea,
select {
    font: inherit;
    padding: 0.55rem 0.65rem;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.9);
    background: rgba(255, 255, 255, 0.95);
    outline: none;
    transition: border-color 0.16s ease-out, box-shadow 0.16s ease-out, background 0.16s ease-out;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #ea580c;
    box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.25);
    background: #ffffff;
}

.form-hint {
    margin-top: 0.4rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.form-messages { margin-top: 0.6rem; }

.form-success,
.form-error { padding: 0.6rem 0.9rem; border-radius: 10px; font-weight: 600; }

.form-success { background: linear-gradient(90deg, #ecfdf5, #bbf7d0); color: #166534; border: 1px solid rgba(34, 197, 94, 0.12); }

.form-error { background: linear-gradient(90deg, #fff1f2, #fecaca); color: #7f1d1d; border: 1px solid rgba(239, 68, 68, 0.08); }

.form-actions { display: flex; gap: 0.6rem; margin-top: 0.8rem; }

.form-actions .btn { padding: 0.55rem 1.05rem; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background 0.12s ease-out, color 0.12s ease-out;
}

.btn-primary {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fffbeb;
    box-shadow: 0 12px 24px rgba(234, 88, 12, 0.4);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(234, 88, 12, 0.5);
}

.btn-outline {
    border-color: rgba(148, 163, 184, 0.9);
    background: rgba(255, 255, 255, 0.8);
    color: #0f172a;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #0f172a, #0b1220);
    color: #fff;
}

.btn-light {
    background: #fffbeb;
    color: #ea580c;
}

.btn-light:hover {
    background: #e0f2fe;
}

.reviews-cta {
    padding: 0.6rem 0 0.9rem;
}
.reviews-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    max-width: 980px;
    margin: 0 auto;
    padding: 1.05rem 1.25rem;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(15,23,42,0.07);
    border: 1px solid rgba(15,23,42,0.04);
}
.reviews-cta-card::after {
    content: "";
    position: absolute;
    pointer-events: none;
}
.reviews-cta-content {
    flex: 1 1 auto;
    min-width: 0;
}
.reviews-cta-card h3 {
    margin: 0 0 0.15rem 0;
    font-size: 1.35rem;
    line-height: 1.05;
    color: #0f172a;
}
.reviews-cta-subtitle {
    margin: 0 0 0.45rem 0;
    color: #6b7280;
    font-size: 1rem;
}
.reviews-cta-note {
    margin: 0;
    color: #374151;
    font-size: 0.99rem;
}
.reviews-cta-actions {
    flex: 0 0 auto;
    margin-left: 1rem;
}
.reviews-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1rem;
    border-width: 1.2px;
    transition: transform 0.12s ease-out, box-shadow 0.12s ease-out;
}
.reviews-cta-btn:hover,
.reviews-cta-btn:focus {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(234,88,12,0.18);
}
.reviews-cta-btn .reviews-icon {
    flex-shrink: 0;
}

.section.reviews-section .section-title {
    margin-top: 0;
}

.section.reviews-section {
    padding-top: 0.4rem;
}

.page-home .section.reviews-section {
    padding-bottom: 0.9rem;
}

.page-home .section-reviews-cta {
    padding-top: 0.5rem;
    padding-bottom: 0.7rem;
}

.page-home .section-divider {
    margin-top: -14px;
}

.page-home .section.section-accent {
    padding-top: 0.9rem;
    padding-bottom: 1.1rem;
}

.section-divider {
    width: 100%;
    line-height: 0;
    margin-top: -4px;
}
.section-divider svg {
    display: block;
    width: 100%;
    height: 48px;
}

.reviews-cta-card {
    position: relative;
}
.reviews-cta-card::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(234,88,12,0.06), rgba(249,115,22,0.03));
    z-index: 0;
    filter: blur(10px);
    opacity: 0.9;
}
.reviews-cta-card > * { z-index: 1; }

@keyframes circle-float {
    0%   { transform: translateY(0) scale(1); opacity: 0.9; }
    50%  { transform: translateY(-6px) scale(1.02); opacity: 1; }
    100% { transform: translateY(2px) scale(1); opacity: 0.9; }
}

@keyframes hero-glow {
    0%   { box-shadow: 0 10px 20px rgba(15,23,42,0.16); transform: translateY(0); }
    50%  { box-shadow: 0 16px 32px rgba(234,88,12,0.26); transform: translateY(-2px); }
    100% { box-shadow: 0 12px 24px rgba(15,23,42,0.2); transform: translateY(-1px); }
}
@media (max-width: 720px) {
    .reviews-cta-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.9rem 0.9rem;
    }
    .reviews-cta-actions {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        margin-top: 0.75rem;
    }
    .reviews-cta-btn {
        width: auto;
    }
}

.site-footer {
    background: linear-gradient(180deg, #0b1220, #0f172a);
    color: #e5e7eb;
    border-top: none;
    position: relative;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: -10px -20px 0;
    background: radial-gradient(circle at top center, rgba(248, 153, 72, 0.22), transparent 65%);
    opacity: 0.6;
    mix-blend-mode: soft-light;
    pointer-events: none;
    animation: footer-glow 10s ease-in-out infinite alternate;
}

.footer-inner {
    padding: 1.6rem 0.5rem 2rem;
    text-align: center;
    font-size: 0.9rem;
}

.footer-note {
    margin: 0.2rem 0 0;
    color: #9ca3af;
}

@media (max-width: 720px) {
    .hero-badge { left: 0.8rem; bottom: 1.1rem; padding: 0.55rem; }
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-image-card {
        order: -1;
    }

    .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .section {
        padding: 2.1rem 0;
    }

    .hero {
        padding: 2.3rem 0 2.2rem;
    }

    .hero-inner {
        gap: 2rem;
    }

    .header-inner {
        padding-inline: 0;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-list {
        position: absolute;
        right: 1.5rem;
        top: 3.3rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
        padding: 0.7rem 0.9rem;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-6px);
        transition: opacity 0.16s ease-out, transform 0.16s ease-out;
    }

    .nav-list.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .grid-2,
    .grid-3,
    .form-row {
        grid-template-columns: minmax(0, 1fr);
        display: grid;
    }

    .cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-cats,
    .services-cats,
    .contact-cat {
        transform: scale(0.8);
        opacity: 0.95;
    }
}

@media (max-width: 520px) {
    .hero {
        padding-top: 2.5rem;
        padding-bottom: 0.25rem;
    }

    .hero-image-card {
        padding: 1.4rem 1.2rem;
    }

    .hero-photo {
        height: 170px;
    }

    .grid-3 {
        grid-template-columns: minmax(0, 1fr);
    }

    .about-cats,
    .services-cats,
    .contact-cat {
        display: none;
    }

    .section.reviews-section {
        padding-top: 1.1rem;
    }

    .hero h1 {
        font-size: 1.7rem;
        line-height: 1.15;
    }

    .hero-text {
        font-size: 0.95rem;
    }

    .section-title,
    .page-hero h1 {
        font-size: 1.35rem;
    }

    .container {
        padding: 0 1.1rem;
    }

    .feature-card,
    .service-card,
    .about-card,
    .contact-card,
    .contact-form-card {
        padding: 1.2rem 1.1rem;
        border-radius: 16px;
    }

    .btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .jetvet-badge {
        width: 100%;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
        flex-wrap: wrap;
        row-gap: 0.4rem;
    }

    .service-notice {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-info {
        margin-top: 1.1rem;
        margin-bottom: 0.8rem;
        padding: 0.85rem 0.9rem;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
        gap: 0.9rem;
        justify-content: space-around;
        flex-wrap: nowrap;
        text-align: center;
    }

    .hero-info-number {
        font-size: 1.1rem;
    }

    .hero-info-label {
        font-size: 0.78rem;
    }

    .hero-info > div {
        flex: 1 1 0;
        min-width: 0;
    }

    .hero-image-card {
        margin-top: 0.55rem;
        min-height: 220px;
        padding: 1.4rem 1.2rem;
    }

    .hero-cat {
        top: -43px;
        width: 150px;
    }

    .contact-details p {
        display: block;
        align-items: flex-start;
        gap: 0;
        margin: 0.2rem 0;
    }

    .contact-details p strong {
        display: block;
        margin-bottom: 0.1rem;
    }

    .schedule-line {
        display: flex;
        flex-direction: row;
        align-items: baseline;
        gap: 0.25rem;
    }

    .schedule-line strong {
        display: inline;
        margin-bottom: 0;
    }

    .emergency-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 880px) {
    .contact-map { padding-bottom: 0; }
    .contact-map-caption {
        position: static;
        background: transparent;
        box-shadow: none;
        padding: 0;
        margin-top: 0.8rem;
        gap: 0.6rem;
    }
}

@keyframes footer-glow {
    0%   { opacity: 0.35; }
    50%  { opacity: 0.75; }
    100% { opacity: 0.5; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-circle-lg,
    .hero-circle-sm,
    .hero-badge,
    .site-footer::before,
    .logo-mark,
    .logo-title {
        animation: none !important;
        transform: none !important;
    }
}