
        :root {
            --gold: #C9A66B;
            --gold-light: #E5D4B3;
            --gold-dark: #A68B5B;
            --charcoal: #2C2C2C;
            --charcoal-light: #404040;
            --cream: #FAF8F5;
            --white: #FFFFFF;
            --text: #333333;
            --text-light: #666666;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            background: var(--white);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        
        @keyframes paw-bounce {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.2) rotate(10deg); }
        }
        
        /* ===== STICKY CONTACT BAR ===== */
        .sticky-contact {
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 2px;
            background: var(--charcoal);
            border-radius: 12px 0 0 12px;
            padding: 8px;
            box-shadow: -5px 0 30px rgba(0,0,0,0.15);
        }
        
        .sticky-contact a {
            display: flex;
            align-items: center;
            background: transparent;
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            padding: 0.7rem 1rem;
            transition: all 0.3s ease;
            position: relative;
            border-radius: 8px;
            gap: 0.6rem;
        }
        
        .sticky-contact a:hover {
            background: var(--gold);
            color: var(--white);
        }
        
        .sticky-contact .icon {
            font-size: 1.1rem;
            min-width: 20px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .sticky-contact .icon i {
            line-height: 1;
        }
        
        .sticky-contact .label {
            font-size: 0.75rem;
            font-weight: 500;
            white-space: nowrap;
        }
        
        /* ===== NAVIGATION ===== */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.4s ease;
        }
        
        nav.scrolled {
            background: rgba(255, 255, 255, 0.98) !important;
            padding: 0 !important;
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
            backdrop-filter: blur(10px);
        }
        
        nav.scrolled .nav-container { padding: 0 1.5rem !important; min-height: 42px; }
        nav.scrolled .logo { color: var(--charcoal) !important; font-size: 0.95rem !important; gap: 0.3rem !important; }
        nav.scrolled .logo .logo-icon { width: 22px !important; height: 22px !important; padding: 2px !important; min-width: 22px; }
        nav.scrolled .nav-links a { color: var(--charcoal) !important; font-size: 0.78rem !important; }
        nav.scrolled .nav-cta { background: var(--gold) !important; color: var(--white) !important; border-color: var(--gold) !important; padding: 0.35rem 0.9rem !important; font-size: 0.75rem !important; }
        nav.scrolled .hamburger span { background: var(--charcoal) !important; }
        
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 3rem;
        }
        
        .logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--white);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            transition: color 0.3s;
            z-index: 1002;
        }
        
        .logo-icon {
            width: 32px;
            height: 32px;
            background: var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            padding: 4px;
        }
        
        .logo-icon-img {
            height: 100%;
            width: auto;
            object-fit: contain;
        }
        
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 3rem;
        }
        
        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--white);
            font-weight: 500;
            font-size: 0.9rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s;
            position: relative;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s;
        }
        
        .nav-links a:hover::after { width: 100%; }
        
        .nav-cta {
            padding: 0.8rem 1.8rem;
            background: transparent;
            border: 2px solid var(--gold);
            color: var(--gold);
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s;
            border-radius: 50px;
        }
        
        .nav-cta:hover {
            background: var(--gold);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(201, 166, 107, 0.4);
        }
        
        /* ===== HAMBURGER MENU ===== */
        .hamburger {
            display: none;
            cursor: pointer;
            z-index: 1002;
            position: relative;
            width: 40px;
            height: 40px;
            border-radius: 8px;
            transition: background .3s;
            flex-shrink: 0;
        }
        
        .hamburger:hover { background: rgba(0,0,0,.05); }
        
        .hamburger span {
            display: block;
            height: 2px;
            background: var(--white);
            border-radius: 2px;
            transition: all 0.35s cubic-bezier(0.68, -0.3, 0.265, 1.3);
            position: absolute;
            left: 9px;
        }
        
        .hamburger span:nth-child(1) { top: 12px; width: 22px; }
        .hamburger span:nth-child(2) { top: 19px; width: 15px; }
        .hamburger span:nth-child(3) { top: 26px; width: 22px; }
        
        .hamburger.active span:nth-child(1) {
            top: 19px;
            transform: rotate(45deg);
            background: var(--charcoal);
        }
        
        .hamburger.active span:nth-child(2) {
            opacity: 0;
            width: 0;
            transform: translateX(-10px);
        }
        
        .hamburger.active span:nth-child(3) {
            top: 19px;
            transform: rotate(-45deg);
            background: var(--charcoal);
        }
        
        /* ===== MOBILE MENU OVERLAY ===== */
        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(44, 44, 44, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 998;
        }
        
        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* ===== MOBILE MENU PANEL - FULLSCREEN WOW ===== */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
            z-index: 1001;
            display: flex;
            flex-direction: column;
            overflow-y: auto;
            transform: translateX(100%);
            transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        }
        
        .mobile-menu::before {
            content: '🐾';
            position: absolute;
            top: 15%;
            right: 5%;
            font-size: 15rem;
            opacity: 0.03;
            transform: rotate(-15deg);
            pointer-events: none;
        }
        
        .mobile-menu::after {
            content: '🐾';
            position: absolute;
            bottom: 10%;
            left: 5%;
            font-size: 10rem;
            opacity: 0.03;
            transform: rotate(25deg);
            pointer-events: none;
        }
        
        .mobile-menu.active {
            transform: translateX(0);
        }
        
        .mobile-menu-header {
            padding: 1.5rem 1.5rem 1rem;
            text-align: center;
            position: relative;
        }
        
        .mobile-menu-header .logo-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--gold) 0%, #d4b87a 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 0.75rem;
            box-shadow: 0 8px 30px rgba(201, 166, 107, 0.4);
        }
        
        .mobile-menu-header h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.6rem;
            color: white;
            margin-bottom: 0.25rem;
        }
        
        .mobile-menu-header p {
            color: var(--gold);
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        
        /* Close button */
        .mobile-menu-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 1.3rem;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
        }
        
        .mobile-menu-close:hover {
            background: var(--gold);
            transform: rotate(90deg);
        }
        
        .mobile-menu-links {
            padding: 0.5rem 1.5rem 1rem;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            overflow-y: auto;
        }
        
        .mobile-menu-links a {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.8rem 1rem;
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            border-radius: 10px;
            transition: all 0.3s ease;
            position: relative;
            margin-bottom: 0.25rem;
            overflow: hidden;
        }
        
        .mobile-menu-links a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 3px;
            height: 100%;
            background: var(--gold);
            transform: scaleY(0);
            transition: transform 0.3s;
            border-radius: 0 3px 3px 0;
        }
        
        .mobile-menu-links a:hover::before,
        .mobile-menu-links a:active::before {
            transform: scaleY(1);
        }
        
        .mobile-menu-links a:hover,
        .mobile-menu-links a:active {
            background: rgba(255,255,255,0.08);
            color: white;
            transform: translateX(5px);
        }
        
        .mobile-menu-links a .menu-icon {
            width: 42px;
            height: 42px;
            background: rgba(255,255,255,0.08);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s;
        }
        
        .mobile-menu-links a:hover .menu-icon {
            background: var(--gold);
            transform: scale(1.05);
        }
        
        .mobile-menu-links a .menu-text {
            flex: 1;
        }
        
        .mobile-menu-links a .menu-arrow {
            color: var(--gold);
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s;
        }
        
        .mobile-menu-links a:hover .menu-arrow {
            opacity: 1;
            transform: translateX(0);
        }
        
        /* Staggered animation */
        .mobile-menu.active .mobile-menu-links a {
            animation: slideInRight 0.4s ease forwards;
            opacity: 0;
        }
        
        .mobile-menu.active .mobile-menu-links a:nth-child(1) { animation-delay: 0.1s; }
        .mobile-menu.active .mobile-menu-links a:nth-child(2) { animation-delay: 0.15s; }
        .mobile-menu.active .mobile-menu-links a:nth-child(3) { animation-delay: 0.2s; }
        .mobile-menu.active .mobile-menu-links a:nth-child(4) { animation-delay: 0.25s; }
        .mobile-menu.active .mobile-menu-links a:nth-child(5) { animation-delay: 0.3s; }
        .mobile-menu.active .mobile-menu-links a:nth-child(6) { animation-delay: 0.35s; }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .mobile-menu-cta {
            padding: 1rem 1.5rem;
        }
        
        .mobile-menu-cta .btn {
            width: 100%;
            padding: 1rem 1.5rem;
            font-size: 1rem;
            border-radius: 50px;
            background: linear-gradient(135deg, var(--gold) 0%, #d4b87a 100%);
            border: none;
            color: white;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            box-shadow: 0 8px 25px rgba(201, 166, 107, 0.4);
            transition: all 0.3s;
        }
        
        .mobile-menu-cta .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(201, 166, 107, 0.5);
        }
        
        .mobile-menu-contact {
            padding: 0 1.5rem 1.5rem;
            display: flex;
            justify-content: center;
            gap: 0.75rem;
        }
        
        .mobile-menu-contact a {
            width: 45px;
            height: 45px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .mobile-menu-contact a svg {
            width: 20px;
            height: 22px;
            fill: white;
        }
        
        .mobile-menu-contact a.phone {
            background: linear-gradient(135deg, var(--gold) 0%, #b8956b 100%);
        }
        
        .mobile-menu-contact a.email {
            background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
        }
        
        .mobile-menu-contact a.facebook {
            background: linear-gradient(135deg, #1877f2 0%, #0d5bbd 100%);
        }
        
        .mobile-menu-contact a.map {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
        }
        
        .mobile-menu-contact a:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }
        
        /* ===== HERO ===== */
        .hero {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1516734212186-a967f81ad0d7?w=1920&q=80') center/cover no-repeat;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(44,44,44,0.9) 0%, rgba(44,44,44,0.6) 100%);
        }
        
        .hero-content {
            position: relative;
            text-align: center;
            color: var(--white);
            max-width: 900px;
            padding: 2rem;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(201, 166, 107, 0.2);
            border: 1px solid var(--gold);
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            font-size: 0.85rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 2rem;
            animation: fadeInDown 1s ease;
        }
        
        .hero-content h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.8rem, 6vw, 5rem);
            font-weight: 600;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease 0.2s both;
        }
        
        .hero-content h1 span { color: var(--gold); }
        
        .hero-subtitle {
            font-size: 1.1rem;
            font-weight: 300;
            color: rgba(255,255,255,0.85);
            max-width: 600px;
            margin: 0 auto 2.5rem;
            animation: fadeInUp 1s ease 0.4s both;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.6s both;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1.1rem 2.5rem;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.4s ease;
            cursor: pointer;
            border: none;
            border-radius: 50px;
        }
        
        .btn-primary {
            background: var(--gold);
            color: var(--white);
        }
        
        .btn-primary:hover {
            background: var(--gold-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(201, 166, 107, 0.4);
        }
        
        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }
        
        .btn-outline:hover {
            background: var(--white);
            color: var(--charcoal);
        }
        
        .scroll-indicator {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }
        
        .scroll-indicator span {
            display: block;
            width: 30px;
            height: 50px;
            border: 2px solid rgba(255,255,255,0.5);
            border-radius: 25px;
            position: relative;
        }
        
        .scroll-indicator span::before {
            content: '';
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 6px;
            height: 6px;
            background: var(--gold);
            border-radius: 50%;
            animation: scroll-dot 2s infinite;
        }
        
        @keyframes scroll-dot {
            0%, 100% { top: 8px; opacity: 1; }
            50% { top: 20px; opacity: 0.5; }
        }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(10px); }
        }
        
        /* ===== FEATURES STRIP ===== */
        .features-strip {
            background: var(--charcoal);
            padding: 3rem 2rem;
        }
        
        .features-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            color: var(--white);
        }
        
        .feature-icon {
            width: 55px;
            height: 55px;
            background: rgba(201, 166, 107, 0.15);
            border: 1px solid rgba(201, 166, 107, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            flex-shrink: 0;
        }
        
        .feature-item h4 {
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 0.2rem;
        }
        
        .feature-item p {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.6);
        }
        
        /* ===== SECTIONS ===== */
        section {
            padding: 7rem 2rem;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-tag {
            display: inline-block;
            color: var(--gold);
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }
        
        .section-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: 1rem;
        }
        
        .section-header p {
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.05rem;
        }
        
        .section-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin: 1.5rem auto 0;
        }
        
        .section-divider::before,
        .section-divider::after {
            content: '';
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold));
        }
        
        .section-divider::after {
            background: linear-gradient(90deg, var(--gold), transparent);
        }
        
        .section-divider .paw {
            color: var(--gold);
            opacity: 0.35;
        }
        
        /* ===== ABOUT ===== */
        .about {
            background: var(--cream);
        }
        
        .about-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }
        
        .about-images {
            position: relative;
        }
        
        .about-img-main {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }
        
        .about-img-secondary {
            position: absolute;
            bottom: -40px;
            right: -40px;
            width: 200px;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            border: 6px solid var(--white);
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }
        
        .about-badge {
            position: absolute;
            top: 30px;
            left: -20px;
            background: var(--gold);
            color: var(--white);
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(201, 166, 107, 0.4);
        }
        
        .about-badge .number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1;
        }
        
        .about-badge span {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .about-content h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .about-content p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }
        
        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .about-feature {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }
        
        .about-feature-icon {
            width: 50px;
            height: 50px;
            background: var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            flex-shrink: 0;
        }
        
        .about-feature h4 {
            font-size: 1rem;
            margin-bottom: 0.3rem;
            color: var(--charcoal);
        }
        
        .about-feature p {
            font-size: 0.9rem;
            color: var(--text-light);
            margin: 0;
        }
        
        /* ===== PRICING / CENNIK ===== */
        .services {
            background: linear-gradient(180deg, #faf9f7 0%, #fff 100%);
        }
        
        .pricing-wrapper {
            max-width: 900px;
            margin: 0 auto;
        }
        
        /* Tabs Navigation */
        .pricing-tabs {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
            background: var(--charcoal);
            padding: 0.5rem;
            border-radius: 50px;
        }
        
        .tab-btn {
            background: transparent;
            border: none;
            padding: 0.9rem 1.8rem;
            font-size: 0.95rem;
            font-weight: 500;
            color: rgba(255,255,255,0.7);
            cursor: pointer;
            border-radius: 50px;
            transition: all 0.3s ease;
            font-family: inherit;
        }
        
        .tab-btn:hover {
            color: white;
            background: rgba(255,255,255,0.1);
        }
        
        .tab-btn.active {
            background: var(--gold);
            color: white;
            box-shadow: 0 4px 15px rgba(201,166,107,0.4);
        }
        
        /* Tab Content */
        .tab-content {
            display: none;
            animation: fadeIn 0.4s ease;
        }
        
        .tab-content.active {
            display: block;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .tab-subtitle {
            text-align: center;
            color: var(--text-light);
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }
        
        /* Price Cards */
        .price-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .price-cards.centered {
            max-width: 350px;
            margin: 0 auto 2rem;
        }
        
        .price-card {
            background: white;
            border-radius: 20px;
            overflow: visible;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .price-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.12);
        }
        
        .price-card.popular {
            border: 2px solid var(--gold);
            margin-top: 15px;
        }
        
        .popular-badge {
            position: absolute;
            top: -12px;
            right: 15px;
            background: linear-gradient(135deg, var(--gold) 0%, #d4a84b 100%);
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(201, 166, 107, 0.4);
            z-index: 10;
        }
        
        .price-card-header {
            background: var(--charcoal);
            padding: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .price-card.cat .price-card-header {
            background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
        }
        
        .price-card-icon {
            font-size: 2.5rem;
            line-height: 1;
        }
        
        .price-card-title h4 {
            color: white;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            font-weight: 600;
            margin: 0;
        }
        
        .price-card-title span {
            color: var(--gold);
            font-size: 0.9rem;
        }
        
        .price-card-body {
            padding: 1.5rem;
        }
        
        .price-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.8rem 0;
            border-bottom: 1px dashed #eee;
            gap: 0.5rem;
        }
        
        .price-row:last-child {
            border-bottom: none;
        }
        
        .price-row.main {
            background: linear-gradient(90deg, rgba(201,166,107,0.1), rgba(201,166,107,0.05));
            margin: 0.5rem -1.5rem;
            padding: 1rem 1.5rem;
            border-radius: 0;
            border: none;
        }
        
        .price-label {
            color: var(--text);
            font-size: 0.9rem;
            flex: 1;
        }
        
        .price-value {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--gold);
            white-space: nowrap;
        }
        
        /* Breeds List */
        .breeds-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 0.75rem;
        }
        
        .breed-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: white;
            padding: 0.9rem 1.2rem;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.04);
            transition: all 0.2s ease;
            gap: 0.75rem;
        }
        
        .breed-row:hover {
            background: var(--charcoal);
            transform: translateX(5px);
        }
        
        .breed-row:hover .breed-name {
            color: white;
        }
        
        .breed-name {
            font-size: 0.9rem;
            color: var(--text);
            transition: color 0.2s;
            flex: 1;
            min-width: 0;
        }
        
        .breed-price {
            font-weight: 700;
            color: var(--gold);
            font-size: 0.95rem;
            white-space: nowrap;
            flex-shrink: 0;
        }
        
        .breeds-note {
            text-align: center;
            margin-top: 1.5rem;
            color: var(--text-light);
            font-size: 0.85rem;
            font-style: italic;
        }
        
        /* Extras List */
        .extras-list {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        
        .extra-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: white;
            padding: 1.2rem 1.5rem;
            border-radius: 12px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            transition: all 0.2s ease;
        }
        
        .extra-row:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        
        .extra-row.warning {
            background: linear-gradient(90deg, #fff5f5, white);
            border-left: 4px solid #e74c3c;
        }
        
        .extra-info {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .extra-icon {
            font-size: 1.5rem;
        }
        
        .extra-name {
            font-size: 0.95rem;
            color: var(--text);
        }
        
        .extra-price {
            font-weight: 700;
            color: var(--gold);
            font-size: 1.1rem;
            white-space: nowrap;
        }
        
        .extra-price.highlight {
            color: #e74c3c;
            font-size: 1.2rem;
        }
        
        /* Pricing Info */
        .pricing-info {
            background: var(--charcoal);
            border-radius: 16px;
            padding: 2rem;
            margin-top: 3rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        
        .info-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }
        
        .info-icon {
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        
        .info-item p {
            color: rgba(255,255,255,0.85);
            font-size: 0.9rem;
            line-height: 1.6;
            margin: 0;
        }
        
        /* Pricing CTA */
        .pricing-cta {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2.5rem;
            flex-wrap: wrap;
        }
        
        .btn-lg {
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--gold);
            color: var(--gold);
        }
        
        .btn-outline:hover {
            background: var(--gold);
            color: white;
        }
        
        /* Responsive pricing */
        @media (max-width: 768px) {
            .pricing-tabs {
                border-radius: 20px;
                gap: 0.25rem;
            }
            
            .tab-btn {
                padding: 0.7rem 1rem;
                font-size: 0.85rem;
            }
            
            .price-cards {
                grid-template-columns: 1fr 1fr;
            }
            
            .breeds-list {
                grid-template-columns: 1fr;
            }
            
            .pricing-info {
                grid-template-columns: 1fr;
            }
            
            .pricing-cta {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-lg {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }
        }
        
        @media (max-width: 480px) {
            .price-cards {
                grid-template-columns: 1fr;
            }
            
            .pricing-tabs {
                flex-direction: column;
                border-radius: 16px;
            }
            
            .tab-btn {
                width: 100%;
            }
        }
        
        /* ===== GALLERY ===== */
        .gallery {
            background: var(--charcoal);
            color: var(--white);
        }
        
        .gallery .section-header h2 { color: var(--white); }
        .gallery .section-header p { color: rgba(255,255,255,0.7); }
        
        .gallery-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(2, 250px);
            gap: 1rem;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            cursor: pointer;
        }
        
        .gallery-item:first-child {
            grid-column: span 2;
            grid-row: span 2;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(transparent 50%, rgba(0,0,0,0.8));
            opacity: 0;
            transition: opacity 0.3s;
            display: flex;
            align-items: flex-end;
            padding: 1.5rem;
        }
        
        .gallery-item:hover .gallery-overlay { opacity: 1; }
        
        .gallery-overlay span {
            color: var(--white);
            font-weight: 500;
        }
        
        /* ===== FAQ ===== */
        .faq {
            background: var(--white);
        }
        
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: var(--cream);
            border-radius: 15px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
        }
        
        .faq-item.active {
            background: var(--white);
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }
        
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.5rem 2rem;
            cursor: pointer;
            gap: 1rem;
        }
        
        .faq-question h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--charcoal);
            margin: 0;
            flex: 1;
        }
        
        .faq-icon {
            width: 40px;
            height: 40px;
            background: var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.2rem;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }
        
        .faq-item.active .faq-icon {
            background: var(--charcoal);
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
        }
        
        .faq-answer-content {
            padding: 0 2rem 2rem;
            color: var(--text-light);
            font-size: 1.05rem;
            line-height: 1.8;
        }
        
        .faq-answer-content p {
            margin: 0;
        }
        
        .faq-cta {
            text-align: center;
            margin-top: 3rem;
            padding: 2rem;
            background: var(--cream);
            border-radius: 15px;
        }
        
        .faq-cta p {
            color: var(--text-light);
            margin-bottom: 1rem;
        }
        
        .faq-cta a {
            color: var(--gold);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s;
        }
        
        .faq-cta a:hover {
            gap: 1rem;
        }
        
        /* ===== BLOG ===== */
        .blog {
            background: var(--white);
        }
        
        .blog-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        
        .blog-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
        }
        
        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }
        
        .blog-card.featured-post {
            grid-column: span 2;
            flex-direction: row;
        }
        
        .blog-card.featured-post .blog-image {
            width: 50%;
            height: auto;
            min-height: 350px;
        }
        
        .blog-card.featured-post .blog-content {
            width: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .blog-card.featured-post h3 {
            font-size: 1.8rem;
        }
        
        .blog-image {
            position: relative;
            height: 220px;
            overflow: hidden;
        }
        
        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .blog-card:hover .blog-image img {
            transform: scale(1.1);
        }
        
        .blog-category {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: var(--gold);
            color: var(--white);
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .blog-content {
            padding: 2rem;
            flex: 1;
        }
        
        .blog-meta {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1rem;
            font-size: 0.85rem;
            color: var(--text-light);
        }
        
        .blog-content h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: 1rem;
            line-height: 1.3;
            transition: color 0.3s;
        }
        
        .blog-card:hover .blog-content h3 {
            color: var(--gold);
        }
        
        .blog-content p {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }
        
        .blog-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--gold);
            font-weight: 600;
            text-decoration: none;
            font-size: 0.9rem;
            transition: gap 0.3s;
        }
        
        .blog-link:hover {
            gap: 1rem;
        }
        
        .blog-link svg {
            transition: transform 0.3s;
        }
        
        .blog-link:hover svg {
            transform: translateX(5px);
        }
        
        .blog-cta {
            text-align: center;
            margin-top: 3rem;
        }
        
        .btn-outline-dark {
            background: transparent;
            color: var(--charcoal);
            border: 2px solid var(--charcoal);
        }
        
        .btn-outline-dark:hover {
            background: var(--charcoal);
            color: var(--white);
        }
        
        /* ===== TESTIMONIALS ===== */
        .testimonials {
            background: var(--cream);
        }
        
        .testimonials-grid {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
        }
        
        .testimonial-card {
            background: var(--white);
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.05);
            position: relative;
            width: 100%;
            text-align: center;
        }
        
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            right: 30px;
            font-family: 'Cormorant Garamond', serif;
            font-size: 6rem;
            color: var(--gold);
            opacity: 0.2;
            line-height: 1;
        }
        
        .testimonial-stars {
            color: var(--gold);
            font-size: 1.1rem;
            margin-bottom: 1rem;
            letter-spacing: 2px;
        }
        
        .testimonial-card p {
            color: var(--text-light);
            font-style: italic;
            margin-bottom: 1.5rem;
            line-height: 1.9;
            font-size: 1.1rem;
            max-width: 520px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            justify-content: center;
        }
        
        .testimonial-avatar {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .testimonial-author h4 {
            font-size: 1rem;
            color: var(--charcoal);
            margin-bottom: 0.2rem;
        }
        
        .testimonial-author span {
            font-size: 0.85rem;
            color: var(--text-light);
        }
        
        /* ===== BOOKING ===== */
        .booking {
            background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .booking::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1587300003388-59208cc962cb?w=800&q=80') center/cover;
            opacity: 0.2;
        }
        
        .booking .section-header h2 { color: var(--white); }
        .booking .section-header p { color: rgba(255,255,255,0.7); }
        
        .booking-container {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
        }
        
        .booking-form {
            background: var(--white);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 30px 80px rgba(0,0,0,0.3);
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.6rem;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--charcoal);
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem 1.2rem;
            border: 2px solid #e5e5e5;
            border-radius: 10px;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.95rem;
            transition: all 0.3s;
            background: #fafafa;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--gold);
            background: var(--white);
            box-shadow: 0 0 0 4px rgba(201, 166, 107, 0.1);
        }
        
        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #aaa;
        }
        
        /* Date Picker Styling */
        .form-group input[type="date"] {
            cursor: pointer;
            position: relative;
        }
        
        .form-group input[type="date"]::-webkit-calendar-picker-indicator {
            background: var(--gold);
            padding: 5px;
            border-radius: 5px;
            cursor: pointer;
        }
        
        .booking-form .btn {
            width: 100%;
            justify-content: center;
            padding: 1.2rem;
            font-size: 1rem;
            margin-top: 0.5rem;
        }
        
        .form-note {
            text-align: center;
            margin-top: 1.5rem;
            color: var(--text-light);
            font-size: 0.85rem;
        }
        
        .form-note strong {
            color: var(--gold);
        }
        
        /* ===== CONTACT ===== */
        .contact {
            background: var(--white);
        }
        
        .contact-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
        }
        
        .contact-info {
            padding-right: 2rem;
        }
        
        .contact-info h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.2rem;
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: 1.5rem;
        }
        
        .contact-info > p {
            color: var(--text-light);
            margin-bottom: 2.5rem;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .contact-icon {
            width: 55px;
            height: 55px;
            background: var(--cream);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            flex-shrink: 0;
        }
        
        .contact-item h4 {
            font-size: 0.85rem;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }
        
        .contact-item p,
        .contact-item a {
            font-size: 1.1rem;
            color: var(--charcoal);
            font-weight: 500;
            text-decoration: none;
        }
        
        .contact-item a:hover { color: var(--gold); }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 2.5rem;
        }
        
        .social-link {
            width: 55px;
            height: 55px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }
        
        .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .social-link:hover::before {
            opacity: 1;
        }
        
        .social-link svg {
            width: 24px;
            height: 24px;
            fill: white;
            transition: transform 0.3s;
            position: relative;
            z-index: 1;
        }
        
        .social-link:hover svg {
            transform: scale(1.15);
        }
        
        .social-link:hover {
            transform: translateY(-5px);
        }
        
        /* Facebook */
        .social-link.facebook {
            background: linear-gradient(135deg, #1877f2 0%, #0d5bbd 100%);
            box-shadow: 0 5px 20px rgba(24, 119, 242, 0.3);
        }
        
        .social-link.facebook:hover {
            box-shadow: 0 10px 30px rgba(24, 119, 242, 0.5);
        }
        
        /* Instagram */
        .social-link.instagram {
            background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            box-shadow: 0 5px 20px rgba(225, 48, 108, 0.3);
        }
        
        .social-link.instagram:hover {
            box-shadow: 0 10px 30px rgba(225, 48, 108, 0.5);
        }
        
        /* WhatsApp */
        .social-link.whatsapp {
            background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
        }
        
        .social-link.whatsapp:hover {
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
        }
        
        /* Footer social - mniejsze */
        .footer-social {
            display: flex;
            gap: 0.75rem;
            margin-top: 1.5rem;
        }
        
        .footer-social a {
            width: 45px;
            height: 45px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            font-size: 1.2rem;
            color: white;
        }
        
        .footer-social a.facebook {
            background: linear-gradient(135deg, #1877f2 0%, #0d5bbd 100%);
        }
        
        .footer-social a.instagram {
            background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }
        
        .footer-social a.whatsapp {
            background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
        }
        
        .footer-social a:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        }
        
        .map-container {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0,0,0,0.1);
            height: 100%;
            min-height: 400px;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }
        
        /* ===== BACK TO TOP ===== */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 60px;
            height: 60px;
            background: var(--charcoal);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px) scale(0.8);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 5px 25px rgba(0,0,0,0.2);
            overflow: hidden;
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }
        
        .back-to-top:hover {
            background: var(--gold);
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 40px rgba(201, 166, 107, 0.4);
        }
        
        .btt-icon {
            font-size: 1.2rem;
            color: white;
            font-weight: 700;
            transition: all 0.3s;
            line-height: 1;
        }
        
        .back-to-top:hover .btt-icon {
            transform: translateY(-3px);
            animation: bounce-up 0.6s ease infinite;
        }
        
        @keyframes bounce-up {
            0%, 100% { transform: translateY(-3px); }
            50% { transform: translateY(-8px); }
        }
        
        .btt-text {
            font-size: 0.55rem;
            color: rgba(255,255,255,0.7);
            font-weight: 700;
            letter-spacing: 1px;
            margin-top: 2px;
        }
        
        .back-to-top:hover .btt-text {
            color: white;
        }
        
        /* Progress circle */
        .btt-progress {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            transform: rotate(-90deg);
            pointer-events: none;
        }
        
        .btt-progress-circle {
            fill: none;
            stroke: var(--gold);
            stroke-width: 3;
            stroke-dasharray: 283;
            stroke-dashoffset: 283;
            stroke-linecap: round;
            transition: stroke-dashoffset 0.1s;
        }
        
        /* Mobile adjustment */
        @media (max-width: 992px) {
            .back-to-top {
                bottom: 100px;
                left: 20px;
                width: 50px;
                height: 50px;
            }
            
            .btt-icon {
                font-size: 1rem;
            }
            
            .btt-text {
                font-size: 0.5rem;
            }
        }
        
        /* ===== FOOTER ===== */
        footer {
            background: var(--charcoal);
            color: var(--white);
            padding: 0;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem 3rem;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 3rem;
        }
        
        .footer-brand p {
            color: rgba(255,255,255,0.6);
            font-size: 0.95rem;
            margin-top: 1rem;
            line-height: 1.7;
        }
        
        .footer-logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--white);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .footer-logo .logo-icon {
            width: 40px;
            height: 40px;
            background: var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            padding: 5px;
        }
        
        .footer-menu h4,
        .footer-contact h4,
        .footer-cta h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .footer-menu ul,
        .footer-contact ul {
            list-style: none;
        }
        
        .footer-menu ul li,
        .footer-contact ul li {
            margin-bottom: 0.75rem;
        }
        
        .footer-menu ul li a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s;
            display: inline-block;
        }
        
        .footer-menu ul li a:hover {
            color: var(--gold);
            padding-left: 5px;
        }
        
        .footer-contact ul li {
            color: rgba(255,255,255,0.6);
            font-size: 0.9rem;
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }
        
        .footer-contact ul li i {
            color: var(--gold);
            width: 18px;
            min-width: 18px;
            text-align: center;
            margin-top: 2px;
        }
        
        .footer-contact ul li span {
            flex: 1;
        }
        
        .footer-contact ul li a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-contact ul li a:hover {
            color: var(--gold);
        }
        
        .footer-cta p {
            color: rgba(255,255,255,0.6);
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }
        
        .btn-sm {
            padding: 0.8rem 1.5rem;
            font-size: 0.8rem;
        }
        
        .footer-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem 0;
            background: rgba(255,255,255,0.03);
        }
        
        .footer-divider .paw {
            color: rgba(255,255,255,0.15);
        }
        
        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1.5rem 2rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .footer-bottom p {
            color: rgba(255,255,255,0.5);
            font-size: 0.85rem;
            margin: 0;
        }
        
        .footer-bottom-links {
            display: flex;
            gap: 2rem;
        }
        
        .footer-bottom-links a {
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s;
        }
        
        .footer-bottom-links a:hover {
            color: var(--gold);
        }
        
        .footer-credits {
            color: rgba(255,255,255,0.4) !important;
            font-size: 0.8rem !important;
        }
        
        .footer-credits a {
            color: var(--gold);
            text-decoration: none;
            font-weight: 500;
        }
        
        .footer-credits a:hover {
            text-decoration: underline;
        }
        
        /* ===== COOKIE CONSENT (RODO) ===== */
        .cookie-overlay {
            position: fixed; inset: 0; background: rgba(0,0,0,.5);
            z-index: 99998; opacity: 0; visibility: hidden; transition: all .3s;
        }
        .cookie-overlay.show { opacity: 1; visibility: visible; }
        .cookie-banner {
            position: fixed; bottom: 20px; left: 50%;
            transform: translateX(-50%) translateY(150%);
            width: calc(100% - 40px); max-width: 520px;
            background: white; color: var(--charcoal); padding: 2rem;
            z-index: 99999; transition: transform .5s cubic-bezier(.175,.885,.32,1.275);
            box-shadow: 0 10px 50px rgba(0,0,0,.2); border-radius: 20px;
        }
        @media (max-width: 992px) { .cookie-banner { bottom: 90px; width: calc(100% - 24px); padding: 1.5rem; } }
        .cookie-banner.show { transform: translateX(-50%) translateY(0); }
        .cookie-content { text-align: center; }
        .cookie-icon { font-size: 2.2rem; margin-bottom: .5rem; }
        .cookie-text h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
        .cookie-text p { font-size: .8rem; color: var(--text-light); line-height: 1.6; margin-bottom: .5rem; }
        .cookie-text a { color: var(--gold); text-decoration: underline; }
        .cookie-buttons { display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap; margin-top: .75rem; }
        .cookie-btn {
            padding: .7rem 1.3rem; border: none; border-radius: 50px;
            font-family: 'Montserrat',sans-serif; font-weight: 600; font-size: .78rem; cursor: pointer; transition: all .3s;
        }
        .cookie-btn.accept { background: var(--gold); color: white; flex: 1; }
        .cookie-btn.accept:hover { background: var(--charcoal); transform: translateY(-2px); }
        .cookie-btn.reject { background: transparent; color: var(--text-light); border: 1px solid #ddd; }
        .cookie-btn.reject:hover { border-color: var(--charcoal); color: var(--charcoal); }
        .cookie-btn.settings-btn { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
        .cookie-btn.settings-btn:hover { background: var(--gold); color: white; }

        /* Cookie Settings Modal */
        .cookie-modal {
            position: fixed;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%) scale(.9);
            width: calc(100% - 40px);
            max-width: 540px;
            max-height: 85vh;
            background: white;
            border-radius: 20px;
            z-index: 100000;
            box-shadow: 0 20px 60px rgba(0,0,0,.25);
            opacity: 0;
            visibility: hidden;
            transition: all .3s;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        .cookie-modal.show { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }
        .cookie-modal-close {
            position: absolute; top: 10px; right: 12px;
            background: transparent; border: none; font-size: 1.2rem;
            color: #999; cursor: pointer; line-height: 1; padding: 6px;
        }
        .cookie-modal-close:hover { color: var(--charcoal); }

        .cookie-modal-header { padding: 1.5rem 1.5rem 1rem; border-bottom: 1px solid #eee; }
        .cookie-modal-header h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 700; margin-bottom: .25rem; }
        .cookie-modal-header p { font-size: .78rem; color: var(--text-light); line-height: 1.5; }
        .cookie-modal-body { padding: 1rem 1.5rem; overflow-y: auto; flex: 1; }
        .cookie-category { padding: 1rem 0; border-bottom: 1px solid #f0f0f0; }
        .cookie-category:last-child { border-bottom: none; }
        .cookie-cat-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: .35rem; }
        .cookie-cat-header h4 { font-size: .88rem; font-weight: 600; }
        .cookie-cat-header .badge { font-size: .6rem; background: var(--cream); color: var(--gold); padding: .15rem .5rem; border-radius: 50px; font-weight: 600; }
        .cookie-category p { font-size: .75rem; color: var(--text-light); line-height: 1.5; margin-bottom: .5rem; }
        .toggle { position: relative; width: 44px; height: 24px; flex-shrink: 0; }
        .toggle input { opacity: 0; width: 0; height: 0; }
        .toggle .slider { position: absolute; inset: 0; background: #ccc; border-radius: 24px; cursor: pointer; transition: .3s; }
        .toggle .slider::before { content: ''; position: absolute; width: 18px; height: 18px; left: 3px; bottom: 3px; background: white; border-radius: 50%; transition: .3s; }
        .toggle input:checked + .slider { background: var(--gold); }
        .toggle input:checked + .slider::before { transform: translateX(20px); }
        .toggle input:disabled + .slider { opacity: .6; cursor: not-allowed; }
        .cookie-modal-footer { padding: 1rem 1.5rem; border-top: 1px solid #eee; display: flex; gap: .5rem; }
        .cookie-modal-footer .cookie-btn { flex: 1; font-size: .75rem; padding: .65rem; }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 2.5rem;
            }
            
            .blog-card.featured-post {
                grid-column: span 2;
                flex-direction: column;
            }
            
            .blog-card.featured-post .blog-image {
                width: 100%;
                min-height: 250px;
            }
            
            .blog-card.featured-post .blog-content {
                width: 100%;
            }
            
            .blog-card.featured-post h3 {
                font-size: 1.5rem;
            }
            
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .about-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .about-images {
                max-width: 500px;
                margin: 0 auto;
            }
            
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(3, 200px);
            }
            
            .gallery-item:first-child {
                grid-column: span 2;
                grid-row: span 1;
            }
            
            .testimonials-grid {
                max-width: 100%;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .sticky-contact {
                top: auto;
                bottom: 0;
                right: 0;
                left: 0;
                transform: none;
                flex-direction: row;
                justify-content: space-around;
                border-radius: 15px 15px 0 0;
                padding: 8px 10px;
                gap: 5px;
            }
            
            .sticky-contact a {
                flex-direction: column;
                padding: 0.6rem 0.8rem;
                gap: 0.25rem;
                border-radius: 8px;
                flex: 1;
                justify-content: center;
            }
            
            .sticky-contact .icon {
                font-size: 1.3rem;
            }
            
            .sticky-contact .label {
                max-width: 100%;
                font-size: 0.55rem;
                margin-left: 0 !important;
                padding-right: 0 !important;
                text-align: center;
                letter-spacing: 0.3px;
                text-transform: uppercase;
                font-weight: 600;
            }
            
            footer {
                padding-bottom: 100px;
            }
        }
        
        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }
            
            .footer-brand {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            
            .footer-social {
                justify-content: center;
            }
            
            .footer-menu ul li a:hover {
                padding-left: 0;
            }
            
            .footer-contact ul li {
                justify-content: center;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .blog-grid {
                grid-template-columns: 1fr;
            }
            
            .blog-card.featured-post {
                grid-column: span 1;
            }
            
            .nav-menu {
                display: none;
            }
            
            .hamburger {
                display: flex;
            }
            
            .nav-container {
                padding: 0 1.5rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .feature-item {
                flex-direction: column;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .about-img-secondary {
                width: 150px;
                height: 150px;
                right: -10px;
                bottom: -20px;
            }
            
            .about-badge {
                left: 10px;
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
            
            section {
                padding: 5rem 1.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
                justify-content: center;
            }
            
            .booking-form {
                padding: 2rem 1.5rem;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
                grid-template-rows: repeat(6, 180px);
            }
            
            .gallery-item:first-child {
                grid-column: span 1;
            }
            
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }

        /* ===== BREADCRUMBS ===== */
        .breadcrumbs {
            max-width: 720px;
            margin: 0 auto;
            padding: 1.25rem 2rem .5rem;
            font-size: .8rem;
            color: var(--text-light);
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: .15rem;
        }
        .breadcrumbs a {
            color: var(--gold);
            text-decoration: none;
            transition: color .3s;
        }
        .breadcrumbs a:hover { color: var(--gold-dark); text-decoration: underline; }
        .breadcrumbs span { margin: 0 .25rem; opacity: .4; font-size: .7rem; }
        .breadcrumbs strong { color: var(--text); font-weight: 500; }

        /* ===== BLOG HERO ===== */
        .blog-hero {
            position: relative;
            height: 50vh;
            min-height: 380px;
            overflow: hidden;
            margin-top: 75px;
        }
        .blog-hero img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .blog-hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(42,42,42,.85) 0%, rgba(42,42,42,.3) 50%, transparent 100%);
        }
        .blog-hero-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 3rem 2rem;
            max-width: 800px;
            margin: 0 auto;
            color: white;
        }
        .blog-hero-tag {
            display: inline-block;
            background: var(--gold);
            color: white;
            padding: .3rem .85rem;
            border-radius: 100px;
            font-size: .7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .08em;
            margin-bottom: 1rem;
        }
        .blog-hero-content h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.75rem, 4vw, 2.75rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: .75rem;
        }
        .blog-hero-meta {
            font-size: .85rem;
            color: rgba(255,255,255,.7);
        }

        /* ===== BLOG ARTICLE ===== */
        .blog-article {
            max-width: 720px;
            margin: 0 auto;
            padding: 2rem 2rem 4rem;
        }
        .blog-article p {
            font-size: 1.05rem;
            line-height: 1.9;
            margin-bottom: 1.5rem;
            color: var(--text);
        }
        .blog-article h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--charcoal);
            margin: 3rem 0 1rem;
            line-height: 1.3;
        }
        .blog-article strong { color: var(--charcoal); }
        .blog-article a { color: var(--gold); }
        .blog-article ul { margin-bottom: 1.5rem; padding-left: 1.25rem; }
        .blog-article li { margin-bottom: .4rem; line-height: 1.8; font-size: 1.05rem; }

        /* ===== ERROR CARDS ===== */
        .error-card {
            background: var(--white);
            border-radius: 16px;
            padding: 2rem;
            margin: 2.5rem 0;
            border-left: 4px solid var(--gold);
            box-shadow: 0 4px 20px rgba(0,0,0,.04);
        }
        .error-card .error-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: var(--gold);
            color: white;
            border-radius: 50%;
            font-weight: 700;
            font-size: .9rem;
            margin-bottom: .75rem;
        }
        .error-card h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: .5rem;
        }
        .error-card p { font-size: .95rem !important; margin-bottom: .75rem !important; }
        .error-card .tip {
            background: var(--cream);
            padding: 1rem;
            border-radius: 10px;
            margin-top: .75rem;
        }
        .error-card .tip strong { color: var(--gold); }

        /* ===== BLOG PHOTO ===== */
        .blog-photo {
            margin: 2.5rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0,0,0,.06);
        }
        .blog-photo img { width: 100%; display: block; }
        .blog-photo figcaption {
            padding: .65rem 1rem;
            background: var(--white);
            font-size: .75rem;
            color: var(--text-light);
            text-align: center;
        }

        /* ===== TIP BOX ===== */
        .tip-box {
            background: var(--white);
            border: 2px solid #e8e4db;
            border-radius: 16px;
            padding: 2rem;
            margin: 2.5rem 0;
            text-align: center;
        }
        .tip-box .emoji { font-size: 2.5rem; margin-bottom: .5rem; }
        .tip-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--charcoal); margin-bottom: .75rem; }
        .tip-box p { max-width: 520px; margin: 0 auto; font-size: .95rem !important; }

        /* ===== BLOG CTA BOX ===== */
        .blog-cta-box {
            background: var(--charcoal);
            border-radius: 20px;
            padding: 3rem;
            margin: 3rem 0;
            text-align: center;
            color: white;
        }
        .blog-cta-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; margin-bottom: .5rem; }
        .blog-cta-box p { color: rgba(255,255,255,.7); margin-bottom: 1.5rem; max-width: 460px; margin-left: auto; margin-right: auto; font-size: .95rem !important; }
        .blog-cta-box .btn-cta {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            padding: .85rem 2rem;
            background: var(--gold);
            color: white;
            text-decoration: none;
            border-radius: 100px;
            font-weight: 600;
            font-size: .95rem;
            transition: all .3s;
        }
        .blog-cta-box .btn-cta:hover { background: var(--gold-light); transform: translateY(-2px); }
        .blog-cta-box .phone { display: block; margin-top: 1rem; color: rgba(255,255,255,.5); font-size: .85rem; }
        .blog-cta-box .phone a { color: var(--gold-light); text-decoration: none; }

        /* Force nav scrolled on blog page */
        nav { background: rgba(250,248,243,.97) !important; backdrop-filter: blur(15px); border-bottom: 1px solid var(--gold-light); padding: 0 !important; }
        nav .nav-container { padding: 0 1.5rem !important; min-height: 42px; }
        nav .logo { color: var(--charcoal) !important; font-size: 0.95rem !important; gap: 0.3rem !important; }
        nav .logo .logo-icon { width: 22px !important; height: 22px !important; padding: 2px !important; min-width: 22px; }
        nav .nav-links a { color: var(--charcoal) !important; font-size: 0.78rem !important; }
        nav .nav-cta { background: var(--gold) !important; color: var(--white) !important; border-color: var(--gold) !important; padding: 0.35rem 0.9rem !important; font-size: 0.75rem !important; }
        nav .hamburger span { background: var(--charcoal) !important; }

        @media (max-width: 768px) {
            .blog-hero { min-height: 300px; margin-top: 65px; }
            .blog-hero-content { padding: 2rem 1rem; }
            .blog-article { padding: 1.5rem 1rem 3rem; }
            .blog-article h2 { font-size: 1.4rem; }
            .error-card { padding: 1.5rem; }
            .blog-cta-box { padding: 2rem 1.5rem; }
            .breadcrumbs { padding: .75rem 1rem; }
        }
    