/* =====================================================
   RANDY PETS - Premium Landing Page Styles
   Color: Naranja #FF914D | Sector: Veterinaria
   ===================================================== */

/* -------- GOOGLE FONTS -------- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* -------- CSS VARIABLES -------- */
:root {
    /* Primary Orange Scale */
    --primary-50: #FFF7F0;
    --primary-100: #FFE8D5;
    --primary-200: #FFCDA8;
    --primary-300: #FFB07B;
    --primary-400: #FFA060;
    --primary-500: #FF914D;
    /* Brand Color */
    --primary-600: #E8773A;
    --primary-700: #C85E27;
    --primary-800: #9D4519;
    --primary-900: #6B2D0D;
    --primary-rgb: 255, 145, 77;

    /* Backgrounds (dark premium) */
    --bg-primary: #0D0D0F;
    --bg-secondary: #141418;
    --bg-tertiary: #1A1A20;
    --bg-card: #1E1E26;
    --bg-glass: rgba(255, 145, 77, 0.06);

    /* Text */
    --text-primary: #FFFFFF;
    --text-secondary: #E4E4E7;
    --text-tertiary: #A1A1AA;
    --text-quaternary: #71717A;

    /* Accents */
    --success: #22C55E;
    --info: #3B82F6;
    --warning: #F59E0B;

    /* Borders */
    --border-subtle: rgba(255, 145, 77, 0.12);
    --border-light: rgba(255, 255, 255, 0.08);

    /* Spacing */
    --section-padding: 120px 0;
    --container-max: 1280px;
    --container-pad: 0 24px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-glow: 0 0 40px rgba(255, 145, 77, 0.3), 0 0 80px rgba(255, 145, 77, 0.2);
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.3);

    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Typography */
    --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

/* -------- RESET & BASE -------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    background: none;
}

/* -------- UTILITY CLASSES -------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--container-pad);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-400) 0%, var(--primary-500) 50%, var(--primary-600) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card {
    background: linear-gradient(135deg,
            rgba(var(--primary-rgb), 0.08) 0%,
            rgba(var(--primary-rgb), 0.04) 50%,
            rgba(var(--primary-rgb), 0.08) 100%);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
    transition: var(--transition-base);
}

.glass-card:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow: 0 25px 50px -12px rgba(var(--primary-rgb), 0.25),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

/* -------- BUTTONS -------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg,
            var(--primary-600) 0%,
            var(--primary-500) 30%,
            var(--primary-400) 60%,
            var(--primary-500) 100%);
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
    color: #ffffff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    box-shadow:
        0 0 0 1px rgba(var(--primary-rgb), 0.4),
        0 4px 24px rgba(var(--primary-rgb), 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: var(--transition-base);
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    filter: brightness(1.1);
    box-shadow:
        0 0 0 2px rgba(var(--primary-rgb), 0.7),
        0 8px 40px rgba(var(--primary-rgb), 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-primary.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-primary.btn-large {
    padding: 18px 36px;
    font-size: 18px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text-secondary);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    cursor: pointer;
    transition: var(--transition-base);
    white-space: nowrap;
    text-decoration: none;
}

.btn-outline:hover {
    border-color: rgba(var(--primary-rgb), 0.5);
    color: var(--primary-400);
    background: rgba(var(--primary-rgb), 0.06);
    transform: translateY(-2px);
}

.btn-outline.btn-large {
    padding: 18px 36px;
    font-size: 18px;
}

/* -------- SECTION COMMONS -------- */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-400);
    background: rgba(var(--primary-rgb), 0.1);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-tertiary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* -------- PARTICLES -------- */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, var(--primary-400), transparent);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle 20s infinite ease-in-out;
    will-change: transform, opacity;
}

/* -------- NAVBAR -------- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    /* z-index: 1000; */
    padding: 20px 0;
    transition: var(--transition-base);
    background-color: var(--bg-primary);
    /* NEW */
    display: flex;
    align-items: center;
    z-index: 10000;
    /* Un valor muy alto para ganar a las partículas */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    background: rgba(13, 13, 15, 0.85);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    padding: 14px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 44px;
    width: 44px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    filter: drop-shadow(0 0 8px rgba(var(--primary-rgb), 0.4));
}

.logo-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-tertiary);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--primary-500);
    border-radius: 2px;
    width: 0;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: calc(100% - 28px);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Hamburger */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10001;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--text-secondary);
    border-radius: 2px;
    transition: var(--transition-base);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    /* display: none;
    background: rgba(13, 13, 15, 0.98);
    backdrop-filter: blur(24px);
    border-top: 1px solid var(--border-subtle);
    padding: 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease; */

    /* NEW */
    position: fixed;
    top: 70px;
    /* Empieza justo donde termina la navbar */
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: #0b0b0b;
    display: flex;
    flex-direction: column;
    padding: 2rem;

    /* Estado invisible */
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
}

/* NEW */
/* --- Menú Móvil (Abierto) --- */
.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-menu.open {
    max-height: 400px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-link {
    display: block;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    text-decoration: none;
}

.mobile-nav-link:hover {
    color: var(--primary-400);
    background: rgba(var(--primary-rgb), 0.08);
}

.mobile-cta {
    margin-top: 16px;
    width: 100%;
    justify-content: center;
    text-align: center;
}

/* -------- HERO -------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    z-index: 1;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 60% 30%, rgba(var(--primary-rgb), 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 10% 80%, rgba(var(--primary-rgb), 0.06) 0%, transparent 45%);
    pointer-events: none;
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* Hero Content */
.hero-content {
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    Letter-spacing: 0.05em;
    color: var(--primary-400);
    background: rgba(var(--primary-rgb), 0.1);
    border: 1px solid rgba(var(--primary-rgb), 0.25);
    border-radius: var(--radius-full);
    padding: 8px 16px;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-500);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(44px, 5vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: clamp(16px, 1.5vw, 20px);
    color: var(--text-tertiary);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-subtitle strong {
    color: var(--primary-400);
    font-weight: 600;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    padding: 20px 24px;
    background: rgba(var(--primary-rgb), 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    width: fit-content;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-400);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-500);
    margin-left: 2px;
}

.stat-label {
    font-size: 11px;
    color: var(--text-quaternary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border-subtle);
}

/* Hero CTAs */
.hero-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-glow);
    position: relative;
    z-index: 2;
    object-fit: cover;
    aspect-ratio: 1;
}

.hero-visual-glow {
    position: absolute;
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(var(--primary-rgb), 0.4) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
}

.hero-visual-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(var(--primary-rgb), 0.15);
    pointer-events: none;
    z-index: 1;
}

.hero-visual-ring--1 {
    width: 520px;
    height: 520px;
    animation: spin-slow 20s linear infinite;
}

.hero-visual-ring--2 {
    width: 620px;
    height: 620px;
    border-style: dashed;
    animation: spin-slow 30s linear infinite reverse;
}

/* Floating tags */
.floating-tag {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    background: rgba(13, 13, 15, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    border-radius: var(--radius-full);
    padding: 8px 14px;
    white-space: nowrap;
    z-index: 3;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.floating-tag--1 {
    top: 5%;
    right: -5%;
    animation: float-tag 4s ease-in-out infinite;
}

.floating-tag--2 {
    bottom: 25%;
    left: -8%;
    animation: float-tag 4s ease-in-out infinite 1.5s;
}

.floating-tag--3 {
    bottom: 5%;
    right: 0%;
    animation: float-tag 4s ease-in-out infinite 0.8s;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 46px;
    border: 2px solid rgba(var(--primary-rgb), 0.3);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 5px;
    height: 5px;
    background: var(--primary-500);
    border-radius: 50%;
    animation: scroll-bounce 2s ease-in-out infinite;
}

/* -------- SOCIAL PROOF -------- */
.social-proof {
    padding: 40px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    position: relative;
    z-index: 1;
}

.social-proof-label {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-quaternary);
    margin-bottom: 20px;
}

.proof-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.proof-badge {
    padding: 10px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-tertiary);
    transition: var(--transition-base);
    cursor: default;
}

.proof-badge:hover {
    border-color: rgba(var(--primary-rgb), 0.4);
    color: var(--primary-400);
    background: rgba(var(--primary-rgb), 0.06);
    transform: translateY(-2px);
}

/* -------- SERVICES -------- */
.services {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Flip Card */
.service-card-flip {
    perspective: 1200px;
    height: 380px;
    cursor: pointer;
}

.service-card-flip:focus-visible {
    outline: 2px solid var(--primary-500);
    outline-offset: 4px;
    border-radius: var(--radius-lg);
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-lg);
}

.service-card-flip:hover .service-card-inner,
.service-card-flip.flipped .service-card-inner {
    transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* Front */
.service-card-front {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-flip:hover .service-image {
    transform: scale(1.06);
}

/* CSS Placeholders for missing service images */
.service-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: unset;
    position: relative;
}

.service-img-placeholder--food {
    background: linear-gradient(135deg, #1A1008 0%, #2A1C0E 50%, #3A2510 100%);
}

.service-img-placeholder--acc {
    background: linear-gradient(135deg, #0D0D1A 0%, #1A0D20 50%, #220D2A 100%);
}

.placeholder-icon {
    font-size: 80px;
    opacity: 0.4;
    filter: drop-shadow(0 0 20px rgba(var(--primary-rgb), 0.5));
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.service-icon-front {
    font-size: 28px;
    line-height: 1;
}

.service-title-front {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
}

/* Back */
.service-card-back {
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px;
    gap: 0;
    border: 1px solid rgba(var(--primary-rgb), 0.2);
}

.service-back-icon {
    font-size: 36px;
    margin-bottom: 14px;
}

.service-title-back {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.service-description {
    font-size: 15px;
    color: var(--text-tertiary);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    background: rgba(var(--primary-rgb), 0.12);
    border: 1px solid rgba(var(--primary-rgb), 0.25);
    color: var(--primary-400);
    border-radius: var(--radius-full);
    letter-spacing: 0.02em;
}

/* -------- ABOUT -------- */
.about {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    position: relative;
    z-index: 1;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb), 0.4), transparent);
}

.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb), 0.4), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.about-img-wrapper {
    position: relative;
    width: 280px;
    height: 280px;
}

.about-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, rgba(var(--primary-rgb), 0.35) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    pointer-events: none;
}

.about-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    border: 3px solid rgba(var(--primary-rgb), 0.4);
    box-shadow: var(--shadow-glow);
    padding: 20px;
    background: var(--bg-card);
    position: relative;
    z-index: 1;
}

.about-stats-card {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 20px;
}

.about-mini-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mini-stat-number {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-400);
    line-height: 1.2;
}

.mini-stat-label {
    font-size: 12px;
    color: var(--text-quaternary);
    text-align: center;
    margin-top: 4px;
}

.about-mini-divider {
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
    flex-shrink: 0;
}

.about-content .section-title {
    text-align: left;
}

.about-content .section-label {
    display: block;
    text-align: left;
}

.about-text {
    font-size: 16px;
    color: var(--text-tertiary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-text strong {
    color: var(--primary-400);
    font-weight: 600;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 28px 0 32px;
}

.about-value {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.value-icon {
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 2px;
}

.value-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.value-text {
    font-size: 14px;
    color: var(--text-tertiary);
    line-height: 1.5;
}

/* -------- TESTIMONIALS -------- */
.testimonials {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 28px;
}

.testimonial-stars {
    font-size: 16px;
    letter-spacing: 2px;
}

.testimonial-quote {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
    flex-grow: 1;
    quotes: "\201C" "\201D";
    position: relative;
    padding-left: 20px;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -8px;
    font-size: 48px;
    color: var(--primary-500);
    line-height: 1;
    font-style: normal;
    font-weight: 900;
    opacity: 0.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.author-name {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.author-role {
    font-size: 13px;
    color: var(--text-quaternary);
}

/* -------- CTA FINAL -------- */
.cta-section {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
    text-align: center;
    background: var(--bg-secondary);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(var(--primary-rgb), 0.18) 0%, transparent 60%),
        radial-gradient(ellipse at top left, rgba(var(--primary-rgb), 0.08) 0%, transparent 45%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-paw {
    font-size: 52px;
    display: block;
    margin-bottom: 20px;
    animation: float-paw 3s ease-in-out infinite;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.cta-subtitle {
    font-size: 18px;
    color: var(--text-tertiary);
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-subtitle strong {
    color: var(--primary-400);
    font-weight: 600;
}

.cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.pulse-glow {
    animation: gradient-shift 4s ease infinite, pulse-glow 3s ease-in-out infinite !important;
}

/* Contact Cards */
.contact-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    text-align: left;
    border-radius: var(--radius-md);
    min-width: 200px;
}

.contact-card:hover {
    transform: translateY(-4px);
}

.contact-card-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.contact-card-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.contact-card-text {
    font-size: 14px;
    color: var(--text-tertiary);
}

/* -------- FOOTER -------- */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    padding: 80px 0 32px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-brand {}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
}

.footer-tagline {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-500);
    margin-bottom: 14px;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-quaternary);
    line-height: 1.8;
    max-width: 280px;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text-quaternary);
    transition: var(--transition-base);
}

.social-link:hover {
    border-color: rgba(var(--primary-rgb), 0.5);
    color: var(--primary-400);
    background: rgba(var(--primary-rgb), 0.08);
    transform: translateY(-2px);
}

.footer-col-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    font-size: 14px;
    color: var(--text-quaternary);
    transition: var(--transition-fast);
    text-decoration: none;
}

.footer-link:hover {
    color: var(--primary-400);
    padding-left: 4px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-quaternary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy {
    font-size: 13px;
    color: var(--text-quaternary);
}

.footer-badge {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-500);
    background: rgba(var(--primary-rgb), 0.08);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    padding: 6px 14px;
    border-radius: var(--radius-full);
}

/* -------- REVEAL ANIMATIONS -------- */
.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* -------- KEYFRAME ANIMATIONS -------- */

/* Entry animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    will-change: transform, opacity;
}

.animate-scale-in {
    opacity: 0;
    transform: scale(0.9);
    animation: scale-in 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    will-change: transform, opacity;
}

.animate-fade-rotate {
    opacity: 0;
    transform: translateY(20px) rotate(-3deg);
    animation: fade-in-rotate 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    will-change: transform, opacity;
}

@keyframes fade-in-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scale-in {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fade-in-rotate {
    to {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
}

/* Loop animations */
.float-anim {
    animation: float 6s ease-in-out infinite;
    will-change: transform;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-16px) rotate(1.5deg);
    }

    50% {
        transform: translateY(-8px) rotate(-1.5deg);
    }

    75% {
        transform: translateY(-24px) rotate(1deg);
    }
}

@keyframes float-tag {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes float-paw {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

@keyframes float-particle {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: 0.3;
    }

    25% {
        transform: translate(80px, -80px);
        opacity: 0.7;
    }

    50% {
        transform: translate(-40px, -160px);
        opacity: 0.5;
    }

    75% {
        transform: translate(-80px, -80px);
        opacity: 0.7;
    }
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow:
            0 0 0 1px rgba(var(--primary-rgb), 0.5),
            0 4px 24px rgba(var(--primary-rgb), 0.4),
            0 0 60px rgba(var(--primary-rgb), 0.3);
    }

    50% {
        box-shadow:
            0 0 0 2px rgba(var(--primary-rgb), 0.8),
            0 8px 40px rgba(var(--primary-rgb), 0.6),
            0 0 80px rgba(var(--primary-rgb), 0.5);
    }
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

@keyframes scroll-bounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(12px);
        opacity: 0.3;
    }
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* -------- RESPONSIVE -------- */

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    :root {
        --section-padding: 80px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-stats {
        margin: 0 auto 40px;
    }

    .hero-visual-ring--1 {
        width: 360px;
        height: 360px;
    }

    .hero-visual-ring--2 {
        width: 440px;
        height: 440px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-content .section-title,
    .about-content .section-label {
        text-align: center;
    }

    .about-visual {
        width: 100%;
        align-items: center;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile */
@media (max-width: 767px) {
    :root {
        --section-padding: 72px 0;
        --container-pad: 0 16px;
    }

    /* Navbar */
    .nav-links {
        display: none;
    }

    .nav-actions .btn-primary.btn-sm {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    /* Hero */
    .hero {
        padding: 100px 0 60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

    .hero-title {
        font-size: clamp(36px, 8vw, 48px);
    }

    .hero-subtitle {
        max-width: 100%;
        font-size: 16px;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
        margin: 0 auto 32px;
    }

    .stat-divider {
        width: 60%;
        height: 1px;
    }

    .hero-img {
        max-width: 280px;
    }

    .hero-visual-ring--1 {
        width: 300px;
        height: 300px;
    }

    .hero-visual-ring--2 {
        width: 360px;
        height: 360px;
    }

    .floating-tag {
        display: none;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card-flip {
        height: 340px;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content .section-title,
    .about-content .section-label {
        text-align: center;
    }

    .about-visual {
        align-items: center;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* CTA */
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-actions .btn-primary,
    .cta-actions .btn-outline {
        justify-content: center;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Particles reduce on mobile */
    .particle:nth-child(n+20) {
        display: none;
    }
}

/* Desktop XL */
@media (min-width: 1440px) {
    :root {
        --container-max: 1360px;
    }

    .hero-title {
        font-size: 80px;
    }
}